harnessed 3.4.3 → 3.5.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.
Files changed (75) hide show
  1. package/README.md +3 -0
  2. package/dist/cli.mjs +1119 -745
  3. package/dist/cli.mjs.map +1 -1
  4. package/dist/index.mjs +1 -1
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +1 -1
  7. package/workflows/auto/SKILL.md +10 -4
  8. package/workflows/capabilities.yaml +18 -19
  9. package/workflows/disciplines/karpathy.yaml +1 -1
  10. package/workflows/disciplines/language.yaml +1 -1
  11. package/workflows/disciplines/operational.yaml +2 -2
  12. package/workflows/disciplines/output-style.yaml +1 -1
  13. package/workflows/disciplines/priority.yaml +1 -1
  14. package/workflows/disciplines/protocols.yaml +1 -1
  15. package/workflows/discuss/auto/SKILL.md +10 -6
  16. package/workflows/discuss/auto/workflow.yaml +1 -2
  17. package/workflows/discuss/phase/SKILL.md +11 -30
  18. package/workflows/discuss/phase/workflow.yaml +1 -1
  19. package/workflows/discuss/strategic/SKILL.md +12 -33
  20. package/workflows/discuss/strategic/workflow.yaml +2 -3
  21. package/workflows/discuss/subtask/SKILL.md +11 -30
  22. package/workflows/discuss/subtask/workflow.yaml +1 -1
  23. package/workflows/execute-task/SKILL.md +7 -6
  24. package/workflows/execute-task/workflow.yaml +93 -0
  25. package/workflows/judgments/fallback.yaml +1 -1
  26. package/workflows/judgments/parallelism-gate.yaml +4 -3
  27. package/workflows/judgments/phase-gate.yaml +2 -2
  28. package/workflows/judgments/strategic-gate.yaml +2 -2
  29. package/workflows/judgments/subtask-gate.yaml +2 -2
  30. package/workflows/judgments/tdd-gate.yaml +2 -2
  31. package/workflows/judgments/web-design-routing.yaml +1 -1
  32. package/workflows/judgments/web-search-routing.yaml +1 -1
  33. package/workflows/judgments/web-testing-routing.yaml +1 -1
  34. package/workflows/plan/architecture/SKILL.md +13 -34
  35. package/workflows/plan/architecture/workflow.yaml +2 -2
  36. package/workflows/plan/auto/SKILL.md +10 -6
  37. package/workflows/plan/auto/workflow.yaml +1 -2
  38. package/workflows/plan/phase/SKILL.md +14 -35
  39. package/workflows/plan/phase/workflow.yaml +3 -3
  40. package/workflows/plan-feature/SKILL.md +4 -4
  41. package/workflows/research/SKILL.md +19 -6
  42. package/workflows/research/workflow.yaml +4 -4
  43. package/workflows/retro/SKILL.md +13 -32
  44. package/workflows/retro/workflow.yaml +1 -2
  45. package/workflows/role-prompts.yaml +4 -3
  46. package/workflows/task/auto/SKILL.md +11 -7
  47. package/workflows/task/auto/workflow.yaml +2 -3
  48. package/workflows/task/clarify/SKILL.md +11 -30
  49. package/workflows/task/code/SKILL.md +14 -35
  50. package/workflows/task/code/workflow.yaml +0 -1
  51. package/workflows/task/deliver/SKILL.md +15 -38
  52. package/workflows/task/deliver/workflow.yaml +7 -6
  53. package/workflows/task/test/SKILL.md +11 -32
  54. package/workflows/task/test/workflow.yaml +1 -2
  55. package/workflows/verify/auto/SKILL.md +14 -10
  56. package/workflows/verify/auto/workflow.yaml +4 -5
  57. package/workflows/verify/code-review/SKILL.md +14 -38
  58. package/workflows/verify/code-review/workflow.yaml +1 -3
  59. package/workflows/verify/design/SKILL.md +14 -38
  60. package/workflows/verify/design/workflow.yaml +4 -5
  61. package/workflows/verify/multispec/SKILL.md +17 -39
  62. package/workflows/verify/multispec/workflow.yaml +5 -8
  63. package/workflows/verify/paranoid/SKILL.md +13 -38
  64. package/workflows/verify/paranoid/workflow.yaml +1 -2
  65. package/workflows/verify/progress/SKILL.md +13 -32
  66. package/workflows/verify/progress/workflow.yaml +0 -1
  67. package/workflows/verify/qa/SKILL.md +15 -36
  68. package/workflows/verify/qa/workflow.yaml +1 -2
  69. package/workflows/verify/security/SKILL.md +12 -35
  70. package/workflows/verify/security/workflow.yaml +1 -2
  71. package/workflows/verify/simplify/SKILL.md +13 -34
  72. package/workflows/verify/simplify/workflow.yaml +1 -2
  73. package/workflows/verify-work/SKILL.md +5 -7
  74. package/workflows/verify-work/workflow.yaml +5 -7
  75. package/workflows/execute-task/phases.yaml +0 -73
package/README.md CHANGED
@@ -371,6 +371,7 @@ planning-with-files /plan (cross-cutting tool) → write artifacts to .planning/
371
371
  | Command | Description |
372
372
  | ---- | ---- |
373
373
  | `harnessed setup` | One-time setup; installs workflow skills to `~/.claude/skills/` + MCP to `~/.claude.json` |
374
+ | `harnessed run <name>` | Run a workflow (master orchestrator or sub). Slash commands invoke via this subcommand. |
374
375
  | `harnessed resume` | Resume from the most recent checkpoint after a session interruption |
375
376
  | `harnessed status` | Current phase + lock holder |
376
377
  | `harnessed doctor` | 8-check health check (Node / MCP / jq / Win bash / routing / token budget, etc.) |
@@ -393,6 +394,8 @@ planning-with-files /plan (cross-cutting tool) → write artifacts to .planning/
393
394
  | `--yes` | Skip interactive confirm on uninstall |
394
395
  | `--full-diff` | Expand diffs folded above 200 lines |
395
396
  | `--no-color` | Force nocolor (even on TTY) |
397
+ | `--task <text>` | `run` — task description (passed as workflow `gateContext.task`) |
398
+ | `--task-stdin` | `run` — read task description from stdin until EOF (avoids shell-escape on quotes/$/`) |
396
399
 
397
400
 
398
401
  ---