harnessed 4.6.0 → 4.8.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 (48) hide show
  1. package/README.md +37 -3
  2. package/dist/cli.mjs +682 -433
  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/manifests/optional/codegraph.yaml +6 -4
  7. package/manifests/optional/ecc.ee5-answers.json +13 -0
  8. package/manifests/optional/ecc.yaml +64 -0
  9. package/messages/en.json +4 -1
  10. package/messages/zh-Hans.json +20 -3
  11. package/package.json +1 -1
  12. package/workflows/auto/SKILL.zh-Hans.md +129 -0
  13. package/workflows/capabilities.yaml +120 -0
  14. package/workflows/disciplines/doc-discipline.zh-Hans.yaml +49 -0
  15. package/workflows/disciplines/karpathy.yaml +5 -5
  16. package/workflows/disciplines/karpathy.zh-Hans.yaml +47 -0
  17. package/workflows/disciplines/operational.yaml +6 -6
  18. package/workflows/disciplines/operational.zh-Hans.yaml +79 -0
  19. package/workflows/disciplines/output-style.yaml +7 -7
  20. package/workflows/disciplines/output-style.zh-Hans.yaml +62 -0
  21. package/workflows/disciplines/priority.yaml +2 -2
  22. package/workflows/disciplines/priority.zh-Hans.yaml +28 -0
  23. package/workflows/discuss/auto/SKILL.zh-Hans.md +75 -0
  24. package/workflows/discuss/phase/SKILL.zh-Hans.md +73 -0
  25. package/workflows/discuss/strategic/SKILL.zh-Hans.md +78 -0
  26. package/workflows/discuss/subtask/SKILL.zh-Hans.md +79 -0
  27. package/workflows/plan/architecture/SKILL.zh-Hans.md +74 -0
  28. package/workflows/plan/auto/SKILL.zh-Hans.md +75 -0
  29. package/workflows/plan/phase/SKILL.zh-Hans.md +76 -0
  30. package/workflows/research/SKILL.zh-Hans.md +81 -0
  31. package/workflows/retro/SKILL.zh-Hans.md +71 -0
  32. package/workflows/role-prompts.zh-Hans.yaml +501 -0
  33. package/workflows/ship/auto/SKILL.zh-Hans.md +46 -0
  34. package/workflows/ship/preflight/SKILL.zh-Hans.md +38 -0
  35. package/workflows/task/auto/SKILL.zh-Hans.md +80 -0
  36. package/workflows/task/clarify/SKILL.zh-Hans.md +79 -0
  37. package/workflows/task/code/SKILL.zh-Hans.md +85 -0
  38. package/workflows/task/deliver/SKILL.zh-Hans.md +113 -0
  39. package/workflows/task/test/SKILL.zh-Hans.md +90 -0
  40. package/workflows/verify/auto/SKILL.zh-Hans.md +89 -0
  41. package/workflows/verify/code-review/SKILL.zh-Hans.md +71 -0
  42. package/workflows/verify/design/SKILL.zh-Hans.md +74 -0
  43. package/workflows/verify/multispec/SKILL.zh-Hans.md +88 -0
  44. package/workflows/verify/paranoid/SKILL.zh-Hans.md +74 -0
  45. package/workflows/verify/progress/SKILL.zh-Hans.md +69 -0
  46. package/workflows/verify/qa/SKILL.zh-Hans.md +76 -0
  47. package/workflows/verify/security/SKILL.zh-Hans.md +70 -0
  48. package/workflows/verify/simplify/SKILL.zh-Hans.md +70 -0
package/README.md CHANGED
@@ -2,8 +2,9 @@
2
2
 
3
3
  **English** | [简体中文](./README-cn.md) | [繁體中文](./README-tw.md) | [日本語](./README-ja.md) | [한국어](./README-ko.md) | [Português (Brasil)](./README-pt-BR.md) | [Türkçe](./README-tr.md) | [Русский](./README-ru.md) | [Tiếng Việt](./README-vi.md) | [ไทย](./README-th.md)
4
4
 
5
- > AI coding harness package manager + composition orchestrator
6
- > Machine-executes the three-layer-stack collaboration methodology (gstack governance + GSD project manager + superpowers senior engineer + karpathy principles + mattpocock moves) as a runnable engine
5
+ > **Turn raw Claude Code into a disciplined senior engineering team.** One install wires governance, planning, TDD, and review into a single Discuss→Ship workflow where progress and evidence persist on disk, not in chat.
6
+
7
+ > _AI coding harness package manager + composition orchestrator_ — machine-executes the three-layer-stack collaboration methodology (gstack governance + GSD project manager + superpowers senior engineer + karpathy principles + mattpocock moves) as a runnable engine
7
8
 
8
9
  [![npm](https://img.shields.io/npm/v/harnessed?label=npm&color=blue)](https://npmjs.com/package/harnessed)
9
10
  [![License: Apache-2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](./LICENSE)
@@ -17,7 +18,7 @@
17
18
 
18
19
  ## ✨ TL;DR
19
20
 
20
- **Best-practice orchestration for Harness Engineering on Claude Code**assembles the best open-source Claude Code ecosystem components, weaving them into a unified workflow via opinionated composition skills; does not vendor upstream code — manifests describe install/check, and composition skills orchestrate multi-upstream collaboration.
21
+ **How it works**: harnessed **assembles** the best open-source Claude Code agents (gstack, GSD, superpowers, planning-with-files) and **orchestrates** them into one workflow via opinionated composition skills. It does **not** vendor upstream code — manifests describe install/check, and composition skills conduct the multi-upstream collaboration (so an upstream upgrade is just a re-install, never a manual code sync).
21
22
 
22
23
  ### 🔁 The operating loop
23
24
 
@@ -76,6 +77,38 @@ The AI will auto-fetch the doc + run the install, handling OS / permissions / PA
76
77
 
77
78
  ---
78
79
 
80
+ ## ⏱️ First 5 Minutes
81
+
82
+ The shortest path from zero to a running workflow:
83
+
84
+ ```bash
85
+ # 1. Install (one line)
86
+ npm install -g harnessed && harnessed setup
87
+ ```
88
+
89
+ ```
90
+ # 2. Inside Claude Code — kick off your first workflow
91
+ /auto "your first requirement" # newcomer default: runs all stages end-to-end
92
+ ```
93
+
94
+ ```bash
95
+ # 3. Lost? Run harnessed with no arguments — it tells you where you are + what's next
96
+ harnessed
97
+ # → you-are-here dashboard (active phase + per-step status) + a NEXT: auto|manual|done line
98
+ # no need to remember status / next / resume — one command (comet `/comet` analog, read-only)
99
+ # add --json for machine-readable output
100
+ ```
101
+
102
+ ```bash
103
+ # 4. Resume any time after an interruption
104
+ harnessed # same you-are-here view
105
+ harnessed resume # continue from the latest checkpoint
106
+ ```
107
+
108
+ > Want finer control over which stage runs and when? See the 3 modes below.
109
+
110
+ ---
111
+
79
112
  ## 🚀 Quick Start — 3 Options
80
113
 
81
114
  In order of increasing user intervention:
@@ -405,6 +438,7 @@ planning-with-files /plan (cross-cutting tool) → write artifacts to .planning/
405
438
  | `harnessed gates <master>` | Evaluate which sub-workflows fire for a master stage (JSON: fire/skip/parallelism). Used by slash commands to orchestrate native spawns. |
406
439
  | `harnessed prompt <sub>` | Output a spawn-ready prompt (role + checklist + disciplines + completion/clarification protocols) for a sub-workflow. |
407
440
  | `harnessed checkpoint <action> <sub>` | Record sub-workflow start/complete/fail to `~/.claude/harnessed/checkpoints/`. |
441
+ | `harnessed` (no args) | Zero-arg you-are-here: active-workflow dashboard + `NEXT: auto\|manual\|done` + run hint; `--json` machine-readable; no active workflow → onboarding hint (comet `/comet` analog, read-only). |
408
442
  | `harnessed next` | Deterministic next-step contract (`NEXT: auto\|manual\|done`) for the active workflow. |
409
443
  | `harnessed reject <sub>` | Mark a sub as user-rejected (terminal, distinct from `failed`). |
410
444
  | `harnessed compact [--tokens <n>]` | Summarize+evict resolved ledger entries (G6-safe: `fail_count>0` never evicted); auto-triggers on `checkpoint complete --tokens`. |