-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
49 lines (49 loc) · 1.46 KB
/
plugin.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "anvil",
"version": "1.0.0",
"description": "Spec-driven project management for solo developers. Forge specs into issues, strike them into code.",
"commands": [
{
"name": "cast",
"description": "Create a standalone issue",
"file": "commands/cast.md",
"argument_hint": "Project name + title (e.g. myapp \"Fix login\")"
},
{
"name": "forge",
"description": "Spec → phases → issue .md files",
"file": "commands/forge.md",
"argument_hint": "Project name (e.g. \"myapp\")"
},
{
"name": "strike",
"description": "Implement a feature issue end-to-end",
"file": "commands/strike.md",
"argument_hint": "Issue ID (e.g. P1-001, 003)"
},
{
"name": "mend",
"description": "Fix a bug issue with TDD",
"file": "commands/mend.md",
"argument_hint": "Issue ID (e.g. P1-001, 003)"
},
{
"name": "inspect",
"description": "Project status dashboard",
"file": "commands/inspect.md",
"argument_hint": "Project name"
},
{
"name": "quench",
"description": "Manually complete an issue",
"file": "commands/quench.md",
"argument_hint": "Issue ID"
}
],
"agents": [
{ "name": "explorer", "file": "agents/explorer.md" },
{ "name": "architect", "file": "agents/architect.md" },
{ "name": "simplifier", "file": "agents/simplifier.md" },
{ "name": "reviewer", "file": "agents/reviewer.md" }
]
}