@mthanhlm/autodev 0.4.4 → 0.5.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 (75) hide show
  1. package/.claude-plugin/plugin.json +2 -2
  2. package/PUBLISH.md +9 -40
  3. package/README.md +70 -104
  4. package/autodev/bin/autodev-tools.cjs +521 -990
  5. package/autodev/templates/brief.md +19 -0
  6. package/autodev/templates/context.md +16 -0
  7. package/autodev/templates/plan.md +26 -46
  8. package/autodev/templates/run.md +20 -0
  9. package/bin/install.js +219 -422
  10. package/commands/autodev/index.md +117 -9
  11. package/commands/autodev/status.md +22 -0
  12. package/hooks/autodev-auto-format.js +3 -3
  13. package/hooks/autodev-git-guard.js +5 -7
  14. package/hooks/autodev-paths.js +3 -3
  15. package/package.json +4 -5
  16. package/scripts/run-tests.cjs +10 -0
  17. package/agents/autodev-codebase-domain.md +0 -25
  18. package/agents/autodev-codebase-quality.md +0 -25
  19. package/agents/autodev-codebase-runtime.md +0 -25
  20. package/agents/autodev-codebase-structure.md +0 -25
  21. package/agents/autodev-review-integration.md +0 -30
  22. package/agents/autodev-review-polish.md +0 -30
  23. package/agents/autodev-review-quality.md +0 -30
  24. package/agents/autodev-review-security.md +0 -30
  25. package/agents/autodev-task-worker.md +0 -39
  26. package/autodev/templates/codebase/domain.md +0 -13
  27. package/autodev/templates/codebase/quality.md +0 -13
  28. package/autodev/templates/codebase/runtime.md +0 -13
  29. package/autodev/templates/codebase/structure.md +0 -13
  30. package/autodev/templates/codebase/summary.md +0 -13
  31. package/autodev/templates/config.json +0 -22
  32. package/autodev/templates/project-state.md +0 -15
  33. package/autodev/templates/project.md +0 -24
  34. package/autodev/templates/requirements.md +0 -14
  35. package/autodev/templates/review.md +0 -27
  36. package/autodev/templates/roadmap.md +0 -17
  37. package/autodev/templates/state.md +0 -15
  38. package/autodev/templates/summary.md +0 -22
  39. package/autodev/templates/task-summary.md +0 -18
  40. package/autodev/templates/task.md +0 -23
  41. package/autodev/templates/track-state.md +0 -16
  42. package/autodev/templates/track.md +0 -24
  43. package/autodev/templates/uat.md +0 -18
  44. package/autodev/workflows/autodev-auto.md +0 -62
  45. package/autodev/workflows/autodev.md +0 -83
  46. package/autodev/workflows/cleanup.md +0 -51
  47. package/autodev/workflows/execute-phase.md +0 -144
  48. package/autodev/workflows/explore-codebase.md +0 -70
  49. package/autodev/workflows/help.md +0 -113
  50. package/autodev/workflows/new-project.md +0 -108
  51. package/autodev/workflows/plan-phase.md +0 -134
  52. package/autodev/workflows/progress.md +0 -18
  53. package/autodev/workflows/review-phase.md +0 -80
  54. package/autodev/workflows/review-plan.md +0 -55
  55. package/autodev/workflows/review-task.md +0 -70
  56. package/autodev/workflows/verify-work.md +0 -71
  57. package/commands/autodev/auto.md +0 -27
  58. package/commands/autodev/cleanup.md +0 -23
  59. package/commands/autodev/execute-phase.md +0 -29
  60. package/commands/autodev/explore-codebase.md +0 -33
  61. package/commands/autodev/help.md +0 -18
  62. package/commands/autodev/new-project.md +0 -30
  63. package/commands/autodev/plan-phase.md +0 -26
  64. package/commands/autodev/progress.md +0 -18
  65. package/commands/autodev/review-phase.md +0 -29
  66. package/commands/autodev/review-task.md +0 -25
  67. package/commands/autodev/verify-work.md +0 -24
  68. package/hooks/autodev-context-monitor.js +0 -59
  69. package/hooks/autodev-phase-boundary.sh +0 -49
  70. package/hooks/autodev-prompt-guard.js +0 -78
  71. package/hooks/autodev-read-guard.js +0 -42
  72. package/hooks/autodev-session-state.sh +0 -51
  73. package/hooks/autodev-statusline.js +0 -83
  74. package/hooks/autodev-workflow-guard.js +0 -43
  75. package/hooks/hooks.json +0 -89
package/hooks/hooks.json DELETED
@@ -1,89 +0,0 @@
1
- {
2
- "hooks": {
3
- "SessionStart": [
4
- {
5
- "hooks": [
6
- {
7
- "type": "command",
8
- "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-session-state.sh\"",
9
- "timeout": 5
10
- }
11
- ]
12
- }
13
- ],
14
- "PreToolUse": [
15
- {
16
- "matcher": "Write|Edit|MultiEdit",
17
- "hooks": [
18
- {
19
- "type": "command",
20
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-prompt-guard.js\"",
21
- "timeout": 5
22
- }
23
- ]
24
- },
25
- {
26
- "matcher": "Write|Edit|MultiEdit",
27
- "hooks": [
28
- {
29
- "type": "command",
30
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-read-guard.js\"",
31
- "timeout": 5
32
- }
33
- ]
34
- },
35
- {
36
- "matcher": "Write|Edit|MultiEdit",
37
- "hooks": [
38
- {
39
- "type": "command",
40
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-workflow-guard.js\"",
41
- "timeout": 5
42
- }
43
- ]
44
- },
45
- {
46
- "matcher": "Bash",
47
- "hooks": [
48
- {
49
- "type": "command",
50
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-git-guard.js\"",
51
- "timeout": 5
52
- }
53
- ]
54
- }
55
- ],
56
- "PostToolUse": [
57
- {
58
- "matcher": "Edit|Write|MultiEdit",
59
- "hooks": [
60
- {
61
- "type": "command",
62
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-auto-format.js\"",
63
- "timeout": 10
64
- }
65
- ]
66
- },
67
- {
68
- "matcher": "Bash|Edit|Write|MultiEdit|Agent|Task",
69
- "hooks": [
70
- {
71
- "type": "command",
72
- "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-context-monitor.js\"",
73
- "timeout": 10
74
- }
75
- ]
76
- },
77
- {
78
- "matcher": "Write|Edit|MultiEdit",
79
- "hooks": [
80
- {
81
- "type": "command",
82
- "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/autodev-phase-boundary.sh\"",
83
- "timeout": 5
84
- }
85
- ]
86
- }
87
- ]
88
- }
89
- }