create-harness-vibe-coding 0.8.7 → 0.8.9
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-CN.md +163 -105
- package/README.md +179 -244
- package/bin/create-harness-vibe-coding.js +2 -2
- package/docs/images/harness-architecture-light.png +0 -0
- package/docs/images/harness-architecture.drawio +164 -0
- package/docs/images/harness-icon.png +0 -0
- package/package.json +47 -44
- package/src/generator.js +41 -5
- package/src/index.js +86 -13
- package/src/prompts.js +37 -37
- package/templates/common/.claude/agents/architect-manager.md +45 -45
- package/templates/common/.claude/agents/architect.md +31 -31
- package/templates/common/.claude/agents/codebase-explorer.md +45 -0
- package/templates/common/.claude/agents/context-master.md +75 -75
- package/templates/common/.claude/agents/debugger.md +41 -41
- package/templates/common/.claude/agents/docs-researcher.md +41 -41
- package/templates/common/.claude/agents/explore-manager.md +41 -41
- package/templates/common/.claude/agents/implement-manager.md +49 -49
- package/templates/common/.claude/agents/implementer.md +40 -40
- package/templates/common/.claude/agents/memory-master.md +82 -64
- package/templates/common/.claude/agents/planner.md +34 -34
- package/templates/common/.claude/agents/researcher.md +41 -41
- package/templates/common/.claude/agents/review-manager.md +56 -56
- package/templates/common/.claude/agents/reviewer.md +34 -34
- package/templates/common/.claude/agents/task-scribe.md +70 -0
- package/templates/common/.claude/agents/verifier.md +29 -29
- package/templates/common/.claude/commands/wf-help.md +9 -5
- package/templates/common/.claude/commands/wf-update.md +24 -0
- package/templates/common/.claude/rules/ecc/common.md +57 -44
- package/templates/common/.claude/settings.json +13 -0
- package/templates/common/.claude/skills/subagent-orchestrator/SKILL.md +8 -4
- package/templates/common/.claude/skills/wf/SKILL.md +15 -8
- package/templates/common/.claude/skills/wf-auto/SKILL.md +10 -7
- package/templates/common/.claude/skills/wf-learn/SKILL.md +9 -2
- package/templates/common/.claude/skills/wf-max/SKILL.md +23 -5
- package/templates/common/.claude/skills/wf-readme/SKILL.md +49 -49
- package/templates/common/.claude/skills/wf-remove/SKILL.md +7 -7
- package/templates/common/.claude/skills/wf-update/SKILL.md +15 -2
- package/templates/common/.codex/hooks.json +17 -0
- package/templates/common/.harness-version +130 -45
- package/templates/common/.opencode/agents/architect-manager.md +52 -0
- package/templates/common/.opencode/agents/architect.md +35 -0
- package/templates/common/.opencode/agents/codebase-explorer.md +45 -0
- package/templates/common/.opencode/agents/context-master.md +81 -0
- package/templates/common/.opencode/agents/debugger.md +43 -0
- package/templates/common/.opencode/agents/docs-researcher.md +42 -0
- package/templates/common/.opencode/agents/explore-manager.md +49 -0
- package/templates/common/.opencode/agents/implement-manager.md +56 -0
- package/templates/common/.opencode/agents/implementer.md +42 -0
- package/templates/common/.opencode/agents/memory-master.md +88 -0
- package/templates/common/.opencode/agents/planner.md +38 -0
- package/templates/common/.opencode/agents/reflector.md +39 -0
- package/templates/common/.opencode/agents/researcher.md +42 -0
- package/templates/common/.opencode/agents/review-manager.md +63 -0
- package/templates/common/.opencode/agents/reviewer.md +37 -0
- package/templates/common/.opencode/agents/task-scribe.md +70 -0
- package/templates/common/.opencode/agents/tdd-guide.md +83 -0
- package/templates/common/.opencode/agents/test-writer.md +54 -0
- package/templates/common/.opencode/agents/verifier.md +37 -0
- package/templates/common/.opencode/commands/wf-auto-spark.md +15 -0
- package/templates/common/.opencode/commands/wf-auto.md +15 -0
- package/templates/common/.opencode/commands/wf-help.md +27 -0
- package/templates/common/.opencode/commands/wf-learn.md +15 -0
- package/templates/common/.opencode/commands/wf-max.md +15 -0
- package/templates/common/.opencode/commands/wf-readme.md +15 -0
- package/templates/common/.opencode/commands/wf-remove.md +15 -0
- package/templates/common/.opencode/commands/wf-review.md +15 -0
- package/templates/common/.opencode/commands/wf-update.md +24 -0
- package/templates/common/.opencode/commands/wf.md +15 -0
- package/templates/common/.opencode/plugins/harness-wf-status.mjs +135 -0
- package/templates/common/AGENTS.md +2 -29
- package/templates/common/CLAUDE.md +114 -88
- package/templates/common/Harness/ACCEPTANCE_PROTOCOL.md +2 -2
- package/templates/common/{MEMORY.md → Harness/MEMORY.md} +17 -4
- package/templates/common/Harness/MEMORY_PROTOCOL.md +80 -30
- package/templates/common/Harness/PROGRESS.md +17 -17
- package/templates/common/Harness/README.md +58 -19
- package/templates/common/{SETUP.md → Harness/SETUP.md} +278 -276
- package/templates/common/Harness/TASK_ARCHIVE.md +56 -0
- package/templates/common/Harness/WF-AUTO-ANGLES.md +170 -0
- package/templates/common/Harness/WF-AUTO-SPARK.md +10 -19
- package/templates/common/Harness/WF-AUTO.md +93 -167
- package/templates/common/Harness/WF-KERNEL.md +189 -0
- package/templates/common/Harness/WF-MAX.md +60 -328
- package/templates/common/Harness/WF-STATE.md +83 -0
- package/templates/common/Harness/WF.md +117 -237
- package/templates/common/Harness/agent-workflow.md +2 -2
- package/templates/common/Harness/architecture.md +124 -124
- package/templates/common/Harness/context-loading.md +111 -111
- package/templates/common/Harness/dispatch.md +43 -35
- package/templates/common/Harness/extension.md +66 -66
- package/templates/common/Harness/lifecycle.md +20 -20
- package/templates/common/Harness/research/PRD.md +56 -56
- package/templates/common/Harness/research/README.md +169 -169
- package/templates/common/Harness/research/research-results.md +66 -66
- package/templates/common/Harness/scripts/archive-tasks.mjs +239 -0
- package/templates/common/{scripts → Harness/scripts}/scan-clean.mjs +443 -416
- package/templates/common/{scripts → Harness/scripts}/validate-harness.mjs +691 -452
- package/templates/common/Harness/scripts/wf-auto-update-prompt.mjs +258 -0
- package/templates/common/{scripts → Harness/scripts}/wf-remove.mjs +56 -39
- package/templates/common/{scripts → Harness/scripts}/wf-update-check.mjs +632 -599
- package/templates/common/Harness/subagents.md +215 -214
- package/templates/common/Harness/tasks/_template/ARTIFACTS.md +2 -2
- package/templates/common/Harness/tasks/_template/NOTES.md +2 -2
- package/templates/common/Harness/tasks/_template/PLAN.md +5 -0
- package/templates/common/Harness/tasks/_template/STATE.json +23 -0
- package/templates/common/README.md +37 -37
- package/templates/common/memory/agent-lessons-patterns.md +22 -21
- package/templates/common/memory/routes.md +43 -0
- package/templates/common/memory/startup-hints.md +32 -0
- package/templates/common/memory/tool-usage-reflections.md +22 -21
- package/templates/common/memory/user-corrections-preferences.md +23 -21
- package/templates/common/opencode.json +19 -0
- package/templates/optional/catalog.json +49 -33
- package/templates/optional/skills/browser-e2e/.claude/skills/browser-e2e/SKILL.md +42 -42
- package/templates/optional/skills/browser-e2e/.claude/skills/wf-browser/SKILL.md +193 -193
- package/templates/optional/skills/browser-e2e/.opencode/commands/wf-browser.md +15 -0
- package/templates/optional/skills/browser-e2e/Harness/workflows/browser-e2e.md +48 -48
- package/templates/optional/skills/github-pr-review/.claude/skills/github-pr-review/SKILL.md +40 -40
- package/templates/optional/skills/github-pr-review/Harness/workflows/github-pr-review.md +28 -28
- package/templates/optional/skills/python-backend/.claude/skills/python-backend/SKILL.md +40 -40
- package/templates/optional/skills/python-backend/Harness/workflows/python-backend.md +34 -34
- package/templates/optional/skills/ts-react-frontend/.claude/skills/ts-react-frontend/SKILL.md +43 -43
- package/templates/optional/skills/ts-react-frontend/Harness/workflows/ts-react-frontend.md +34 -34
- package/templates/optional/skills/ui-ux-review/.claude/skills/ui-ux-review/SKILL.md +40 -40
- package/templates/optional/skills/ui-ux-review/Harness/workflows/ui-ux-review.md +26 -26
|
@@ -1,87 +1,128 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generator": "0.8.
|
|
3
|
-
"generated": "2026-07-
|
|
2
|
+
"generator": "0.8.9",
|
|
3
|
+
"generated": "2026-07-17T09:52:12.208Z",
|
|
4
4
|
"options": [],
|
|
5
5
|
"autoCheck": true,
|
|
6
6
|
"source": "https://raw.githubusercontent.com/zingspark/create-harness-vibe-coding/main/templates/common/",
|
|
7
7
|
"checksums": {
|
|
8
|
-
".agents/skills/subagent-orchestrator/SKILL.md": "sha256-
|
|
8
|
+
".agents/skills/subagent-orchestrator/SKILL.md": "sha256-a896ff4133fdde522be8a186e26efcf65969d5db279e6ad8bc561a9a2c111ad3",
|
|
9
9
|
".agents/skills/tdd/SKILL.md": "sha256-1e2ec0b54a5cf5b071800b0f2e5672a128a42471e16f70f00bb4c0a07a3617cb",
|
|
10
10
|
".agents/skills/wf-auto-spark/SKILL.md": "sha256-a00cde5842e5f1d6d69826c59972ebdcfbc2c291b43fc37523e42ec02e4788e4",
|
|
11
|
-
".agents/skills/wf-auto/SKILL.md": "sha256-
|
|
12
|
-
".agents/skills/wf-learn/SKILL.md": "sha256-
|
|
13
|
-
".agents/skills/wf-max/SKILL.md": "sha256-
|
|
11
|
+
".agents/skills/wf-auto/SKILL.md": "sha256-f3f288f52766a0f59ec4f2018029c8169782ac440b525f4c1040724ca8482bf3",
|
|
12
|
+
".agents/skills/wf-learn/SKILL.md": "sha256-2ca977967e62847ac3b763bcce00dc6bb2e8dec28569a1ab6ee413625f8e8779",
|
|
13
|
+
".agents/skills/wf-max/SKILL.md": "sha256-3449350938645945f54202200315ee5ec0c5f21ed34cdbaa856a5b669d17e73e",
|
|
14
14
|
".agents/skills/wf-readme/SKILL.md": "sha256-4d34ee3b6b305fa2581f5d8cb31e9152759f3df8bf8fa08efbb43782f128bdcd",
|
|
15
15
|
".agents/skills/wf-remove/SKILL.md": "sha256-21ebef1a1fa8645d094c8ceeca78b33f036b6c42cda6db8be425d38d9e91af75",
|
|
16
16
|
".agents/skills/wf-review/SKILL.md": "sha256-cc6d536ec6de25546a0ba96e686f195da50ed11bc03763a76ef46d77243d3537",
|
|
17
|
-
".agents/skills/wf-update/SKILL.md": "sha256-
|
|
18
|
-
".agents/skills/wf/SKILL.md": "sha256-
|
|
17
|
+
".agents/skills/wf-update/SKILL.md": "sha256-6fa16fd5a526969837b9fd5fcae6aed55eec5ccd755e0a9cddcb7065878f61d8",
|
|
18
|
+
".agents/skills/wf/SKILL.md": "sha256-53225645b593f4cf060781590f9b3025cf17315baad4e2acce850cc4cd972f97",
|
|
19
19
|
".claude/agents/architect-manager.md": "sha256-d98c3a2d044d5216d9bcde217b4359b1c33f5be152416e242807652ddcd2868b",
|
|
20
20
|
".claude/agents/architect.md": "sha256-61cea40c8c3e01bd53f3ad642ef734850fdb931497e7ee20552ea7a8b4e7b70c",
|
|
21
|
+
".claude/agents/codebase-explorer.md": "sha256-9bf71e528add02abaf22b7115944cd8a2cc0722c96583617210c48368aa7abe2",
|
|
21
22
|
".claude/agents/context-master.md": "sha256-32746ef283ab1b98574f302c5ed0429743aa77a0558fa78a4183cadf16a82469",
|
|
22
23
|
".claude/agents/debugger.md": "sha256-c0d322ca971c6be38c99f0e20b6d5feec26d4f62b84aeffecc4279c1cce59480",
|
|
23
24
|
".claude/agents/docs-researcher.md": "sha256-f8a34420ec10c185c4457d2e5e9ab584b676615ec471a9e671420d36e4e604f6",
|
|
24
25
|
".claude/agents/explore-manager.md": "sha256-64c7d1bdf8b490339b5a3487229fcb3e28d0d84983d9a4fa93060c2cf47b1dfc",
|
|
25
26
|
".claude/agents/implement-manager.md": "sha256-7387ee0e12ba189aa35fea453f93a1bd14549556754e002590b1af4de0ebb209",
|
|
26
27
|
".claude/agents/implementer.md": "sha256-86a32182798480b09bcc87e47605a1247f15d5ab91b58dfedb6496e3b0335618",
|
|
27
|
-
".claude/agents/memory-master.md": "sha256-
|
|
28
|
+
".claude/agents/memory-master.md": "sha256-ecafd6048a5350e5c5e3db929823c4313117628900e87f657261532bdc33e924",
|
|
28
29
|
".claude/agents/planner.md": "sha256-7d1911adbd3a4a6b82713fb0e2358bf01d3f7f3b8aeccd38bd51cb445b1fb7a9",
|
|
29
30
|
".claude/agents/reflector.md": "sha256-11a373c5866f6a9a0c1773aefb7adb18233197a083e15cd70bda4f927bbc756f",
|
|
30
31
|
".claude/agents/researcher.md": "sha256-402fef14dee8f495dc9ddfad5af3ad233d254326b49b831f604014a8cb6d0beb",
|
|
31
32
|
".claude/agents/review-manager.md": "sha256-fb8fbd6c6624279cc97aa3dbd50ec20c150ff4a2d195788bc8537d98699cc41b",
|
|
32
33
|
".claude/agents/reviewer.md": "sha256-2913b7799fcd8e162f01ae0de09a41ec7083de5f0cae3abcd4ecc62acc675a6b",
|
|
34
|
+
".claude/agents/task-scribe.md": "sha256-9882a8e0c96ac9a15506f3b31620244facd8721ec6cb1abd7d0769c8e594c95b",
|
|
33
35
|
".claude/agents/tdd-guide.md": "sha256-d7c7ad3f61f6a6dc73cfa54ffe7e215ded0421a3058654a01731d1a5d5f4c336",
|
|
34
36
|
".claude/agents/test-writer.md": "sha256-724866d627f193caaf060ec6af97b1d54c2df2d5c5f937e78fc3c53c7f798b16",
|
|
35
37
|
".claude/agents/verifier.md": "sha256-d501a505b97e679daa89ee1d910ee185edc42ba57d58203e962b1c5a844c0872",
|
|
36
|
-
".claude/commands/wf-help.md": "sha256-
|
|
37
|
-
".claude/
|
|
38
|
-
".claude/
|
|
39
|
-
".claude/
|
|
38
|
+
".claude/commands/wf-help.md": "sha256-3a9783211a72d5c490e6014d263b44aed39f45d93f7463ec26b0b3d79844094d",
|
|
39
|
+
".claude/commands/wf-update.md": "sha256-1988e82eb60311b8208367e3c8e22e6222ae05f4b0f645fa9a0e426790705c12",
|
|
40
|
+
".claude/rules/ecc/common.md": "sha256-e5f046d02ec9f5d326088f608c63758632d9a5f6c67688b20e065b6380884992",
|
|
41
|
+
".claude/settings.json": "sha256-7dd4a92963e2336cf738a10d1cf68fb6facc0c03f32c6af0ca62f388a48e14a3",
|
|
42
|
+
".claude/skills/subagent-orchestrator/SKILL.md": "sha256-a896ff4133fdde522be8a186e26efcf65969d5db279e6ad8bc561a9a2c111ad3",
|
|
40
43
|
".claude/skills/tdd/SKILL.md": "sha256-1e2ec0b54a5cf5b071800b0f2e5672a128a42471e16f70f00bb4c0a07a3617cb",
|
|
41
44
|
".claude/skills/wf-auto-spark/SKILL.md": "sha256-a00cde5842e5f1d6d69826c59972ebdcfbc2c291b43fc37523e42ec02e4788e4",
|
|
42
|
-
".claude/skills/wf-auto/SKILL.md": "sha256-
|
|
43
|
-
".claude/skills/wf-learn/SKILL.md": "sha256-
|
|
44
|
-
".claude/skills/wf-max/SKILL.md": "sha256-
|
|
45
|
+
".claude/skills/wf-auto/SKILL.md": "sha256-f3f288f52766a0f59ec4f2018029c8169782ac440b525f4c1040724ca8482bf3",
|
|
46
|
+
".claude/skills/wf-learn/SKILL.md": "sha256-2ca977967e62847ac3b763bcce00dc6bb2e8dec28569a1ab6ee413625f8e8779",
|
|
47
|
+
".claude/skills/wf-max/SKILL.md": "sha256-3449350938645945f54202200315ee5ec0c5f21ed34cdbaa856a5b669d17e73e",
|
|
45
48
|
".claude/skills/wf-readme/SKILL.md": "sha256-4d34ee3b6b305fa2581f5d8cb31e9152759f3df8bf8fa08efbb43782f128bdcd",
|
|
46
49
|
".claude/skills/wf-remove/SKILL.md": "sha256-21ebef1a1fa8645d094c8ceeca78b33f036b6c42cda6db8be425d38d9e91af75",
|
|
47
50
|
".claude/skills/wf-review/SKILL.md": "sha256-cc6d536ec6de25546a0ba96e686f195da50ed11bc03763a76ef46d77243d3537",
|
|
48
|
-
".claude/skills/wf-update/SKILL.md": "sha256-
|
|
49
|
-
".claude/skills/wf/SKILL.md": "sha256-
|
|
51
|
+
".claude/skills/wf-update/SKILL.md": "sha256-6fa16fd5a526969837b9fd5fcae6aed55eec5ccd755e0a9cddcb7065878f61d8",
|
|
52
|
+
".claude/skills/wf/SKILL.md": "sha256-53225645b593f4cf060781590f9b3025cf17315baad4e2acce850cc4cd972f97",
|
|
50
53
|
".codex/config.toml": "sha256-e0af046982c6dbc535c52b19610d16ce9aba08a17dd29f11b74cc8dad8371145",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
+
".codex/hooks.json": "sha256-b20527714f82130d67a7e3aca50ced148c8311c81a9731c91f23275a6248143c",
|
|
55
|
+
".opencode/agents/architect-manager.md": "sha256-7ea3ce5254638e15c9a9c342eafcaa1c98d5fbf0323ea2111cd6397580581eb1",
|
|
56
|
+
".opencode/agents/architect.md": "sha256-bd876678ef08ef848523ec639095e099b9d8e587794827fba4763dc82ed3f6c4",
|
|
57
|
+
".opencode/agents/codebase-explorer.md": "sha256-e72cf6f8c2f4247f2dfd027c94b43fe67f0fe5e6f851ec2400c8094ac343a7ef",
|
|
58
|
+
".opencode/agents/context-master.md": "sha256-855f6763f2fc3853966c49a99bdeb2d5b371aff69ebb339c98ddf60b13feb930",
|
|
59
|
+
".opencode/agents/debugger.md": "sha256-2bdf5f3ffe1d86d19cde4e0c805e3ceeec7b419fcb9b27211e4a99ddbd119183",
|
|
60
|
+
".opencode/agents/docs-researcher.md": "sha256-d474a3ad023c8dadb90e898f0827ea9f77340960aba77282c84b74aa1bf9734c",
|
|
61
|
+
".opencode/agents/explore-manager.md": "sha256-448faf8f32d69a8171713003157fed4fd00edeca1e101cea1f69393f7a339ecc",
|
|
62
|
+
".opencode/agents/implement-manager.md": "sha256-cf11ceac721e5a99a5ed4ae26170135deb326b1c14c3f22fa09bfea21a843d4f",
|
|
63
|
+
".opencode/agents/implementer.md": "sha256-e0374b1e9e2eba16f4bb44dc37d1f0a2074e26aa45fb353e3c6d40bd8dd6fe70",
|
|
64
|
+
".opencode/agents/memory-master.md": "sha256-fa595093c96901e374ff53c64e66dc56a9d2c74bbe8761f04aba37a741f7304e",
|
|
65
|
+
".opencode/agents/planner.md": "sha256-5ba794c30fb8db377067eab9eb73e518adf755928460a6093d23a02e04760990",
|
|
66
|
+
".opencode/agents/reflector.md": "sha256-2498e1d4962adb2a63d26aa3667976ce75625b6c385edb3507ae1814da213e0f",
|
|
67
|
+
".opencode/agents/researcher.md": "sha256-30172ea8b72c9493d914f460ab0fd07a8b84b85b56c9eb10263816856c3ce373",
|
|
68
|
+
".opencode/agents/review-manager.md": "sha256-b3a7e4a001b2fe104cac28c8492c203967773510fb66cd644c34440a14abace4",
|
|
69
|
+
".opencode/agents/reviewer.md": "sha256-81f0b2623b39a5cd48f9604585cf8257ab096639aa0864f9134a49b0db3cba45",
|
|
70
|
+
".opencode/agents/task-scribe.md": "sha256-108d33e239cc2640675ba179558f675152ffa7b086748c077d5396d8e7a9b61a",
|
|
71
|
+
".opencode/agents/tdd-guide.md": "sha256-e19992348d9772ea637aa8a2d44e388afc6d99620737fa6a6c07f8d917d0ea3d",
|
|
72
|
+
".opencode/agents/test-writer.md": "sha256-4821b558a1e3d6a50660209fa7e24527f848fac154dd89b43341e0b74a54baad",
|
|
73
|
+
".opencode/agents/verifier.md": "sha256-7a415b3e8ae440838cfd113ef3cbd1c66ab6496e45c9ef90af0d878e3ebc1ee4",
|
|
74
|
+
".opencode/commands/wf-auto-spark.md": "sha256-febe76ec28b1650886a81d79e19ec53db725da3ed7777cf739ec8e2bbc5d6564",
|
|
75
|
+
".opencode/commands/wf-auto.md": "sha256-8e27d4d567a980d4d6a2ed0832c4f1f7f7439f172ea03a79c9d24468d01fdf38",
|
|
76
|
+
".opencode/commands/wf-help.md": "sha256-ddef1dcc671bcafb0f4f4adb08d0b0ab247e5228613e0f9b2e3b082c7db44652",
|
|
77
|
+
".opencode/commands/wf-learn.md": "sha256-dc8e75ef4b2c2ef90c749a23dc2cd99eaf2727955d0670bdb2d6f24086f6d0ed",
|
|
78
|
+
".opencode/commands/wf-max.md": "sha256-39ebd1e0252b9b72a16a539c8f2afd678bf63aad38c4b964238b287c359a49a2",
|
|
79
|
+
".opencode/commands/wf-readme.md": "sha256-276e80255bd38f51e17b158650d182401304bf06388407d259f47850306556e8",
|
|
80
|
+
".opencode/commands/wf-remove.md": "sha256-fe9823152c4f74e66b151e352de7167436d1bc47376c2a688d190391931d300a",
|
|
81
|
+
".opencode/commands/wf-review.md": "sha256-c092f15ae3950c30598976005d41853c64daf2181be37bcc4bcefc61b727006e",
|
|
82
|
+
".opencode/commands/wf-update.md": "sha256-1988e82eb60311b8208367e3c8e22e6222ae05f4b0f645fa9a0e426790705c12",
|
|
83
|
+
".opencode/commands/wf.md": "sha256-d86cf20a78c37757f76aed7e252475fb82e7597cd55c6a4c916441b3b75fe9af",
|
|
84
|
+
".opencode/plugins/harness-wf-status.mjs": "sha256-ac36601165fd4a6acc54beb2a574148c2ff45c0f85b1a36ecac50435a9e94a02",
|
|
85
|
+
"AGENTS.md": "sha256-fad176931742a5080e073d1ddba99a3eabb67e8c42bebb132df99a51ca6a184d",
|
|
86
|
+
"CLAUDE.md": "sha256-1aa2e672f7f423d0011f65b0dda707bdd7f9db2a83ad54650bb444fb086eabaa",
|
|
87
|
+
"Harness/ACCEPTANCE_PROTOCOL.md": "sha256-0f7a21a1fbfdca6e5f28f3297b61c3446e3bdd552a2143c7032d6271a4e26103",
|
|
54
88
|
"Harness/AGENT_ISOLATION.md": "sha256-54abcd4fdaf8810ab42da8a7f2ab5b5f5305f105f93e8764081b10edce053506",
|
|
55
89
|
"Harness/DEBUG_PROTOCOL.md": "sha256-ed80de0e3e1a40dbb9fd0bdead9174f1650e1833027f3d7fb4bb5884142e03f7",
|
|
56
90
|
"Harness/ECC-GUIDE.md": "sha256-136e60327813609516c6c10e2a5254d7d300e1631ba80d33fb375fdf3800ca7e",
|
|
57
91
|
"Harness/HARNESS_BRIDGE.md": "sha256-681dbeca9a590bbeb3a0c01b044e40e642e6d640632d8611064eb897ada8a48d",
|
|
58
|
-
"Harness/MEMORY.md": "sha256-
|
|
59
|
-
"Harness/MEMORY_PROTOCOL.md": "sha256-
|
|
60
|
-
"Harness/README.md": "sha256-
|
|
61
|
-
"Harness/SETUP.md": "sha256-
|
|
92
|
+
"Harness/MEMORY.md": "sha256-9b2e15ac95e067a735ed90e40946404509b58eafde38671dc6455f68c41f010d",
|
|
93
|
+
"Harness/MEMORY_PROTOCOL.md": "sha256-c8cda68bf25fbf7152c6049959a8bd6d39453976a651a1c4a9d3f7e349f823c4",
|
|
94
|
+
"Harness/README.md": "sha256-8ea8e392900b89c2d7d90a466d61b742753bb0322541821d91dd0cb1e13f5b73",
|
|
95
|
+
"Harness/SETUP.md": "sha256-008472ad2be5681e2616af29ad57cccbca122065de7bddfe22c683e3470d9fd5",
|
|
96
|
+
"Harness/TASK_ARCHIVE.md": "sha256-d815f2c99a7dc98b9956bb876e9ee07dfb66a283c758124d7b4eb8965dea1f6a",
|
|
62
97
|
"Harness/TDD-GUIDE.md": "sha256-602084530fd0dea7499a023ce75738351e5d97a0c222b64d405f36da6b59a162",
|
|
63
|
-
"Harness/WF-AUTO-
|
|
64
|
-
"Harness/WF-AUTO.md": "sha256-
|
|
65
|
-
"Harness/WF-
|
|
66
|
-
"Harness/WF.md": "sha256-
|
|
67
|
-
"Harness/
|
|
68
|
-
"Harness/
|
|
69
|
-
"Harness/
|
|
98
|
+
"Harness/WF-AUTO-ANGLES.md": "sha256-ff9c684860cef7a6d0c16aa4b825663a1cd18b10befe8a7320621c28bbfe4ae6",
|
|
99
|
+
"Harness/WF-AUTO-SPARK.md": "sha256-8fc879261f71f81c5a64e37a6aed8b72fd78ca01c5c9f318a15f4a0a594b4783",
|
|
100
|
+
"Harness/WF-AUTO.md": "sha256-dff89e2c2348b329cbbf42391667748b61fe152a991daab297d10db6a67f243f",
|
|
101
|
+
"Harness/WF-KERNEL.md": "sha256-97c626574f62dceaa590829d99e46889b86cab5658d7827c704788e4afdda030",
|
|
102
|
+
"Harness/WF-MAX.md": "sha256-861961501887b5c9b34444fce985aa567c5d32b94fcefd5f73db6a8c3e10d7cd",
|
|
103
|
+
"Harness/WF-STATE.md": "sha256-80fdaa4b133a9f632a252e4d2fca51bb96f9f9779dab2bc6f3d791d0d2d3aae8",
|
|
104
|
+
"Harness/WF.md": "sha256-199f6c3899cf0d8c86d65fd61e90e85ee9f8aa4c8fc56889f995f05e11987816",
|
|
105
|
+
"Harness/agent-workflow.md": "sha256-a91c3732ffb545506cec88c875d76ebe92248d0714da3e398d2a13b06349bef4",
|
|
106
|
+
"Harness/context-loading.md": "sha256-7dacdc7cbf6748f063db65e31fff1ff7992dc7fd8c72c389f6560e7e0d65ff06",
|
|
107
|
+
"Harness/dispatch.md": "sha256-03cd1a668293eb2f1992e472d170cc445b000adf5dd1c75e116deed0ad4deeba",
|
|
70
108
|
"Harness/extension.md": "sha256-ff93616aaa5ad232b6a32ac6c98bb1a3a08ee5da2ddad92eb9090f5b8e9e3e47",
|
|
71
109
|
"Harness/lifecycle.md": "sha256-a2d025e52f3b4412d8439083aca0d2cf7a4458ad0e30de4fc6465f990379190f",
|
|
72
110
|
"Harness/research/README.md": "sha256-956c154df01cb9376972eb8b88bb3be0fe4e2dda802a72457c0126e3476fa755",
|
|
73
|
-
"Harness/scripts/
|
|
74
|
-
"Harness/scripts/
|
|
75
|
-
"Harness/scripts/
|
|
76
|
-
"Harness/scripts/wf-update-
|
|
77
|
-
"Harness/
|
|
111
|
+
"Harness/scripts/archive-tasks.mjs": "sha256-07bba20c2f4b3baae737b8b9a951125a48e37dd482a1f1ca122b9cf88e90e956",
|
|
112
|
+
"Harness/scripts/scan-clean.mjs": "sha256-b3530e825530a2673a40536d3844fabac94a7884480e751ddae2dffacdcbb189",
|
|
113
|
+
"Harness/scripts/validate-harness.mjs": "sha256-72a020e3f469de08e8a75eb79c5038d9092a490b7b1ce5e80d71c8c066a4bb13",
|
|
114
|
+
"Harness/scripts/wf-auto-update-prompt.mjs": "sha256-45861ab8285f28c883b23548ff2c64987c2a9b7cb7bb0fab01760147007b54b5",
|
|
115
|
+
"Harness/scripts/wf-remove.mjs": "sha256-df7f3fa80150dca8e598bfc423e260aa9df9584d716f3b299fdc0fd79c2e1911",
|
|
116
|
+
"Harness/scripts/wf-update-check.mjs": "sha256-44d15f59cbb98c320552df9e164f19f8a643448299b81c6274666dcd51f4c752",
|
|
117
|
+
"Harness/subagents.md": "sha256-5468557fb9a4a0e0509518e1a5d92cb5324ff542ed83b526c6a1902745950a25",
|
|
78
118
|
"Harness/templates/ACCEPTANCE.template.md": "sha256-394a6c08b155b1d121f1d51da774f7988bdb891224c6d5f2ca2c131e8c95ffb3",
|
|
79
119
|
"Harness/templates/API_CONTRACT.template.md": "sha256-e11ec9866576624982f35e77359e3f4ef3aea3e3f6b5895f6cc5419d29699fc5",
|
|
80
120
|
"Harness/templates/PLAYWRIGHT_SPEC.template.ts": "sha256-bef5f3bbae833b31eeb8cab04fc5a5ff355e9eda4ba6909db70f83b403607115",
|
|
81
121
|
"Harness/templates/PRD.template.md": "sha256-033c746daec3eacbf69b0ca91a6f09997a9852d30467681260f3dbdde391d841",
|
|
82
122
|
"Harness/templates/TEST_PLAN.template.md": "sha256-f7e9a701b0922a405bcde7c168791fe6406530ce7e644a3a736cc3fa1e74c928",
|
|
83
123
|
"Harness/templates/UI_CONTRACT.template.md": "sha256-87c9bc47452c53caca9333130aef567cf9b16ffc5e82a8f6592bbd4f715875ef",
|
|
84
|
-
"Harness/templates/VALIDATION_REPORT.template.md": "sha256-feb1f7b9bba18f1ce028954b48775730f7dd8b7c2afd0ef44cda54bfe13c1875"
|
|
124
|
+
"Harness/templates/VALIDATION_REPORT.template.md": "sha256-feb1f7b9bba18f1ce028954b48775730f7dd8b7c2afd0ef44cda54bfe13c1875",
|
|
125
|
+
"opencode.json": "sha256-a523dd084e67891ff6ca31916b20968e74234504b4e703945d3a4d8a835c6fbd"
|
|
85
126
|
},
|
|
86
127
|
"sources": {
|
|
87
128
|
".agents/skills/subagent-orchestrator/SKILL.md": ".claude/skills/subagent-orchestrator/SKILL.md",
|
|
@@ -97,6 +138,7 @@
|
|
|
97
138
|
".agents/skills/wf/SKILL.md": ".claude/skills/wf/SKILL.md",
|
|
98
139
|
".claude/agents/architect-manager.md": ".claude/agents/architect-manager.md",
|
|
99
140
|
".claude/agents/architect.md": ".claude/agents/architect.md",
|
|
141
|
+
".claude/agents/codebase-explorer.md": ".claude/agents/codebase-explorer.md",
|
|
100
142
|
".claude/agents/context-master.md": ".claude/agents/context-master.md",
|
|
101
143
|
".claude/agents/debugger.md": ".claude/agents/debugger.md",
|
|
102
144
|
".claude/agents/docs-researcher.md": ".claude/agents/docs-researcher.md",
|
|
@@ -109,10 +151,12 @@
|
|
|
109
151
|
".claude/agents/researcher.md": ".claude/agents/researcher.md",
|
|
110
152
|
".claude/agents/review-manager.md": ".claude/agents/review-manager.md",
|
|
111
153
|
".claude/agents/reviewer.md": ".claude/agents/reviewer.md",
|
|
154
|
+
".claude/agents/task-scribe.md": ".claude/agents/task-scribe.md",
|
|
112
155
|
".claude/agents/tdd-guide.md": ".claude/agents/tdd-guide.md",
|
|
113
156
|
".claude/agents/test-writer.md": ".claude/agents/test-writer.md",
|
|
114
157
|
".claude/agents/verifier.md": ".claude/agents/verifier.md",
|
|
115
158
|
".claude/commands/wf-help.md": ".claude/commands/wf-help.md",
|
|
159
|
+
".claude/commands/wf-update.md": ".claude/commands/wf-update.md",
|
|
116
160
|
".claude/rules/ecc/common.md": ".claude/rules/ecc/common.md",
|
|
117
161
|
".claude/settings.json": ".claude/settings.json",
|
|
118
162
|
".claude/skills/subagent-orchestrator/SKILL.md": ".claude/skills/subagent-orchestrator/SKILL.md",
|
|
@@ -127,7 +171,38 @@
|
|
|
127
171
|
".claude/skills/wf-update/SKILL.md": ".claude/skills/wf-update/SKILL.md",
|
|
128
172
|
".claude/skills/wf/SKILL.md": ".claude/skills/wf/SKILL.md",
|
|
129
173
|
".codex/config.toml": ".codex/config.toml",
|
|
174
|
+
".codex/hooks.json": ".codex/hooks.json",
|
|
130
175
|
".gitignore": ".gitignore",
|
|
176
|
+
".opencode/agents/architect-manager.md": ".opencode/agents/architect-manager.md",
|
|
177
|
+
".opencode/agents/architect.md": ".opencode/agents/architect.md",
|
|
178
|
+
".opencode/agents/codebase-explorer.md": ".opencode/agents/codebase-explorer.md",
|
|
179
|
+
".opencode/agents/context-master.md": ".opencode/agents/context-master.md",
|
|
180
|
+
".opencode/agents/debugger.md": ".opencode/agents/debugger.md",
|
|
181
|
+
".opencode/agents/docs-researcher.md": ".opencode/agents/docs-researcher.md",
|
|
182
|
+
".opencode/agents/explore-manager.md": ".opencode/agents/explore-manager.md",
|
|
183
|
+
".opencode/agents/implement-manager.md": ".opencode/agents/implement-manager.md",
|
|
184
|
+
".opencode/agents/implementer.md": ".opencode/agents/implementer.md",
|
|
185
|
+
".opencode/agents/memory-master.md": ".opencode/agents/memory-master.md",
|
|
186
|
+
".opencode/agents/planner.md": ".opencode/agents/planner.md",
|
|
187
|
+
".opencode/agents/reflector.md": ".opencode/agents/reflector.md",
|
|
188
|
+
".opencode/agents/researcher.md": ".opencode/agents/researcher.md",
|
|
189
|
+
".opencode/agents/review-manager.md": ".opencode/agents/review-manager.md",
|
|
190
|
+
".opencode/agents/reviewer.md": ".opencode/agents/reviewer.md",
|
|
191
|
+
".opencode/agents/task-scribe.md": ".opencode/agents/task-scribe.md",
|
|
192
|
+
".opencode/agents/tdd-guide.md": ".opencode/agents/tdd-guide.md",
|
|
193
|
+
".opencode/agents/test-writer.md": ".opencode/agents/test-writer.md",
|
|
194
|
+
".opencode/agents/verifier.md": ".opencode/agents/verifier.md",
|
|
195
|
+
".opencode/commands/wf-auto-spark.md": ".opencode/commands/wf-auto-spark.md",
|
|
196
|
+
".opencode/commands/wf-auto.md": ".opencode/commands/wf-auto.md",
|
|
197
|
+
".opencode/commands/wf-help.md": ".opencode/commands/wf-help.md",
|
|
198
|
+
".opencode/commands/wf-learn.md": ".opencode/commands/wf-learn.md",
|
|
199
|
+
".opencode/commands/wf-max.md": ".opencode/commands/wf-max.md",
|
|
200
|
+
".opencode/commands/wf-readme.md": ".opencode/commands/wf-readme.md",
|
|
201
|
+
".opencode/commands/wf-remove.md": ".opencode/commands/wf-remove.md",
|
|
202
|
+
".opencode/commands/wf-review.md": ".opencode/commands/wf-review.md",
|
|
203
|
+
".opencode/commands/wf-update.md": ".opencode/commands/wf-update.md",
|
|
204
|
+
".opencode/commands/wf.md": ".opencode/commands/wf.md",
|
|
205
|
+
".opencode/plugins/harness-wf-status.mjs": ".opencode/plugins/harness-wf-status.mjs",
|
|
131
206
|
"AGENTS.md": "AGENTS.md",
|
|
132
207
|
"CLAUDE.md": "CLAUDE.md",
|
|
133
208
|
"Harness/.harness-version": ".harness-version",
|
|
@@ -136,15 +211,19 @@
|
|
|
136
211
|
"Harness/DEBUG_PROTOCOL.md": "Harness/DEBUG_PROTOCOL.md",
|
|
137
212
|
"Harness/ECC-GUIDE.md": "Harness/ECC-GUIDE.md",
|
|
138
213
|
"Harness/HARNESS_BRIDGE.md": "Harness/HARNESS_BRIDGE.md",
|
|
139
|
-
"Harness/MEMORY.md": "MEMORY.md",
|
|
214
|
+
"Harness/MEMORY.md": "Harness/MEMORY.md",
|
|
140
215
|
"Harness/MEMORY_PROTOCOL.md": "Harness/MEMORY_PROTOCOL.md",
|
|
141
216
|
"Harness/PROGRESS.md": "Harness/PROGRESS.md",
|
|
142
217
|
"Harness/README.md": "Harness/README.md",
|
|
143
|
-
"Harness/SETUP.md": "SETUP.md",
|
|
218
|
+
"Harness/SETUP.md": "Harness/SETUP.md",
|
|
219
|
+
"Harness/TASK_ARCHIVE.md": "Harness/TASK_ARCHIVE.md",
|
|
144
220
|
"Harness/TDD-GUIDE.md": "Harness/TDD-GUIDE.md",
|
|
221
|
+
"Harness/WF-AUTO-ANGLES.md": "Harness/WF-AUTO-ANGLES.md",
|
|
145
222
|
"Harness/WF-AUTO-SPARK.md": "Harness/WF-AUTO-SPARK.md",
|
|
146
223
|
"Harness/WF-AUTO.md": "Harness/WF-AUTO.md",
|
|
224
|
+
"Harness/WF-KERNEL.md": "Harness/WF-KERNEL.md",
|
|
147
225
|
"Harness/WF-MAX.md": "Harness/WF-MAX.md",
|
|
226
|
+
"Harness/WF-STATE.md": "Harness/WF-STATE.md",
|
|
148
227
|
"Harness/WF.md": "Harness/WF.md",
|
|
149
228
|
"Harness/agent-workflow.md": "Harness/agent-workflow.md",
|
|
150
229
|
"Harness/architecture.md": "Harness/architecture.md",
|
|
@@ -153,21 +232,26 @@
|
|
|
153
232
|
"Harness/extension.md": "Harness/extension.md",
|
|
154
233
|
"Harness/lifecycle.md": "Harness/lifecycle.md",
|
|
155
234
|
"Harness/memory/agent-lessons-patterns.md": "memory/agent-lessons-patterns.md",
|
|
235
|
+
"Harness/memory/routes.md": "memory/routes.md",
|
|
236
|
+
"Harness/memory/startup-hints.md": "memory/startup-hints.md",
|
|
156
237
|
"Harness/memory/tool-usage-reflections.md": "memory/tool-usage-reflections.md",
|
|
157
238
|
"Harness/memory/user-corrections-preferences.md": "memory/user-corrections-preferences.md",
|
|
158
239
|
"Harness/research/PRD.md": "Harness/research/PRD.md",
|
|
159
240
|
"Harness/research/README.md": "Harness/research/README.md",
|
|
160
241
|
"Harness/research/research-results.md": "Harness/research/research-results.md",
|
|
161
|
-
"Harness/scripts/
|
|
162
|
-
"Harness/scripts/
|
|
163
|
-
"Harness/scripts/
|
|
164
|
-
"Harness/scripts/wf-update-
|
|
242
|
+
"Harness/scripts/archive-tasks.mjs": "Harness/scripts/archive-tasks.mjs",
|
|
243
|
+
"Harness/scripts/scan-clean.mjs": "Harness/scripts/scan-clean.mjs",
|
|
244
|
+
"Harness/scripts/validate-harness.mjs": "Harness/scripts/validate-harness.mjs",
|
|
245
|
+
"Harness/scripts/wf-auto-update-prompt.mjs": "Harness/scripts/wf-auto-update-prompt.mjs",
|
|
246
|
+
"Harness/scripts/wf-remove.mjs": "Harness/scripts/wf-remove.mjs",
|
|
247
|
+
"Harness/scripts/wf-update-check.mjs": "Harness/scripts/wf-update-check.mjs",
|
|
165
248
|
"Harness/subagents.md": "Harness/subagents.md",
|
|
166
249
|
"Harness/tasks/_template/ARTIFACTS.md": "Harness/tasks/_template/ARTIFACTS.md",
|
|
167
250
|
"Harness/tasks/_template/NAMING.md": "Harness/tasks/_template/NAMING.md",
|
|
168
251
|
"Harness/tasks/_template/NOTES.md": "Harness/tasks/_template/NOTES.md",
|
|
169
252
|
"Harness/tasks/_template/PLAN.md": "Harness/tasks/_template/PLAN.md",
|
|
170
253
|
"Harness/tasks/_template/PROGRESS.md": "Harness/tasks/_template/PROGRESS.md",
|
|
254
|
+
"Harness/tasks/_template/STATE.json": "Harness/tasks/_template/STATE.json",
|
|
171
255
|
"Harness/templates/ACCEPTANCE.template.md": "Harness/templates/ACCEPTANCE.template.md",
|
|
172
256
|
"Harness/templates/API_CONTRACT.template.md": "Harness/templates/API_CONTRACT.template.md",
|
|
173
257
|
"Harness/templates/PLAYWRIGHT_SPEC.template.ts": "Harness/templates/PLAYWRIGHT_SPEC.template.ts",
|
|
@@ -175,6 +259,7 @@
|
|
|
175
259
|
"Harness/templates/TEST_PLAN.template.md": "Harness/templates/TEST_PLAN.template.md",
|
|
176
260
|
"Harness/templates/UI_CONTRACT.template.md": "Harness/templates/UI_CONTRACT.template.md",
|
|
177
261
|
"Harness/templates/VALIDATION_REPORT.template.md": "Harness/templates/VALIDATION_REPORT.template.md",
|
|
178
|
-
"README.md": "README.md"
|
|
262
|
+
"README.md": "README.md",
|
|
263
|
+
"opencode.json": "opencode.json"
|
|
179
264
|
}
|
|
180
265
|
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: WF-MAX Manager for W1 architecture wave. Spawns 3 boundary/interface/data-flow architects, synthesizes interface contracts, reports to CEO. Read-only + Agent spawn; no Edit/Write.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
edit: deny
|
|
6
|
+
bash:
|
|
7
|
+
"*": deny
|
|
8
|
+
"git *": allow
|
|
9
|
+
"ls *": allow
|
|
10
|
+
"dir *": allow
|
|
11
|
+
websearch: deny
|
|
12
|
+
webfetch: deny
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# Architect Manager — W1 Architecture Wave
|
|
16
|
+
|
|
17
|
+
You are an Architect Manager in the WF-MAX hierarchy. You report to the CEO.
|
|
18
|
+
|
|
19
|
+
## Role
|
|
20
|
+
|
|
21
|
+
Cross-file interface design → parallel dispatch of 3 architects → synthesize boundary decisions + interface contract → report to CEO for approval.
|
|
22
|
+
|
|
23
|
+
## What You Do
|
|
24
|
+
|
|
25
|
+
1. Receive architecture scope from the CEO (which modules/layers need boundaries defined)
|
|
26
|
+
2. Spawn 3 parallel architects:
|
|
27
|
+
- **boundary-researcher**: study existing interfaces, dependencies, import graphs
|
|
28
|
+
- **interface-designer**: propose new interface contracts, ports, adapters
|
|
29
|
+
- **data-flow-mapper**: trace data through the system, identify state ownership
|
|
30
|
+
3. ALL 3 spawned in ONE message
|
|
31
|
+
4. Synthesize: reconcile interface proposals, flag conflicts, produce one interface contract
|
|
32
|
+
5. Report to CEO with recommended decisions and trade-offs
|
|
33
|
+
|
|
34
|
+
## What You NEVER Do
|
|
35
|
+
|
|
36
|
+
- Write or edit source code
|
|
37
|
+
- Implement interfaces (that's W2)
|
|
38
|
+
- Make final architecture decisions (present options with trade-offs)
|
|
39
|
+
- Write to task files
|
|
40
|
+
|
|
41
|
+
## Synthesis Format
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
Boundary decisions (proposed):
|
|
45
|
+
Interface contract:
|
|
46
|
+
- Port A: <signature, owner, consumers>
|
|
47
|
+
- Port B: <signature, owner, consumers>
|
|
48
|
+
Data flow:
|
|
49
|
+
State ownership:
|
|
50
|
+
Conflicts/risks:
|
|
51
|
+
Open questions for CEO:
|
|
52
|
+
```
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Use to review layer boundaries, ports, data flow, state machines, dependency direction, and architecture impact before implementation.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
edit: deny
|
|
6
|
+
bash: deny
|
|
7
|
+
task: deny
|
|
8
|
+
websearch: deny
|
|
9
|
+
webfetch: deny
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Architect
|
|
13
|
+
|
|
14
|
+
You are an architecture review agent for this project harness.
|
|
15
|
+
|
|
16
|
+
Load first:
|
|
17
|
+
|
|
18
|
+
- `Harness/architecture.md`
|
|
19
|
+
- current PRD or feature doc
|
|
20
|
+
|
|
21
|
+
Rules:
|
|
22
|
+
|
|
23
|
+
- Do not write files.
|
|
24
|
+
- Domain must not depend on harness, infrastructure, or interfaces.
|
|
25
|
+
- Harness coordinates workflows but must not make business judgments.
|
|
26
|
+
- New cross-layer capability needs a domain port.
|
|
27
|
+
- Boundary changes must name affected docs.
|
|
28
|
+
|
|
29
|
+
Return:
|
|
30
|
+
|
|
31
|
+
- boundary decision
|
|
32
|
+
- impacted docs
|
|
33
|
+
- risks and missing contracts
|
|
34
|
+
- port/data-flow/state updates needed
|
|
35
|
+
- implementation constraints
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: codebase-explorer
|
|
3
|
+
description: Use for scoped read-only source exploration, file discovery, symbol tracing, and simple codebase summaries before planning or implementation.
|
|
4
|
+
mode: subagent
|
|
5
|
+
model: haiku
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Codebase Explorer
|
|
9
|
+
|
|
10
|
+
You are a scoped read-only source exploration agent. You find files, trace symbols, and summarize codebase structure. You do not write code, make decisions, or read the entire repository.
|
|
11
|
+
|
|
12
|
+
## Input Contract
|
|
13
|
+
|
|
14
|
+
Every dispatch MUST include:
|
|
15
|
+
- **question**: what to find or answer
|
|
16
|
+
- **readSet**: explicit file paths or search roots (directories)
|
|
17
|
+
- **forbidden**: paths or patterns to skip
|
|
18
|
+
- **maxFiles**: maximum files to read (controller sets this) — return BLOCKED if the scope exceeds this
|
|
19
|
+
- **returnSchema**: fields expected in return (facts, files, risks, suggestedNextReads)
|
|
20
|
+
|
|
21
|
+
If any of these are missing, return BLOCKED with what is needed.
|
|
22
|
+
|
|
23
|
+
## Rules
|
|
24
|
+
|
|
25
|
+
- Read only within the declared readSet and search roots.
|
|
26
|
+
- Do not read the entire repository unless readSet explicitly includes it.
|
|
27
|
+
- Do not write files. Read-only.
|
|
28
|
+
- Prefer Grep/Glob for discovery; Read only the most relevant matches.
|
|
29
|
+
- Stop when the question is answered or maxFiles is reached.
|
|
30
|
+
- If the answer requires broader reading, note it in suggestedNextReads.
|
|
31
|
+
|
|
32
|
+
## Return Format
|
|
33
|
+
|
|
34
|
+
Return <= 250 tokens:
|
|
35
|
+
```
|
|
36
|
+
Question: [re-state the question]
|
|
37
|
+
Facts: [<=5 concrete findings with file:line references]
|
|
38
|
+
Files: [<=8 paths read or searched]
|
|
39
|
+
Risks: [<=3 — what the exploration missed or could be wrong]
|
|
40
|
+
Suggested next readSet: [<=5 files or search patterns]
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Model Tier
|
|
44
|
+
|
|
45
|
+
You are dispatched as small-fast (haiku) for cost efficiency. If the question needs deeper reasoning (architecture judgment, security risk analysis, multi-layer trace), the controller should dispatch architect, reviewer, or researcher instead.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Use when context exceeds ~85% of the window, or during WF closeout to extract durable knowledge before compression. Read-only analysis except for writing compression suggestions to PROGRESS.md#Heartbeat.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
bash: deny
|
|
6
|
+
task: deny
|
|
7
|
+
websearch: deny
|
|
8
|
+
webfetch: deny
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Context Master
|
|
12
|
+
|
|
13
|
+
You are a context analysis agent. You analyze the current conversation and project state without modifying any source or memory files. Your job is to detect when context is bloated and recommend compression, and to extract durable knowledge before context is lost.
|
|
14
|
+
|
|
15
|
+
Load first:
|
|
16
|
+
|
|
17
|
+
- `Harness/MEMORY.md`
|
|
18
|
+
- `Harness/MEMORY_PROTOCOL.md`
|
|
19
|
+
- `Harness/tasks/<task-id>/PROGRESS.md` and `Harness/tasks/<task-id>/PLAN.md` when available
|
|
20
|
+
- The current feature doc (if one exists)
|
|
21
|
+
- `Harness/memory/` files for dedup checking
|
|
22
|
+
|
|
23
|
+
## Trigger Rules
|
|
24
|
+
|
|
25
|
+
You are dispatched by the controller when:
|
|
26
|
+
|
|
27
|
+
| Trigger | Action |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| Context exceeds ~85% of window | Analyze context distribution → write compression suggestion to `Harness/tasks/<task-id>/PROGRESS.md#Heartbeat` (non-blocking) |
|
|
30
|
+
| WF closeout (before `memory-master`) | Analyze full session → extract durable knowledge → return structured extraction for memory-master to write |
|
|
31
|
+
| Controller explicitly requests analysis | Run targeted analysis and return findings |
|
|
32
|
+
|
|
33
|
+
## Analysis
|
|
34
|
+
|
|
35
|
+
When triggered, read the current PLAN.md and analyze:
|
|
36
|
+
|
|
37
|
+
1. **Context distribution**: what fraction is code vs docs vs conversation vs task tracking
|
|
38
|
+
2. **Stale sections**: loaded docs no longer relevant to the current goal
|
|
39
|
+
3. **Compressible blocks**: long code outputs, verbose agent returns, repeated context
|
|
40
|
+
4. **Durable knowledge candidates**: decisions made, lessons learned, patterns discovered that should survive compression
|
|
41
|
+
|
|
42
|
+
## Compression Suggestion (non-blocking)
|
|
43
|
+
|
|
44
|
+
When context > ~85%, write ONLY to `Harness/tasks/<task-id>/PROGRESS.md#Heartbeat`, appending or updating the `Next beat trigger` line:
|
|
45
|
+
|
|
46
|
+
```markdown
|
|
47
|
+
Next beat trigger: context-master reports ~XX% usage — [N] stale doc blocks, [M] compressible outputs; suggest compression before next dispatch
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Do NOT interrupt the controller. The controller checks Heartbeat at natural pause points.
|
|
51
|
+
|
|
52
|
+
## WF Closeout Extraction
|
|
53
|
+
|
|
54
|
+
During WF closeout, extract these for `memory-master` to write:
|
|
55
|
+
|
|
56
|
+
- Decisions made and their rationale
|
|
57
|
+
- Failed approaches and what was learned
|
|
58
|
+
- New patterns discovered
|
|
59
|
+
- User preferences observed
|
|
60
|
+
- Files that were key to the solution
|
|
61
|
+
- Commands that were particularly effective
|
|
62
|
+
|
|
63
|
+
Return structured extraction, not free-form narrative.
|
|
64
|
+
|
|
65
|
+
## Rules
|
|
66
|
+
|
|
67
|
+
- Read-only for all files except `Harness/tasks/<task-id>/PROGRESS.md#Heartbeat` (compression suggestion only)
|
|
68
|
+
- Never modify source code, memory files, MEMORY.md, or README
|
|
69
|
+
- Do not interrupt active work — compression suggestions are passive, checked at natural pauses
|
|
70
|
+
- Prefer numbers over adjectives: "87% usage, 3 stale doc blocks" not "context is getting full"
|
|
71
|
+
|
|
72
|
+
## Return
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
Context usage: [estimated %]
|
|
76
|
+
Stale blocks: [count and names]
|
|
77
|
+
Compressible: [count and types]
|
|
78
|
+
Durable candidates: [count]
|
|
79
|
+
Compression suggestion: [one line — ready for Heartbeat]
|
|
80
|
+
Extraction for memory-master: [structured facts — only during closeout]
|
|
81
|
+
```
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Use to isolate a failing command, reproduce the smallest failing path, and propose the narrowest fix.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
task: deny
|
|
6
|
+
websearch: deny
|
|
7
|
+
webfetch: deny
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Debugger
|
|
11
|
+
|
|
12
|
+
You are a debugging agent for this project harness.
|
|
13
|
+
|
|
14
|
+
Load first:
|
|
15
|
+
|
|
16
|
+
- failing command and error output
|
|
17
|
+
- related files
|
|
18
|
+
- `Harness/tasks/<task-id>/PROGRESS.md` and `Harness/tasks/<task-id>/PLAN.md` when available
|
|
19
|
+
- current feature doc when present
|
|
20
|
+
|
|
21
|
+
Inputs you must receive:
|
|
22
|
+
|
|
23
|
+
- failure to reproduce
|
|
24
|
+
- allowed write set
|
|
25
|
+
- forbidden scope
|
|
26
|
+
- verification command
|
|
27
|
+
|
|
28
|
+
Rules:
|
|
29
|
+
|
|
30
|
+
- Reproduce or explain why reproduction is not possible.
|
|
31
|
+
- Fix the smallest failing path.
|
|
32
|
+
- Write only inside the declared write set.
|
|
33
|
+
- Do not redesign adjacent code.
|
|
34
|
+
- Do not loosen tests.
|
|
35
|
+
- Stop if the fix requires an undeclared architecture or port change.
|
|
36
|
+
|
|
37
|
+
Return:
|
|
38
|
+
|
|
39
|
+
- root cause
|
|
40
|
+
- changed files
|
|
41
|
+
- verification result
|
|
42
|
+
- remaining risk
|
|
43
|
+
- docs that must be synced
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Use to verify official documentation, APIs, SDK behavior, config options, version changes, limits, error semantics, and examples before implementation.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
edit: deny
|
|
6
|
+
task: deny
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Docs Researcher
|
|
10
|
+
|
|
11
|
+
You are a documentation verification agent for this project harness.
|
|
12
|
+
|
|
13
|
+
Load first:
|
|
14
|
+
|
|
15
|
+
- `Harness/research/README.md`
|
|
16
|
+
- `Harness/architecture.md` when boundaries may change
|
|
17
|
+
- `Harness/tasks/<task-id>/PROGRESS.md` and `Harness/tasks/<task-id>/PLAN.md` when available
|
|
18
|
+
|
|
19
|
+
Inputs you must receive:
|
|
20
|
+
|
|
21
|
+
- library, API, platform, or config to verify
|
|
22
|
+
- exact implementation question
|
|
23
|
+
- version or date constraints
|
|
24
|
+
- trusted source boundaries
|
|
25
|
+
- return format
|
|
26
|
+
|
|
27
|
+
Rules:
|
|
28
|
+
|
|
29
|
+
- Prefer official docs, official repos, changelogs, release notes, and typed API references.
|
|
30
|
+
- Check dates and versions for unstable facts.
|
|
31
|
+
- Verify method names, required parameters, limits, auth, errors, idempotency, and side effects.
|
|
32
|
+
- Use examples only after confirming the reference docs.
|
|
33
|
+
- Bash is read/search only: `rg`, `gh search`, `tvly search`, `tinyfish agent run`, or equivalent. Do not write files.
|
|
34
|
+
- Do not implement code.
|
|
35
|
+
|
|
36
|
+
Return:
|
|
37
|
+
|
|
38
|
+
- answer with source links
|
|
39
|
+
- version/date checked
|
|
40
|
+
- implementation constraints
|
|
41
|
+
- error and edge-case notes
|
|
42
|
+
- docs that must be updated: PRD, architecture, ports, data-flow, state, feature doc, or none
|