-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill_ops.json
More file actions
executable file
·194 lines (194 loc) · 4.68 KB
/
Copy pathskill_ops.json
File metadata and controls
executable file
·194 lines (194 loc) · 4.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "Code2Database-ops",
"version": "1.0.0",
"description": "Graph editing + operations for Code2Database. Activated when the user asks about transactions, daemon control, profile health, doc-code alignment, exports, or memory management. All 171 commands remain accessible from the parent skill.",
"trigger": "/Code2Database-ops",
"parent_skill": "Code2Database",
"languages": [
"C",
"C++",
"Go",
"Python",
"Java",
"Rust",
"ASM"
],
"tier_1_commands": [
"tx-begin",
"tx-commit",
"daemon",
"health",
"export"
],
"commands": [
"tx-begin",
"tx-commit",
"tx-rollback",
"tx-status",
"tx-snapshot",
"tx-restore",
"tx-list-snapshots",
"tx-replay-wal",
"update-node",
"update-edge",
"patch-profile",
"classify-endpoints",
"auto-enhance",
"batch-confirm",
"rollback",
"fill-request",
"add-semantic-edges",
"semantic-status",
"audit-log",
"daemon-start",
"daemon-stop",
"daemon-status",
"daemon-force-refresh",
"daemon-pause",
"daemon-resume",
"daemon-wait-sync",
"daemon-logs",
"daemon-reload",
"daemon-list-projects",
"watch",
"sync",
"merge",
"light-scan",
"patch-from-diff",
"patch-from-git",
"install-hook",
"export-changes",
"merge-changes",
"profile-health",
"profile-evolve",
"profile-bind-version",
"doc-code-check",
"doc-mark-stale",
"doc-alignment-report",
"doc-signature-diff",
"graph-history",
"graph-diff",
"graph-record-version",
"save-memory",
"search-memory",
"manage-memory",
"memory-health",
"validate-memory",
"export-html",
"export-obsidian",
"web-ui",
"plugins",
"validate-plugin",
"bug-benchmark",
"embeddings-build",
"embeddings-search",
"extract-invariants-llm",
"intent-query",
"think-chain",
"domain",
"unbalanced-alloc-free",
"explain-label",
"why-ambiguous",
"serve"
],
"routing_table": {
"Safe graph editing": [
"tx-begin",
"tx-commit",
"tx-rollback",
"tx-status",
"tx-snapshot",
"tx-restore",
"tx-list-snapshots",
"tx-replay-wal",
"update-node",
"update-edge",
"patch-profile",
"classify-endpoints",
"auto-enhance",
"batch-confirm",
"rollback",
"fill-request",
"add-semantic-edges",
"semantic-status",
"audit-log"
],
"Keep graph up to date": [
"daemon-start",
"daemon-stop",
"daemon-status",
"daemon-force-refresh",
"daemon-pause",
"daemon-resume",
"daemon-wait-sync",
"daemon-logs",
"daemon-reload",
"daemon-list-projects",
"watch",
"sync",
"merge",
"light-scan",
"patch-from-diff",
"patch-from-git",
"install-hook",
"export-changes",
"merge-changes"
],
"Profile and doc-code": [
"profile-health",
"profile-evolve",
"profile-bind-version",
"doc-code-check",
"doc-mark-stale",
"doc-alignment-report",
"doc-signature-diff"
],
"Graph versioning": [
"graph-history",
"graph-diff",
"graph-record-version"
],
"Memory management": [
"save-memory",
"search-memory",
"manage-memory",
"memory-health",
"validate-memory"
],
"Export / plugin / benchmark": [
"export-html",
"export-obsidian",
"web-ui",
"plugins",
"validate-plugin",
"bug-benchmark"
],
"Embeddings (experimental)": [
"embeddings-build",
"embeddings-search"
]
},
"on_demand_commands": [
"embeddings-build",
"embeddings-search",
"extract-invariants-llm",
"intent-query",
"think-chain",
"domain",
"graph-record-version",
"unbalanced-alloc-free",
"explain-label",
"why-ambiguous"
],
"extraction_backends": [
"auto",
"clang",
"tree-sitter"
],
"activation_model": "User explicitly invokes /Code2Database-ops, OR /Code2Database core skill detects an ops question (transactions, daemon, profile, doc-code, exports, plugins, memory) and hands off with the phrase 'activate Code2Database-ops sub-skill'.",
"database_write_constraint": "LLM MUST get user confirmation before any DB-modifying command. See CLAUDE.md / SKILL.md Database Write Constraint section for the full list and required report-and-wait protocol.",
"shared_resources": {
"scripts": "scripts/ (shared with parent and analysis sub-skill \u2014 single CLI)",
"mcp_server": "All 48 MCP tools (30 code2database_* + 18 cgdb_*) accessible regardless of sub-skill activation. MCP is separate from skill layer."
}
}