harnessed 3.9.25 → 4.0.0
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 +7 -2
- package/dist/cli.mjs +1811 -1425
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -366,17 +366,22 @@ planning-with-files /plan (cross-cutting tool) → write artifacts to .planning/
|
|
|
366
366
|
|
|
367
367
|
> These are harnessed's own maintenance commands (setup / health check / backup-rollback / state recovery, etc.). For day-to-day feature development just use the slash commands above — you usually don't need these.
|
|
368
368
|
|
|
369
|
+
**v4.0 — orchestration brain.** Slash commands run clarification in the main Claude Code session (so questions reach you), then spawn CC-native subagents (enabling Agent Teams + clarification round-trips). harnessed provides the gate evaluation (`harnessed gates`) and spawn-ready prompts (`harnessed prompt`); the main session does the spawning. `harnessed run` remains for CI/headless use.
|
|
370
|
+
|
|
369
371
|
### CLI Commands
|
|
370
372
|
|
|
371
373
|
| Command | Description |
|
|
372
374
|
| ---- | ---- |
|
|
373
375
|
| `harnessed setup` | One-time setup; installs workflow skills to `~/.claude/skills/` + MCP to `~/.claude.json` |
|
|
374
|
-
| `harnessed
|
|
376
|
+
| `harnessed gates <master>` | Evaluate which sub-workflows fire for a master stage (JSON: fire/skip/parallelism). Used by slash commands to orchestrate native spawns. |
|
|
377
|
+
| `harnessed prompt <sub>` | Output a spawn-ready prompt (role + checklist + disciplines + completion/clarification protocols) for a sub-workflow. |
|
|
378
|
+
| `harnessed checkpoint <action> <sub>` | Record sub-workflow start/complete/fail to `~/.claude/harnessed/checkpoints/`. |
|
|
379
|
+
| `harnessed run <name>` | Run a workflow via in-process SDK spawn (CI/headless mode). Slash commands use CC-native spawn instead. |
|
|
375
380
|
| `harnessed resume` | Resume from the most recent checkpoint after a session interruption |
|
|
376
381
|
| `harnessed status` | Current phase + lock holder |
|
|
377
382
|
| `harnessed doctor` | 8-check health check (Node / MCP / jq / Win bash / routing / token budget, etc.) |
|
|
378
383
|
| `harnessed install <name>` | Install an upstream manifest |
|
|
379
|
-
| `harnessed uninstall
|
|
384
|
+
| `harnessed uninstall [name]` | Reverse uninstall |
|
|
380
385
|
| `harnessed backup` | Snapshot backup management |
|
|
381
386
|
| `harnessed rollback <timestamp>` | One-line rollback (EOL preserve + sha1 verify) |
|
|
382
387
|
| `harnessed gc` | Clean up expired backups |
|