-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.json
More file actions
34 lines (34 loc) · 1.08 KB
/
skills.json
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"$schema": "https://claude.ai/schemas/skills.json",
"name": "conductor",
"version": "1.0.0",
"description": "Context-Driven Development for Claude Code - Project management through Context -> Spec & Plan -> Implement",
"author": "Adapted from Gemini Conductor",
"skills": {
"setup": {
"file": "commands/setup.md",
"description": "Initialize project with context files (project)",
"userInvocable": true
},
"newTrack": {
"file": "commands/newTrack.md",
"description": "Create a new feature/bug track with spec and plan (project)",
"userInvocable": true
},
"implement": {
"file": "commands/implement.md",
"description": "Execute next pending task from current track (project)",
"userInvocable": true
},
"status": {
"file": "commands/status.md",
"description": "Show overall project progress (project)",
"userInvocable": true
},
"revert": {
"file": "commands/revert.md",
"description": "Undo changes from a track or task (project)",
"userInvocable": true
}
}
}