@mthanhlm/autodev 0.4.2 → 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 +16 -1
- 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/templates/track.md +8 -1
- package/autodev/workflows/autodev-auto.md +62 -0
- package/autodev/workflows/autodev.md +15 -2
- package/autodev/workflows/execute-phase.md +32 -15
- package/autodev/workflows/explore-codebase.md +17 -8
- package/autodev/workflows/help.md +4 -1
- package/autodev/workflows/new-project.md +26 -11
- 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,12 +7,15 @@
|
|
|
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`
|
|
12
|
+
- Starts new projects and new tracks with a short discovery pass so requirements are based on the user's actual goal
|
|
11
13
|
- Resolves `.autodev/` state from the repo root even when Claude is started in a nested subdirectory
|
|
12
|
-
- Maps brownfield repos with
|
|
14
|
+
- Maps brownfield repos in the main session, with optional specialized helpers when the environment supports them
|
|
13
15
|
- Runs a multi-lens review pass, using foreground review agents when the environment supports them
|
|
14
16
|
- Can auto-format edited code after Claude writes files when a local formatter is available
|
|
15
17
|
- Ships manual commands when you want direct control:
|
|
18
|
+
- `/autodev-auto`
|
|
16
19
|
- `/autodev-help`
|
|
17
20
|
- `/autodev-new-project`
|
|
18
21
|
- `/autodev-explore-codebase`
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
|
|
30
33
|
Primary supported usage is the standalone `npx` installer.
|
|
31
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.
|
|
32
36
|
|
|
33
37
|
```bash
|
|
34
38
|
npx @mthanhlm/autodev@latest --global
|
|
@@ -61,10 +65,18 @@ npx @mthanhlm/autodev@latest --local --uninstall
|
|
|
61
65
|
|
|
62
66
|
## Default Flow
|
|
63
67
|
|
|
68
|
+
Checkpointed:
|
|
69
|
+
|
|
64
70
|
```text
|
|
65
71
|
/autodev
|
|
66
72
|
```
|
|
67
73
|
|
|
74
|
+
Continuous until blocked or done:
|
|
75
|
+
|
|
76
|
+
```text
|
|
77
|
+
/autodev-auto
|
|
78
|
+
```
|
|
79
|
+
|
|
68
80
|
Typical brownfield route:
|
|
69
81
|
|
|
70
82
|
```text
|
|
@@ -106,12 +118,15 @@ project -> track -> phase -> tasks
|
|
|
106
118
|
### Execution Model
|
|
107
119
|
|
|
108
120
|
- `/autodev` remains the single entrypoint
|
|
121
|
+
- `/autodev-auto` is the explicit continuous runner and never enables git writes
|
|
122
|
+
- Project and track setup should clarify what the user wants to build, for whom, and what done looks like before writing state files
|
|
109
123
|
- A phase is planned into one phase overview plus multiple task files
|
|
110
124
|
- `/autodev` stops after planning so the user can review the phase before any execution starts
|
|
111
125
|
- The phase keeps one user-facing orchestration session
|
|
112
126
|
- Each task is preferably executed by a fresh foreground delegated agent
|
|
113
127
|
- After each task, the delegated agent reports back with files changed, verification, and blockers
|
|
114
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
|
|
115
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
|
|
116
131
|
- No waves by default
|
|
117
132
|
- No automatic parallel execution
|