hool-cli 0.3.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agents/claude/be-dev.md +147 -0
- package/agents/claude/be-tech-lead.md +201 -0
- package/agents/claude/fe-dev.md +137 -0
- package/agents/claude/fe-tech-lead.md +186 -0
- package/agents/claude/forensic.md +138 -0
- package/agents/claude/governor.md +90 -0
- package/agents/claude/qa.md +163 -0
- package/agents/cursor/be-dev.md +41 -0
- package/agents/cursor/be-tech-lead.md +47 -0
- package/agents/cursor/fe-dev.md +39 -0
- package/agents/cursor/fe-tech-lead.md +47 -0
- package/agents/cursor/forensic.md +39 -0
- package/agents/cursor/governor.md +37 -0
- package/agents/cursor/qa.md +40 -0
- package/dist/adapters/claude-code.js +7 -7
- package/dist/adapters/cursor.js +3 -3
- package/dist/adapters/generic.js +3 -3
- package/dist/core/scaffold.d.ts +6 -1
- package/dist/core/scaffold.js +164 -40
- package/dist/core/scaffold.js.map +1 -1
- package/dist/index.js +56 -24
- package/dist/index.js.map +1 -1
- package/hooks/agent-checklist.sh +17 -0
- package/hooks/block-pl-src-write.sh +21 -0
- package/hooks/inject-pl-context.sh +32 -0
- package/hooks/track-prompt-count.sh +50 -0
- package/package.json +6 -2
- package/prompts/agents/05-fe-tech-lead.md +47 -47
- package/prompts/agents/06-be-tech-lead.md +44 -44
- package/prompts/agents/08-be-dev.md +37 -37
- package/prompts/agents/08-fe-dev.md +37 -37
- package/prompts/agents/10-qa.md +36 -36
- package/prompts/agents/11-forensic.md +24 -24
- package/prompts/agents/governor.md +25 -25
- package/prompts/orchestrator.md +203 -203
- package/prompts/skills/01-brainstorm.md +10 -10
- package/prompts/skills/02-spec.md +14 -14
- package/prompts/skills/03-design.md +21 -21
- package/prompts/skills/04-architecture.md +23 -23
- package/rules/cursor/be-dev.mdc +38 -0
- package/rules/cursor/be-tech-lead.mdc +39 -0
- package/rules/cursor/fe-dev.mdc +36 -0
- package/rules/cursor/fe-tech-lead.mdc +39 -0
- package/rules/cursor/forensic.mdc +35 -0
- package/rules/cursor/governor.mdc +33 -0
- package/rules/cursor/qa.mdc +35 -0
- package/settings/claude-settings.json +64 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hooks": {
|
|
3
|
+
"PreToolUse": [
|
|
4
|
+
{
|
|
5
|
+
"matcher": "Edit|Write",
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": ".hool/hooks/block-pl-src-write.sh",
|
|
10
|
+
"timeout": 5
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"PostToolUse": [
|
|
16
|
+
{
|
|
17
|
+
"matcher": "Agent",
|
|
18
|
+
"hooks": [
|
|
19
|
+
{
|
|
20
|
+
"type": "command",
|
|
21
|
+
"command": ".hool/hooks/track-prompt-count.sh",
|
|
22
|
+
"timeout": 5
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"UserPromptSubmit": [
|
|
28
|
+
{
|
|
29
|
+
"matcher": "",
|
|
30
|
+
"hooks": [
|
|
31
|
+
{
|
|
32
|
+
"type": "command",
|
|
33
|
+
"command": ".hool/hooks/inject-pl-context.sh",
|
|
34
|
+
"timeout": 5
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"Stop": [
|
|
40
|
+
{
|
|
41
|
+
"matcher": "",
|
|
42
|
+
"hooks": [
|
|
43
|
+
{
|
|
44
|
+
"type": "command",
|
|
45
|
+
"command": ".hool/hooks/agent-checklist.sh",
|
|
46
|
+
"timeout": 5
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"SubagentStop": [
|
|
52
|
+
{
|
|
53
|
+
"matcher": "",
|
|
54
|
+
"hooks": [
|
|
55
|
+
{
|
|
56
|
+
"type": "command",
|
|
57
|
+
"command": ".hool/hooks/agent-checklist.sh",
|
|
58
|
+
"timeout": 5
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
}
|