-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathplugin.json
More file actions
61 lines (61 loc) · 1.65 KB
/
plugin.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "agentdev",
"version": "1.5.2",
"description": "Create, implement, and review Claude Code agents and commands with multi-model validation, LLM performance tracking, and session-based artifact isolation. Full-cycle development workflow with design, implementation, and quality review agents. Session isolation prevents file collisions across workflows.",
"author": "MadAppGang",
"license": "MIT",
"homepage": "https://github.com/MadAppGang/claude-code",
"tags": [
"agents",
"commands",
"development",
"multi-model",
"claudish",
"quality-review",
"xml-standards",
"orchestration",
"statistics",
"performance-tracking",
"session-isolation",
"debug-mode"
],
"agents": [
"architect",
"developer",
"reviewer"
],
"commands": [
"./commands/develop.md",
"./commands/help.md",
"./commands/debug-enable.md",
"./commands/debug-disable.md",
"./commands/debug-status.md"
],
"skills": [
"xml-standards",
"patterns",
"schemas",
"debug-mode",
"yaml-agent-format"
],
"hooks": {
"PreToolUse": {
"handler": "hooks/debug-capture.ts",
"entry": "handlePreToolUse",
"enabled": true,
"description": "Captures tool invocations when debug mode is enabled (AGENTDEV_DEBUG_FILE set)"
},
"PostToolUse": {
"handler": "hooks/debug-capture.ts",
"entry": "handlePostToolUse",
"enabled": true,
"description": "Captures tool results when debug mode is enabled, correlates with invocations"
}
},
"dependencies": {
"multimodel@mag-claude-plugins": "^2.0.0"
},
"compatibility": {
"claudeCode": ">=0.1.0"
}
}