codeharbor 0.1.13 → 0.1.14
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/README.md +10 -1
- package/dist/cli.js +689 -116
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -403,14 +403,23 @@ If any check fails, it prints actionable fix commands (for example `codeharbor i
|
|
|
403
403
|
- `/stop` cancel in-flight execution (if running) and reset session context
|
|
404
404
|
- `/agents status` show multi-agent workflow status for current session (when enabled)
|
|
405
405
|
- `/agents run <objective>` run Planner -> Executor -> Reviewer workflow (when enabled)
|
|
406
|
+
- `/autodev status` show AutoDev doc/task summary + run snapshot (when enabled)
|
|
407
|
+
- `/autodev run [taskId]` auto-pick pending task (or run specified task) from `TASK_LIST.md` (when enabled)
|
|
406
408
|
|
|
407
409
|
### Multi-Agent Workflow (Phase B, Opt-In)
|
|
408
410
|
|
|
409
411
|
- `AGENT_WORKFLOW_ENABLED=true`
|
|
410
|
-
- enable `/agents` workflow commands
|
|
412
|
+
- enable `/agents` and `/autodev` workflow commands
|
|
411
413
|
- `AGENT_WORKFLOW_AUTO_REPAIR_MAX_ROUNDS`
|
|
412
414
|
- reviewer reject loop upper bound (default `1`)
|
|
413
415
|
|
|
416
|
+
AutoDev (`/autodev`) conventions:
|
|
417
|
+
|
|
418
|
+
- Workspace must contain `REQUIREMENTS.md` and `TASK_LIST.md`.
|
|
419
|
+
- `TASK_LIST.md` should include task IDs and status markers (`⬜`, `🔄`, `✅`, `❌`, `🚫`) in table rows or checklist rows.
|
|
420
|
+
- `/autodev run` selects `🔄` task first, then `⬜` task.
|
|
421
|
+
- When reviewer verdict is `APPROVED`, CodeHarbor updates the task status to `✅` automatically.
|
|
422
|
+
|
|
414
423
|
Default is disabled to keep legacy behavior unchanged.
|
|
415
424
|
|
|
416
425
|
## CLI Compatibility Mode
|