harnessed 1.0.4 → 2.0.1
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 +1 -1
- package/dist/cli.mjs +532 -247
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/workflows/capabilities.yaml +413 -0
- package/workflows/defaults.yaml +36 -0
- package/workflows/execute-task/SKILL.md +22 -9
- package/workflows/execute-task/phases.yaml +60 -14
- package/workflows/judgments/fallback.yaml +35 -0
- package/workflows/judgments/parallelism-gate.yaml +47 -0
- package/workflows/judgments/phase-gate.yaml +17 -0
- package/workflows/judgments/strategic-gate.yaml +25 -0
- package/workflows/judgments/subtask-gate.yaml +17 -0
- package/workflows/judgments/tdd-gate.yaml +17 -0
- package/workflows/plan-feature/SKILL.md +56 -14
- package/workflows/plan-feature/workflow.yaml +66 -25
- package/workflows/research/SKILL.md +35 -0
- package/workflows/research/workflow.yaml +18 -0
- package/workflows/verify-work/SKILL.md +92 -0
- package/workflows/verify-work/workflow.yaml +143 -0
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
- **三层栈机器化** — `gstack 决策` + `GSD 项目经理` + `superpowers 资深工程师` + `karpathy 4 心法` + `mattpocock 23 招式`,5 支柱 100% capture
|
|
23
23
|
- **不 vendor 上游** — manifest describe install/check;上游升级用户 re-install 即获最新版
|
|
24
|
-
- **Composition Skill** — 自家 workflow skill 当指挥棒,调度多个上游协同 (research
|
|
24
|
+
- **Composition Skill** — 自家 workflow skill 当指挥棒,调度多个上游协同 (v2.0: 4 workflows 完整 4-stage 机器化 — `research` 多源调研 + `plan-feature` 5-phase 三层栈 + `execute-task` ralph-loop completion + `verify-work` 9-phase Pattern C 4-specialist)
|
|
25
25
|
- **包管理器思维** — install dependency graph 自动解析, doctor 健康检查, install-base 一键装齐
|
|
26
26
|
- **统一入口** — 用户面对 `/plan-feature` / `/execute-task` 等 slash command,不需学每家上游术语
|
|
27
27
|
|