@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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "autodev",
3
3
  "description": "A lean Claude Code workflow system with a single entrypoint, task-based phase execution, and read-only git.",
4
- "version": "0.4.2",
4
+ "version": "0.4.4",
5
5
  "author": {
6
6
  "name": "mthanhlm"
7
7
  },
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 foreground delegated agents when the environment supports them
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