-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
425 lines (425 loc) · 14.9 KB
/
manifest.json
File metadata and controls
425 lines (425 loc) · 14.9 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
{
"name": "10x-code",
"version": "2.0.0",
"owner": "10x-Code",
"repository": "https://github.com/AnitChaudhry/10x-Code",
"homepage": "https://10x.in",
"entry_point": "SKILLS-TREE.md",
"skills": [
{
"id": "init",
"path": "skills/init/SKILL.md",
"description": "Deep-research the codebase and generate .ccs/ context files",
"category": "context",
"model": "opus",
"tags": ["index", "scan", "setup", "architecture"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "codebase root directory",
"output": ".ccs/ directory with project-map, architecture, file-index, conventions",
"depends_on": [],
"token_estimate": 8000,
"parallel_safe": false
},
{
"id": "status",
"path": "skills/status/SKILL.md",
"description": "Show indexed context state, staleness, and token savings",
"category": "context",
"model": "haiku",
"tags": ["check", "health", "staleness"],
"tools": ["Read", "Glob", "Grep"],
"input": ".ccs/ directory",
"output": "status report with staleness and token savings",
"depends_on": ["init"],
"token_estimate": 1000,
"parallel_safe": true
},
{
"id": "query",
"path": "skills/query/SKILL.md",
"description": "Preview which files would be selected for a given query",
"category": "context",
"model": "haiku",
"tags": ["search", "preview", "lookup"],
"tools": ["Read", "Glob", "Grep"],
"input": "natural language query",
"output": "ranked list of matching files with relevance",
"depends_on": ["init"],
"token_estimate": 1500,
"parallel_safe": true
},
{
"id": "refresh",
"path": "skills/refresh/SKILL.md",
"description": "Rebuild codebase index (full, incremental, or session-based)",
"category": "context",
"model": "opus",
"tags": ["rebuild", "update", "incremental"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": ".ccs/ directory + codebase changes",
"output": "updated .ccs/ index files",
"depends_on": ["init"],
"token_estimate": 5000,
"parallel_safe": false
},
{
"id": "plan",
"path": "skills/plan/SKILL.md",
"description": "Plan a task with full dependency-aware context",
"category": "workflow",
"model": "opus",
"tags": ["plan", "task", "dependency"],
"tools": ["Read", "Write", "Glob", "Grep", "Task", "EnterPlanMode"],
"input": "task description",
"output": "structured plan with dependency graph and file targets",
"depends_on": ["init"],
"token_estimate": 4000,
"parallel_safe": true
},
{
"id": "build",
"path": "skills/build/SKILL.md",
"description": "Implement a feature with tracked context and commit-style logging",
"category": "workflow",
"model": "sonnet",
"tags": ["implement", "create", "feature"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "task/feature description",
"output": "implemented code + .ccs/task.md entry",
"depends_on": ["init", "plan"],
"token_estimate": 6000,
"parallel_safe": false
},
{
"id": "fix",
"path": "skills/fix/SKILL.md",
"description": "Fix bugs with root-cause analysis and dependency tracking",
"category": "workflow",
"model": "sonnet",
"tags": ["debug", "bugfix", "root-cause"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "bug description or error message",
"output": "fixed code + root-cause analysis + .ccs/task.md entry",
"depends_on": ["init"],
"token_estimate": 5000,
"parallel_safe": false
},
{
"id": "refactor",
"path": "skills/refactor/SKILL.md",
"description": "Scope a refactor — identify all affected files and blast radius",
"category": "workflow",
"model": "opus",
"tags": ["restructure", "blast-radius"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "refactor scope description",
"output": "blast radius analysis + refactored code + .ccs/task.md entry",
"depends_on": ["init"],
"token_estimate": 5000,
"parallel_safe": false
},
{
"id": "team",
"path": "skills/team/SKILL.md",
"description": "Spawn an agent team for complex multi-part tasks",
"category": "workflow",
"model": "opus",
"tags": ["multi-agent", "parallel", "coordination", "team-lead"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "complex task description",
"output": ".ccs/team-board.md + coordinated multi-agent results",
"depends_on": ["init"],
"token_estimate": 8000,
"parallel_safe": false
},
{
"id": "test",
"path": "skills/test/SKILL.md",
"description": "Run tests, diagnose failures, suggest or auto-fix",
"category": "quality",
"model": "sonnet",
"tags": ["test", "verify", "auto-fix"],
"tools": ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Task"],
"input": "test scope (file, suite, or all)",
"output": "test results + failure analysis + auto-fix suggestions",
"depends_on": ["init"],
"token_estimate": 4000,
"parallel_safe": true
},
{
"id": "audit",
"path": "skills/audit/SKILL.md",
"description": "Audit code for security, performance, patterns, accessibility, dead code",
"category": "quality",
"model": "opus",
"tags": ["security", "performance", "a11y", "dead-code"],
"tools": ["Read", "Glob", "Grep", "Bash", "Task"],
"input": "audit scope (file, directory, or category)",
"output": "audit report with findings by severity",
"depends_on": ["init"],
"token_estimate": 6000,
"parallel_safe": true
},
{
"id": "review",
"path": "skills/review/SKILL.md",
"description": "Code review with full codebase context",
"category": "quality",
"model": "opus",
"tags": ["code-review", "style", "logic"],
"tools": ["Read", "Glob", "Grep", "Task"],
"input": "review scope (file, diff, or PR)",
"output": "review comments with severity and suggestions",
"depends_on": ["init"],
"token_estimate": 5000,
"parallel_safe": true
},
{
"id": "research",
"path": "skills/research/SKILL.md",
"description": "Search docs, resolve errors, check deps, find best practices",
"category": "quality",
"model": "opus",
"tags": ["docs", "errors", "best-practices"],
"tools": ["Read", "Write", "Glob", "Grep", "WebSearch", "WebFetch", "Task"],
"input": "research query or error message",
"output": "research findings cached locally",
"depends_on": [],
"token_estimate": 3000,
"parallel_safe": true
},
{
"id": "branch",
"path": "skills/branch/SKILL.md",
"description": "Create or switch branches with auto-generated context reference files",
"category": "git",
"model": "sonnet",
"tags": ["branch", "switch", "context-ref"],
"tools": ["Read", "Write", "Glob", "Grep", "Bash"],
"input": "branch name or operation",
"output": ".ccs/branches/<name>.md context reference",
"depends_on": ["init"],
"token_estimate": 2000,
"parallel_safe": false
},
{
"id": "pr",
"path": "skills/pr/SKILL.md",
"description": "Prepare a PR with context — summary, blast radius, review areas",
"category": "git",
"model": "opus",
"tags": ["pull-request", "summary", "blast-radius"],
"tools": ["Read", "Write", "Glob", "Grep", "Bash", "Task"],
"input": "PR scope (current branch)",
"output": ".ccs/pulls/<name>.md + PR creation",
"depends_on": ["init", "branch"],
"token_estimate": 4000,
"parallel_safe": true
},
{
"id": "merge",
"path": "skills/merge/SKILL.md",
"description": "Merge branches with dependency checking and conflict context",
"category": "git",
"model": "opus",
"tags": ["merge", "conflict", "resolution"],
"tools": ["Read", "Write", "Glob", "Grep", "Bash", "Task"],
"input": "source and target branches",
"output": "merged code + conflict resolution + .ccs/merge-history.md entry",
"depends_on": ["init", "branch"],
"token_estimate": 4000,
"parallel_safe": false
},
{
"id": "diff",
"path": "skills/diff/SKILL.md",
"description": "Smart diff with impact analysis — dependency chains and blast radius",
"category": "git",
"model": "opus",
"tags": ["diff", "impact", "dependency-chain"],
"tools": ["Read", "Glob", "Grep", "Bash", "Task"],
"input": "diff scope (file, branch, commit range)",
"output": "categorized diff with blast radius analysis",
"depends_on": ["init"],
"token_estimate": 3000,
"parallel_safe": true
},
{
"id": "sync",
"path": "skills/sync/SKILL.md",
"description": "Pull, push, or rebase with conflict context and resolution guidance",
"category": "git",
"model": "sonnet",
"tags": ["pull", "push", "rebase", "conflict"],
"tools": ["Read", "Write", "Glob", "Grep", "Bash"],
"input": "sync operation (pull, push, rebase)",
"output": "synced repo + conflict resolution if needed",
"depends_on": ["init"],
"token_estimate": 3000,
"parallel_safe": false
},
{
"id": "log",
"path": "skills/log/SKILL.md",
"description": "Smart commit history with context and task.md cross-references",
"category": "git",
"model": "haiku",
"tags": ["history", "commits", "cross-ref"],
"tools": ["Read", "Glob", "Grep", "Bash"],
"input": "log scope (branch, range, all)",
"output": "formatted commit history with task cross-references",
"depends_on": ["init"],
"token_estimate": 1500,
"parallel_safe": true
},
{
"id": "stash",
"path": "skills/stash/SKILL.md",
"description": "Stash and restore WIP with tracked context",
"category": "git",
"model": "haiku",
"tags": ["stash", "wip", "restore"],
"tools": ["Read", "Write", "Glob", "Grep", "Bash"],
"input": "stash operation (save, list, pop, apply)",
"output": "stashed/restored state + context tracking",
"depends_on": ["init"],
"token_estimate": 1500,
"parallel_safe": true
},
{
"id": "deploy",
"path": "skills/deploy/SKILL.md",
"description": "Pre-deployment checklist — tests, build, env vars, deps, breaking changes",
"category": "ops",
"model": "opus",
"tags": ["deploy", "checklist", "env-vars", "breaking-changes"],
"tools": ["Read", "Glob", "Grep", "Bash", "Task"],
"input": "deployment target or scope",
"output": "deployment readiness report with blockers",
"depends_on": ["init"],
"token_estimate": 4000,
"parallel_safe": false
},
{
"id": "track",
"path": "skills/track/SKILL.md",
"description": "View/manage the session task log",
"category": "ops",
"model": "haiku",
"tags": ["session", "task-log", "changes"],
"tools": ["Read", "Glob", "Grep"],
"input": "optional filter (date, skill, status)",
"output": "formatted session task log",
"depends_on": [],
"token_estimate": 1000,
"parallel_safe": true
},
{
"id": "connect",
"path": "skills/connect/SKILL.md",
"description": "Set up MCP server — create/update .mcp.json and verify connection",
"category": "setup",
"model": "sonnet",
"tags": ["mcp", "server", "endpoint", "config"],
"tools": ["Read", "Write", "Bash"],
"input": "MCP endpoint URL or default",
"output": ".mcp.json configuration + connection verification",
"depends_on": [],
"token_estimate": 2000,
"parallel_safe": false
}
],
"agents": [
{
"id": "context-builder",
"path": "agents/context-builder.md",
"description": "Deep codebase analysis, generates .ccs/ index files",
"model": "opus",
"tools": ["Read", "Glob", "Grep", "Write"],
"skills": ["init", "refresh"],
"parallel_safe": false
},
{
"id": "test-runner",
"path": "agents/test-runner.md",
"description": "Run tests, track results, auto-fix failures",
"model": "sonnet",
"tools": ["Bash", "Read", "Grep", "Write"],
"skills": ["test", "fix"],
"parallel_safe": true
},
{
"id": "code-auditor",
"path": "agents/code-auditor.md",
"description": "Security, performance, dead code, accessibility audits",
"model": "opus",
"tools": ["Read", "Glob", "Grep"],
"skills": ["audit", "review"],
"parallel_safe": true
},
{
"id": "git-tracker",
"path": "agents/git-tracker.md",
"description": "Git workflow — branches, PRs, merges, diffs, sync",
"model": "sonnet",
"tools": ["Bash", "Read", "Grep", "Write"],
"skills": ["branch", "pr", "merge", "diff", "sync", "log", "stash"],
"parallel_safe": false
},
{
"id": "knowledge-guide",
"path": "agents/knowledge-guide.md",
"description": "Methodology guidance, note quality, connection suggestions",
"model": "haiku",
"tools": ["Read", "Grep"],
"skills": [],
"parallel_safe": true
},
{
"id": "team-lead",
"path": "agents/team-lead.md",
"description": "Multi-agent team coordination, task decomposition, parallel dispatch",
"model": "opus",
"tools": ["Read", "Write", "Glob", "Grep", "Bash", "Task"],
"skills": ["team"],
"parallel_safe": false
}
],
"categories": {
"context": {
"skills": ["init", "status", "query", "refresh"],
"description": "Core indexing and lookup — start here"
},
"workflow": {
"skills": ["plan", "build", "fix", "refactor", "team"],
"description": "Task execution with dependency tracking"
},
"quality": {
"skills": ["test", "audit", "review", "research"],
"description": "Verification, security, and knowledge"
},
"git": {
"skills": ["branch", "pr", "merge", "diff", "sync", "log", "stash"],
"description": "Version control with context awareness"
},
"ops": {
"skills": ["deploy", "track"],
"description": "Deployment checklists and session tracking"
},
"setup": {
"skills": ["connect"],
"description": "MCP server configuration"
}
},
"swarm": {
"entry_point": "SKILLS-TREE.md",
"machine_index": "manifest.json",
"agents_index": "AGENTS-INDEX.md",
"coordination": "filesystem",
"state_dir": ".ccs/",
"parallel_read": true,
"write_lock_files": [".ccs/task.md", ".ccs/merge-history.md", ".ccs/team-board.md"],
"total_skills": 23,
"total_agents": 6
}
}