create-claude-workspace 1.1.37 → 1.1.39

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.
@@ -551,17 +551,6 @@ If a merge conflict occurs:
551
551
  4. Push: `git push origin HEAD`
552
552
  5. Then clean up: `git worktree remove .worktrees/feat/{slug} && git branch -d feat/{slug}`
553
553
 
554
- ## Tech Debt & Refactoring
555
-
556
- When you notice recurring tech debt during development:
557
-
558
- 1. Add a `## Tech Debt` section to TODO.md (if not present)
559
- 2. Log items there with the same format as regular tasks: `- [ ] **[Description]** — [rationale]`
560
- 3. At the end of each phase, before starting the next:
561
- - Review Tech Debt section — are any items blocking or risky?
562
- - If yes: inject the most critical items at the start of the next phase
563
- - If no: leave for a dedicated refactoring sprint after MVP
564
-
565
554
  ## When Stuck
566
555
 
567
556
  NEVER stay stuck. Escalation order:
@@ -173,15 +173,6 @@ After generating TODO.md, validate it:
173
173
  - No task has Complexity: L without a note that it may need splitting
174
174
  - Phase 0 has all shared infrastructure (types, DI setup, theme, core services)
175
175
 
176
- **Tech Debt section:**
177
- Add a `## Tech Debt` section at the end of TODO.md (initially empty):
178
- ```markdown
179
- ## Tech Debt
180
- > Items added during development. Reviewed at each phase transition.
181
-
182
- (none yet)
183
- ```
184
-
185
176
  ### 8. Handoff
186
177
 
187
178
  After creating and validating TODO.md, tell the user:
@@ -138,7 +138,7 @@ Options:
138
138
  --max-turns <n> Max turns per Claude invocation (default: 50)
139
139
  --delay <ms> Pause between tasks (default: 5000)
140
140
  --cooldown <ms> Wait after error (default: 60000)
141
- --process-timeout <ms> Max time per invocation (default: 1800000 = 30min)
141
+ --process-timeout <ms> Max wall-clock time per invocation (default: 7200000 = 2h)
142
142
  --activity-timeout <ms> Max silence before kill (default: 300000 = 5min)
143
143
  --post-result-timeout <ms> Max wait after result (default: 30000 = 30s)
144
144
  --project-dir <path> Project directory (default: cwd)
@@ -7,7 +7,7 @@ export const DEFAULTS = {
7
7
  projectDir: process.cwd(),
8
8
  skipPermissions: false,
9
9
  resumeSession: null,
10
- processTimeout: 30 * 60_000,
10
+ processTimeout: 2 * 60 * 60_000,
11
11
  activityTimeout: 5 * 60_000,
12
12
  postResultTimeout: 30_000,
13
13
  logFile: '.claude/autonomous.log',
@@ -513,7 +513,7 @@ Install these before starting autonomous development:
513
513
  The full development cycle is managed by the **`orchestrator` agent**. It handles:
514
514
  - Session health check (file validation, git sync, external issue intake)
515
515
  - 12-step development cycle (pick -> plan -> implement -> test -> review -> commit)
516
- - Hotfix workflow, merge conflict resolution, tech debt tracking
516
+ - Hotfix workflow, merge conflict resolution
517
517
  - Phase transitions with product re-evaluation
518
518
  - Error recovery and graceful degradation
519
519
 
@@ -557,6 +557,3 @@ claude --agent orchestrator
557
557
  Continue development from where MEMORY.md left off
558
558
  ```
559
559
 
560
- ### Tech Debt
561
-
562
- The `orchestrator` agent maintains a `## Tech Debt` section in TODO.md. Items are added during development when recurring issues are spotted, and reviewed at each phase transition. Critical tech debt is injected into the next phase; non-critical items accumulate for a dedicated refactoring sprint after MVP.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "1.1.37",
3
+ "version": "1.1.39",
4
4
  "description": "Scaffold a project with Claude Code agents for autonomous AI-driven development",
5
5
  "type": "module",
6
6
  "bin": {