@mthanhlm/autodev 0.4.3 → 0.4.4
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/.claude-plugin/plugin.json +1 -1
- package/README.md +13 -0
- package/autodev/bin/autodev-tools.cjs +314 -69
- package/autodev/templates/project-state.md +2 -0
- package/autodev/templates/state.md +2 -0
- package/autodev/templates/track-state.md +2 -0
- package/autodev/workflows/autodev-auto.md +62 -0
- package/autodev/workflows/autodev.md +5 -1
- package/autodev/workflows/execute-phase.md +32 -15
- package/autodev/workflows/explore-codebase.md +5 -1
- package/autodev/workflows/help.md +4 -1
- package/autodev/workflows/new-project.md +9 -2
- package/autodev/workflows/plan-phase.md +11 -3
- package/autodev/workflows/review-phase.md +9 -2
- package/autodev/workflows/verify-work.md +17 -3
- package/bin/install.js +113 -23
- package/commands/autodev/auto.md +27 -0
- package/hooks/autodev-phase-boundary.sh +1 -1
- package/hooks/autodev-prompt-guard.js +26 -3
- package/hooks/autodev-read-guard.js +2 -2
- package/hooks/autodev-statusline.js +9 -4
- package/hooks/autodev-workflow-guard.js +1 -1
- package/hooks/hooks.json +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
- Installs a standalone Claude Code workflow under `~/.claude/` or `./.claude/`
|
|
8
8
|
- Keeps project state in `.autodev/`
|
|
9
9
|
- Uses `/autodev` as the main command
|
|
10
|
+
- Adds `/autodev-auto` as the explicit opt-in continuous mode
|
|
10
11
|
- Organizes work as `project -> track -> phase -> tasks`
|
|
11
12
|
- Starts new projects and new tracks with a short discovery pass so requirements are based on the user's actual goal
|
|
12
13
|
- Resolves `.autodev/` state from the repo root even when Claude is started in a nested subdirectory
|
|
@@ -14,6 +15,7 @@
|
|
|
14
15
|
- Runs a multi-lens review pass, using foreground review agents when the environment supports them
|
|
15
16
|
- Can auto-format edited code after Claude writes files when a local formatter is available
|
|
16
17
|
- Ships manual commands when you want direct control:
|
|
18
|
+
- `/autodev-auto`
|
|
17
19
|
- `/autodev-help`
|
|
18
20
|
- `/autodev-new-project`
|
|
19
21
|
- `/autodev-explore-codebase`
|
|
@@ -30,6 +32,7 @@
|
|
|
30
32
|
|
|
31
33
|
Primary supported usage is the standalone `npx` installer.
|
|
32
34
|
The repo also carries Claude Code plugin metadata for validation and local development, but the supported end-user runtime remains the installed `.claude/` workflow.
|
|
35
|
+
Supported runtime is Claude Code with Node plus `sh`/`bash` available.
|
|
33
36
|
|
|
34
37
|
```bash
|
|
35
38
|
npx @mthanhlm/autodev@latest --global
|
|
@@ -62,10 +65,18 @@ npx @mthanhlm/autodev@latest --local --uninstall
|
|
|
62
65
|
|
|
63
66
|
## Default Flow
|
|
64
67
|
|
|
68
|
+
Checkpointed:
|
|
69
|
+
|
|
65
70
|
```text
|
|
66
71
|
/autodev
|
|
67
72
|
```
|
|
68
73
|
|
|
74
|
+
Continuous until blocked or done:
|
|
75
|
+
|
|
76
|
+
```text
|
|
77
|
+
/autodev-auto
|
|
78
|
+
```
|
|
79
|
+
|
|
69
80
|
Typical brownfield route:
|
|
70
81
|
|
|
71
82
|
```text
|
|
@@ -107,6 +118,7 @@ project -> track -> phase -> tasks
|
|
|
107
118
|
### Execution Model
|
|
108
119
|
|
|
109
120
|
- `/autodev` remains the single entrypoint
|
|
121
|
+
- `/autodev-auto` is the explicit continuous runner and never enables git writes
|
|
110
122
|
- Project and track setup should clarify what the user wants to build, for whom, and what done looks like before writing state files
|
|
111
123
|
- A phase is planned into one phase overview plus multiple task files
|
|
112
124
|
- `/autodev` stops after planning so the user can review the phase before any execution starts
|
|
@@ -114,6 +126,7 @@ project -> track -> phase -> tasks
|
|
|
114
126
|
- Each task is preferably executed by a fresh foreground delegated agent
|
|
115
127
|
- After each task, the delegated agent reports back with files changed, verification, and blockers
|
|
116
128
|
- `/autodev` stops after each completed task and reopens a task review checkpoint before any further execution
|
|
129
|
+
- `/autodev-auto` keeps going until the active track is done or a real stop condition appears, such as missing intent, dependency deadlock, or manual verification
|
|
117
130
|
- If review or verification finds blockers, the same phase stays open and autodev should append remediation task(s) to that phase instead of replacing it or creating a follow-up phase by default
|
|
118
131
|
- No waves by default
|
|
119
132
|
- No automatic parallel execution
|