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.
Files changed (47) hide show
  1. package/agents/claude/be-dev.md +147 -0
  2. package/agents/claude/be-tech-lead.md +201 -0
  3. package/agents/claude/fe-dev.md +137 -0
  4. package/agents/claude/fe-tech-lead.md +186 -0
  5. package/agents/claude/forensic.md +138 -0
  6. package/agents/claude/governor.md +90 -0
  7. package/agents/claude/qa.md +163 -0
  8. package/agents/cursor/be-dev.md +41 -0
  9. package/agents/cursor/be-tech-lead.md +47 -0
  10. package/agents/cursor/fe-dev.md +39 -0
  11. package/agents/cursor/fe-tech-lead.md +47 -0
  12. package/agents/cursor/forensic.md +39 -0
  13. package/agents/cursor/governor.md +37 -0
  14. package/agents/cursor/qa.md +40 -0
  15. package/dist/adapters/claude-code.js +7 -7
  16. package/dist/adapters/cursor.js +3 -3
  17. package/dist/adapters/generic.js +3 -3
  18. package/dist/core/scaffold.d.ts +6 -1
  19. package/dist/core/scaffold.js +164 -40
  20. package/dist/core/scaffold.js.map +1 -1
  21. package/dist/index.js +56 -24
  22. package/dist/index.js.map +1 -1
  23. package/hooks/agent-checklist.sh +17 -0
  24. package/hooks/block-pl-src-write.sh +21 -0
  25. package/hooks/inject-pl-context.sh +32 -0
  26. package/hooks/track-prompt-count.sh +50 -0
  27. package/package.json +6 -2
  28. package/prompts/agents/05-fe-tech-lead.md +47 -47
  29. package/prompts/agents/06-be-tech-lead.md +44 -44
  30. package/prompts/agents/08-be-dev.md +37 -37
  31. package/prompts/agents/08-fe-dev.md +37 -37
  32. package/prompts/agents/10-qa.md +36 -36
  33. package/prompts/agents/11-forensic.md +24 -24
  34. package/prompts/agents/governor.md +25 -25
  35. package/prompts/orchestrator.md +203 -203
  36. package/prompts/skills/01-brainstorm.md +10 -10
  37. package/prompts/skills/02-spec.md +14 -14
  38. package/prompts/skills/03-design.md +21 -21
  39. package/prompts/skills/04-architecture.md +23 -23
  40. package/rules/cursor/be-dev.mdc +38 -0
  41. package/rules/cursor/be-tech-lead.mdc +39 -0
  42. package/rules/cursor/fe-dev.mdc +36 -0
  43. package/rules/cursor/fe-tech-lead.mdc +39 -0
  44. package/rules/cursor/forensic.mdc +35 -0
  45. package/rules/cursor/governor.mdc +33 -0
  46. package/rules/cursor/qa.mdc +35 -0
  47. 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
+ }