-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
65 lines (65 loc) · 1.79 KB
/
plugin.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "codebase-onboarding",
"version": "1.0.0",
"description": "AI-assisted codebase onboarding system for rapidly understanding large Java codebases",
"author": "Codebase Onboarding Team",
"repository": "github:username/codebase-onboarding",
"license": "MIT",
"engines": {
"claude-code": ">=1.0.0"
},
"agents": [
{
"name": "onboarding-orchestrator",
"path": "agents/onboarding-orchestrator.md",
"description": "Drives the entire onboarding process, tracks progress, coordinates other agents"
},
{
"name": "codebase-cartographer",
"path": "agents/codebase-cartographer.md",
"description": "High-level architecture mapping and orientation"
},
{
"name": "module-archaeologist",
"path": "agents/module-archaeologist.md",
"description": "Deep-dive into specific modules, packages, or classes"
}
],
"commands": [
{
"name": "onboard",
"path": "commands/onboard.md",
"description": "Start or continue the onboarding process"
},
{
"name": "explore",
"path": "commands/explore.md",
"description": "Explore and map a codebase or directory"
},
{
"name": "dive",
"path": "commands/dive.md",
"description": "Deep-dive into a specific module, package, or class"
}
],
"skills": [
{
"name": "codebase-explorer",
"path": "skills/codebase-explorer/SKILL.md",
"description": "Scripts and methodology for exploring Java codebases"
},
{
"name": "onboarding-system",
"path": "skills/onboarding-system/SKILL.md",
"description": "Six-phase onboarding methodology and templates"
}
],
"keywords": [
"onboarding",
"java",
"codebase",
"architecture",
"documentation",
"exploration"
]
}