create-claude-workspace 1.1.113 → 1.1.114
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.
|
@@ -124,8 +124,19 @@ If MEMORY.md indicates "Project complete" (Current Phase contains "PROJECT COMPL
|
|
|
124
124
|
- Then continue with the normal health check (step 2+). The new tasks will be picked up in STEP 1.
|
|
125
125
|
|
|
126
126
|
**If no new tasks found** (TODO.md has no `[ ]` and no external issues ingested):
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
|
|
128
|
+
3. **MANDATORY: Check working tree** — before declaring project complete, you MUST run:
|
|
129
|
+
```bash
|
|
130
|
+
git status --short | grep -v -E '^\?\? (\.env|node_modules/|\.claude/autonomous-state\.json)'
|
|
131
|
+
```
|
|
132
|
+
If this produces ANY output (untracked `??`, modified `M`, added `A`, etc.), the project is **NOT complete**:
|
|
133
|
+
- These are source files that were never committed — likely from a task that crashed before STEP 9.
|
|
134
|
+
- Create a task in TODO.md: `- [ ] **Review and commit uncommitted files** — [count] uncommitted files found in working tree (Complexity: S, Type: fullstack)`
|
|
135
|
+
- Reset MEMORY.md to active state (clear "PROJECT COMPLETE", set the new task as Next)
|
|
136
|
+
- Continue with normal health check (step 2+)
|
|
137
|
+
- **Do NOT declare project complete. Do NOT end session. Do NOT enter idle polling.**
|
|
138
|
+
|
|
139
|
+
Only if `git status --short` output is empty (or only contains excluded files) → project is truly complete, end session.
|
|
129
140
|
|
|
130
141
|
### 2. Resolve app names and package manager
|
|
131
142
|
- Read CLAUDE.md — find app name(s) and package manager from the Architecture/Tech Stack section
|