-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
58 lines (58 loc) · 1.82 KB
/
Copy pathregistry.json
File metadata and controls
58 lines (58 loc) · 1.82 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
{
"schema_version": "1.0",
"repo": "auge2u/claude-dev-kit",
"components": {
"shell": {
"skill": "skills/shell/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux"],
"dependencies": ["git"],
"description": "Shell environment: zsh, powerlevel10k, completions, aliases"
},
"editor": {
"skill": "skills/editor/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux", "win32"],
"dependencies": [],
"description": "Editor config: VS Code/Cursor settings, extensions, keybindings"
},
"git": {
"skill": "skills/git/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux", "win32"],
"dependencies": ["git"],
"description": "Git workflow: hooks, commit templates, PR templates, CI"
},
"templates": {
"skill": "skills/templates/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux", "win32"],
"dependencies": [],
"description": "Project context: CLAUDE.md templates, scaffolds, patterns"
},
"quality": {
"skill": "skills/quality/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux", "win32"],
"dependencies": ["git"],
"description": "Quality gates: linting, testing, review automation"
},
"memory": {
"skill": "skills/memory/SKILL.md",
"version": "1.0.0",
"platforms": ["darwin", "linux", "win32"],
"dependencies": [],
"description": "Context management: conversation search, summarization"
}
},
"bundles": {
"minimal": ["shell"],
"standard": ["shell", "editor", "git", "templates"],
"full": ["shell", "editor", "git", "templates", "quality", "memory"]
},
"compatibility": {
"macos": { "min": "12.0" },
"ubuntu": { "min": "22.04" },
"windows": { "min": "10" }
}
}