create-harness-vibe-coding 0.8.6 → 0.8.8
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 +157 -105
- package/README.md +160 -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/package.json +46 -44
- package/src/generator.js +30 -11
- package/src/index.js +143 -14
- package/src/prompts.js +37 -37
- package/templates/common/.claude/agents/architect-manager.md +45 -45
- package/templates/common/.claude/agents/context-master.md +75 -75
- package/templates/common/.claude/agents/debugger.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 +64 -64
- package/templates/common/.claude/agents/planner.md +34 -34
- package/templates/common/.claude/agents/reflector.md +35 -0
- package/templates/common/.claude/agents/researcher.md +41 -41
- package/templates/common/.claude/agents/review-manager.md +56 -56
- package/templates/common/.claude/agents/verifier.md +34 -32
- package/templates/common/.claude/commands/wf-help.md +2 -3
- package/templates/common/.claude/rules/ecc/common.md +44 -44
- package/templates/common/.claude/skills/subagent-orchestrator/SKILL.md +10 -4
- package/templates/common/.claude/skills/wf/SKILL.md +7 -3
- package/templates/common/.claude/skills/wf-auto/SKILL.md +61 -107
- package/templates/common/.claude/skills/wf-auto-spark/SKILL.md +19 -17
- package/templates/common/.claude/skills/wf-max/SKILL.md +40 -21
- 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 +9 -4
- package/templates/common/.codex/config.toml +5 -0
- package/templates/common/.harness-version +78 -36
- package/templates/common/.opencode/agents/architect-manager.md +52 -0
- package/templates/common/.opencode/agents/architect.md +35 -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 +70 -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/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-help.md +23 -0
- package/templates/common/AGENTS.md +26 -25
- package/templates/common/CLAUDE.md +86 -88
- package/templates/common/Harness/ACCEPTANCE_PROTOCOL.md +12 -4
- package/templates/common/Harness/PROGRESS.md +17 -17
- package/templates/common/Harness/README.md +26 -16
- package/templates/common/Harness/WF-AUTO-ANGLES.md +170 -0
- package/templates/common/Harness/WF-AUTO-SPARK.md +23 -6
- package/templates/common/Harness/WF-AUTO.md +508 -493
- package/templates/common/Harness/WF-MAX.md +284 -232
- package/templates/common/Harness/WF.md +47 -29
- package/templates/common/Harness/agent-workflow.md +108 -76
- package/templates/common/Harness/architecture.md +124 -124
- package/templates/common/Harness/context-loading.md +111 -111
- package/templates/common/Harness/dispatch.md +96 -95
- package/templates/common/Harness/extension.md +67 -67
- 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/subagents.md +192 -170
- package/templates/common/Harness/tasks/_template/ARTIFACTS.md +3 -3
- package/templates/common/Harness/tasks/_template/NOTES.md +3 -3
- package/templates/common/Harness/tasks/_template/PLAN.md +53 -60
- package/templates/common/Harness/tasks/_template/PROGRESS.md +26 -29
- package/templates/common/MEMORY.md +27 -30
- package/templates/common/README.md +36 -36
- package/templates/common/SETUP.md +1 -1
- package/templates/common/memory/agent-lessons-patterns.md +21 -21
- package/templates/common/memory/tool-usage-reflections.md +21 -21
- package/templates/common/memory/user-corrections-preferences.md +21 -21
- package/templates/common/opencode.json +19 -0
- package/templates/common/scripts/scan-clean.mjs +487 -448
- package/templates/common/scripts/validate-harness.mjs +245 -146
- package/templates/common/scripts/wf-remove.mjs +311 -293
- package/templates/common/scripts/wf-update-check.mjs +511 -311
- package/templates/optional/catalog.json +41 -33
- package/templates/optional/skills/browser-e2e/.claude/skills/wf-browser/SKILL.md +194 -194
- package/templates/optional/skills/browser-e2e/Harness/workflows/browser-e2e.md +105 -69
- package/templates/optional/skills/github-pr-review/Harness/workflows/github-pr-review.md +28 -28
- package/templates/optional/skills/python-backend/Harness/workflows/python-backend.md +34 -34
- package/templates/optional/skills/ts-react-frontend/Harness/workflows/ts-react-frontend.md +34 -34
- package/templates/optional/skills/ui-ux-review/Harness/workflows/ui-ux-review.md +26 -26
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generator": "0.8.
|
|
3
|
-
"generated": "2026-07-
|
|
2
|
+
"generator": "0.8.8",
|
|
3
|
+
"generated": "2026-07-13T08:42:27.319Z",
|
|
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-7d87c7687f6fad27dc9941c05c5d513d3cc286f675055fc9aee2b144d1757cfd",
|
|
9
9
|
".agents/skills/tdd/SKILL.md": "sha256-1e2ec0b54a5cf5b071800b0f2e5672a128a42471e16f70f00bb4c0a07a3617cb",
|
|
10
|
-
".agents/skills/wf-auto-spark/SKILL.md": "sha256-
|
|
11
|
-
".agents/skills/wf-auto/SKILL.md": "sha256-
|
|
10
|
+
".agents/skills/wf-auto-spark/SKILL.md": "sha256-a00cde5842e5f1d6d69826c59972ebdcfbc2c291b43fc37523e42ec02e4788e4",
|
|
11
|
+
".agents/skills/wf-auto/SKILL.md": "sha256-6a8b4f01e7605e690a8f1c5b23b8efdd9efbb78ec0e05e6abb4a530142b2d288",
|
|
12
12
|
".agents/skills/wf-learn/SKILL.md": "sha256-7f3e1ee0aa83cbb76707698d0c26b703ad5c74b2df95a7dc4d751939a4ba05b2",
|
|
13
|
-
".agents/skills/wf-max/SKILL.md": "sha256-
|
|
13
|
+
".agents/skills/wf-max/SKILL.md": "sha256-17843beecd69cd6a82d55115b9d99f5c94d02199426f0bcacbd64aecbbf8a7ca",
|
|
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-d5b02d4aec2d593c0783b2a9a92878dcd1b38f28281611cf166114f4c063b56d",
|
|
18
|
+
".agents/skills/wf/SKILL.md": "sha256-07a065a82084f4c9ce03233f31f5e2d4fb197c161cbb87c4a688ad703cc880c5",
|
|
19
19
|
".claude/agents/architect-manager.md": "sha256-d98c3a2d044d5216d9bcde217b4359b1c33f5be152416e242807652ddcd2868b",
|
|
20
20
|
".claude/agents/architect.md": "sha256-61cea40c8c3e01bd53f3ad642ef734850fdb931497e7ee20552ea7a8b4e7b70c",
|
|
21
21
|
".claude/agents/context-master.md": "sha256-32746ef283ab1b98574f302c5ed0429743aa77a0558fa78a4183cadf16a82469",
|
|
@@ -26,61 +26,82 @@
|
|
|
26
26
|
".claude/agents/implementer.md": "sha256-86a32182798480b09bcc87e47605a1247f15d5ab91b58dfedb6496e3b0335618",
|
|
27
27
|
".claude/agents/memory-master.md": "sha256-443bd69895ce6ed8ab449876bbf91b2c536d7a21c6d72dcccbb227964355ac92",
|
|
28
28
|
".claude/agents/planner.md": "sha256-7d1911adbd3a4a6b82713fb0e2358bf01d3f7f3b8aeccd38bd51cb445b1fb7a9",
|
|
29
|
+
".claude/agents/reflector.md": "sha256-11a373c5866f6a9a0c1773aefb7adb18233197a083e15cd70bda4f927bbc756f",
|
|
29
30
|
".claude/agents/researcher.md": "sha256-402fef14dee8f495dc9ddfad5af3ad233d254326b49b831f604014a8cb6d0beb",
|
|
30
31
|
".claude/agents/review-manager.md": "sha256-fb8fbd6c6624279cc97aa3dbd50ec20c150ff4a2d195788bc8537d98699cc41b",
|
|
31
32
|
".claude/agents/reviewer.md": "sha256-2913b7799fcd8e162f01ae0de09a41ec7083de5f0cae3abcd4ecc62acc675a6b",
|
|
32
33
|
".claude/agents/tdd-guide.md": "sha256-d7c7ad3f61f6a6dc73cfa54ffe7e215ded0421a3058654a01731d1a5d5f4c336",
|
|
33
34
|
".claude/agents/test-writer.md": "sha256-724866d627f193caaf060ec6af97b1d54c2df2d5c5f937e78fc3c53c7f798b16",
|
|
34
|
-
".claude/agents/verifier.md": "sha256-
|
|
35
|
-
".claude/commands/wf-help.md": "sha256-
|
|
35
|
+
".claude/agents/verifier.md": "sha256-d501a505b97e679daa89ee1d910ee185edc42ba57d58203e962b1c5a844c0872",
|
|
36
|
+
".claude/commands/wf-help.md": "sha256-218ee306c439d0173e44b3d19c333d65028e7ffd50342b6b61ca07cf514b339e",
|
|
36
37
|
".claude/rules/ecc/common.md": "sha256-52818d2a2e10bdafc059844f1e9e7d5f7bc2c9113c5ed0b890142c2e179e8b72",
|
|
37
38
|
".claude/settings.json": "sha256-16a8631502d609ee9164e83537421d5f4c35de5cbc99b0be638f545daa785357",
|
|
38
|
-
".claude/skills/subagent-orchestrator/SKILL.md": "sha256-
|
|
39
|
+
".claude/skills/subagent-orchestrator/SKILL.md": "sha256-7d87c7687f6fad27dc9941c05c5d513d3cc286f675055fc9aee2b144d1757cfd",
|
|
39
40
|
".claude/skills/tdd/SKILL.md": "sha256-1e2ec0b54a5cf5b071800b0f2e5672a128a42471e16f70f00bb4c0a07a3617cb",
|
|
40
|
-
".claude/skills/wf-auto-spark/SKILL.md": "sha256-
|
|
41
|
-
".claude/skills/wf-auto/SKILL.md": "sha256-
|
|
41
|
+
".claude/skills/wf-auto-spark/SKILL.md": "sha256-a00cde5842e5f1d6d69826c59972ebdcfbc2c291b43fc37523e42ec02e4788e4",
|
|
42
|
+
".claude/skills/wf-auto/SKILL.md": "sha256-6a8b4f01e7605e690a8f1c5b23b8efdd9efbb78ec0e05e6abb4a530142b2d288",
|
|
42
43
|
".claude/skills/wf-learn/SKILL.md": "sha256-7f3e1ee0aa83cbb76707698d0c26b703ad5c74b2df95a7dc4d751939a4ba05b2",
|
|
43
|
-
".claude/skills/wf-max/SKILL.md": "sha256-
|
|
44
|
+
".claude/skills/wf-max/SKILL.md": "sha256-17843beecd69cd6a82d55115b9d99f5c94d02199426f0bcacbd64aecbbf8a7ca",
|
|
44
45
|
".claude/skills/wf-readme/SKILL.md": "sha256-4d34ee3b6b305fa2581f5d8cb31e9152759f3df8bf8fa08efbb43782f128bdcd",
|
|
45
46
|
".claude/skills/wf-remove/SKILL.md": "sha256-21ebef1a1fa8645d094c8ceeca78b33f036b6c42cda6db8be425d38d9e91af75",
|
|
46
47
|
".claude/skills/wf-review/SKILL.md": "sha256-cc6d536ec6de25546a0ba96e686f195da50ed11bc03763a76ef46d77243d3537",
|
|
47
|
-
".claude/skills/wf-update/SKILL.md": "sha256-
|
|
48
|
-
".claude/skills/wf/SKILL.md": "sha256-
|
|
49
|
-
".codex/config.toml": "sha256-
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
48
|
+
".claude/skills/wf-update/SKILL.md": "sha256-d5b02d4aec2d593c0783b2a9a92878dcd1b38f28281611cf166114f4c063b56d",
|
|
49
|
+
".claude/skills/wf/SKILL.md": "sha256-07a065a82084f4c9ce03233f31f5e2d4fb197c161cbb87c4a688ad703cc880c5",
|
|
50
|
+
".codex/config.toml": "sha256-e0af046982c6dbc535c52b19610d16ce9aba08a17dd29f11b74cc8dad8371145",
|
|
51
|
+
".opencode/agents/architect-manager.md": "sha256-7ea3ce5254638e15c9a9c342eafcaa1c98d5fbf0323ea2111cd6397580581eb1",
|
|
52
|
+
".opencode/agents/architect.md": "sha256-bd876678ef08ef848523ec639095e099b9d8e587794827fba4763dc82ed3f6c4",
|
|
53
|
+
".opencode/agents/context-master.md": "sha256-855f6763f2fc3853966c49a99bdeb2d5b371aff69ebb339c98ddf60b13feb930",
|
|
54
|
+
".opencode/agents/debugger.md": "sha256-2bdf5f3ffe1d86d19cde4e0c805e3ceeec7b419fcb9b27211e4a99ddbd119183",
|
|
55
|
+
".opencode/agents/docs-researcher.md": "sha256-d474a3ad023c8dadb90e898f0827ea9f77340960aba77282c84b74aa1bf9734c",
|
|
56
|
+
".opencode/agents/explore-manager.md": "sha256-448faf8f32d69a8171713003157fed4fd00edeca1e101cea1f69393f7a339ecc",
|
|
57
|
+
".opencode/agents/implement-manager.md": "sha256-cf11ceac721e5a99a5ed4ae26170135deb326b1c14c3f22fa09bfea21a843d4f",
|
|
58
|
+
".opencode/agents/implementer.md": "sha256-e0374b1e9e2eba16f4bb44dc37d1f0a2074e26aa45fb353e3c6d40bd8dd6fe70",
|
|
59
|
+
".opencode/agents/memory-master.md": "sha256-e3d592288de4ebe662789ecf84f226a887a211ec90c8519de6cd571ae10838b2",
|
|
60
|
+
".opencode/agents/planner.md": "sha256-5ba794c30fb8db377067eab9eb73e518adf755928460a6093d23a02e04760990",
|
|
61
|
+
".opencode/agents/reflector.md": "sha256-2498e1d4962adb2a63d26aa3667976ce75625b6c385edb3507ae1814da213e0f",
|
|
62
|
+
".opencode/agents/researcher.md": "sha256-30172ea8b72c9493d914f460ab0fd07a8b84b85b56c9eb10263816856c3ce373",
|
|
63
|
+
".opencode/agents/review-manager.md": "sha256-b3a7e4a001b2fe104cac28c8492c203967773510fb66cd644c34440a14abace4",
|
|
64
|
+
".opencode/agents/reviewer.md": "sha256-81f0b2623b39a5cd48f9604585cf8257ab096639aa0864f9134a49b0db3cba45",
|
|
65
|
+
".opencode/agents/tdd-guide.md": "sha256-e19992348d9772ea637aa8a2d44e388afc6d99620737fa6a6c07f8d917d0ea3d",
|
|
66
|
+
".opencode/agents/test-writer.md": "sha256-4821b558a1e3d6a50660209fa7e24527f848fac154dd89b43341e0b74a54baad",
|
|
67
|
+
".opencode/agents/verifier.md": "sha256-7a415b3e8ae440838cfd113ef3cbd1c66ab6496e45c9ef90af0d878e3ebc1ee4",
|
|
68
|
+
".opencode/commands/wf-help.md": "sha256-64d1dcd4d828219a6659614524370d32a788f0df5870cba3cca61430a790d895",
|
|
69
|
+
"AGENTS.md": "sha256-cd932767a214d28fea252e75595a01e5dc73f27f94f6aec8d0dfbb48391f4ec4",
|
|
70
|
+
"CLAUDE.md": "sha256-32838707a24877c8d6196cf0faeb0e87ed7c989baf1b999ba6e04cea763379ba",
|
|
71
|
+
"Harness/ACCEPTANCE_PROTOCOL.md": "sha256-db6c1813e60f2a2dd0a4c6f347aeee66e5afea27f53f76f9105f9ab98662fbbc",
|
|
53
72
|
"Harness/AGENT_ISOLATION.md": "sha256-54abcd4fdaf8810ab42da8a7f2ab5b5f5305f105f93e8764081b10edce053506",
|
|
54
73
|
"Harness/DEBUG_PROTOCOL.md": "sha256-ed80de0e3e1a40dbb9fd0bdead9174f1650e1833027f3d7fb4bb5884142e03f7",
|
|
55
74
|
"Harness/ECC-GUIDE.md": "sha256-136e60327813609516c6c10e2a5254d7d300e1631ba80d33fb375fdf3800ca7e",
|
|
56
75
|
"Harness/HARNESS_BRIDGE.md": "sha256-681dbeca9a590bbeb3a0c01b044e40e642e6d640632d8611064eb897ada8a48d",
|
|
57
|
-
"Harness/MEMORY.md": "sha256-
|
|
76
|
+
"Harness/MEMORY.md": "sha256-57e272c3fc8be4181cd6fd72f739aac1e804a4110cd409c5d7f6b34c2e569337",
|
|
58
77
|
"Harness/MEMORY_PROTOCOL.md": "sha256-c24c232442a50f1dc7183480fc3b51c6171e32d3ba6648c056797ccd69fea717",
|
|
59
|
-
"Harness/README.md": "sha256-
|
|
60
|
-
"Harness/SETUP.md": "sha256-
|
|
78
|
+
"Harness/README.md": "sha256-00d72841103919e84b385ff639438f6cdaf5dceec119f94f91ed47291ef77616",
|
|
79
|
+
"Harness/SETUP.md": "sha256-7931ef782120e9b7ebadc531800b70f4a735ea5c8375e60bdd4b8895c2140260",
|
|
61
80
|
"Harness/TDD-GUIDE.md": "sha256-602084530fd0dea7499a023ce75738351e5d97a0c222b64d405f36da6b59a162",
|
|
62
|
-
"Harness/WF-AUTO-
|
|
63
|
-
"Harness/WF-AUTO.md": "sha256-
|
|
64
|
-
"Harness/WF-
|
|
65
|
-
"Harness/WF.md": "sha256-
|
|
66
|
-
"Harness/
|
|
81
|
+
"Harness/WF-AUTO-ANGLES.md": "sha256-ff9c684860cef7a6d0c16aa4b825663a1cd18b10befe8a7320621c28bbfe4ae6",
|
|
82
|
+
"Harness/WF-AUTO-SPARK.md": "sha256-f74a82c19a0674d30bf2615e008735fe241ef632abdca00e3e5161597373195c",
|
|
83
|
+
"Harness/WF-AUTO.md": "sha256-e5e69c9af2c3742afe7f3dec2bf341a016151926aef1b40abbbe20298a2f9847",
|
|
84
|
+
"Harness/WF-MAX.md": "sha256-e7aaf9e9fffd33d57c3d0da5bb19c8872d20b5c916212b33bcd51e6430a82c8a",
|
|
85
|
+
"Harness/WF.md": "sha256-2bb26312a19590834ae9f5b9fd2859cc0aef75a60d8be9bf349fdd6e32981064",
|
|
86
|
+
"Harness/agent-workflow.md": "sha256-e5c87f7f462f21618a4e58a313dacf4aa327f9a6a3b3018793ca063bfe1010c9",
|
|
67
87
|
"Harness/context-loading.md": "sha256-eff7f332045e02636ab1466eb9a663b7bb183eb23f90f02d18e020d6e0ed58d5",
|
|
68
|
-
"Harness/dispatch.md": "sha256-
|
|
88
|
+
"Harness/dispatch.md": "sha256-00a5abfb2b54368e8b7f8e2515ac16ca7a1cf7aa012a9e939c85437a3e990632",
|
|
69
89
|
"Harness/extension.md": "sha256-ff93616aaa5ad232b6a32ac6c98bb1a3a08ee5da2ddad92eb9090f5b8e9e3e47",
|
|
70
90
|
"Harness/lifecycle.md": "sha256-a2d025e52f3b4412d8439083aca0d2cf7a4458ad0e30de4fc6465f990379190f",
|
|
71
91
|
"Harness/research/README.md": "sha256-956c154df01cb9376972eb8b88bb3be0fe4e2dda802a72457c0126e3476fa755",
|
|
72
|
-
"Harness/scripts/scan-clean.mjs": "sha256-
|
|
73
|
-
"Harness/scripts/validate-harness.mjs": "sha256-
|
|
74
|
-
"Harness/scripts/wf-remove.mjs": "sha256-
|
|
75
|
-
"Harness/scripts/wf-update-check.mjs": "sha256-
|
|
76
|
-
"Harness/subagents.md": "sha256-
|
|
92
|
+
"Harness/scripts/scan-clean.mjs": "sha256-4c3440590da71ba9eba1758e03242daba9dad6949970b98dd55060a5235676dc",
|
|
93
|
+
"Harness/scripts/validate-harness.mjs": "sha256-abcb3ba857686d447265f42cd3d40574f0dfd0db5c9b190e1d9343431dbb575c",
|
|
94
|
+
"Harness/scripts/wf-remove.mjs": "sha256-df7f3fa80150dca8e598bfc423e260aa9df9584d716f3b299fdc0fd79c2e1911",
|
|
95
|
+
"Harness/scripts/wf-update-check.mjs": "sha256-9524abf80e0f20bc426fac96c19f0550aa7843d4cf52b006cb2e5efe4a6d2993",
|
|
96
|
+
"Harness/subagents.md": "sha256-178156916556061ad655dbfcc1fa5f4268fd44b91f10e606a7bbcb589f5c154f",
|
|
77
97
|
"Harness/templates/ACCEPTANCE.template.md": "sha256-394a6c08b155b1d121f1d51da774f7988bdb891224c6d5f2ca2c131e8c95ffb3",
|
|
78
98
|
"Harness/templates/API_CONTRACT.template.md": "sha256-e11ec9866576624982f35e77359e3f4ef3aea3e3f6b5895f6cc5419d29699fc5",
|
|
79
99
|
"Harness/templates/PLAYWRIGHT_SPEC.template.ts": "sha256-bef5f3bbae833b31eeb8cab04fc5a5ff355e9eda4ba6909db70f83b403607115",
|
|
80
100
|
"Harness/templates/PRD.template.md": "sha256-033c746daec3eacbf69b0ca91a6f09997a9852d30467681260f3dbdde391d841",
|
|
81
101
|
"Harness/templates/TEST_PLAN.template.md": "sha256-f7e9a701b0922a405bcde7c168791fe6406530ce7e644a3a736cc3fa1e74c928",
|
|
82
102
|
"Harness/templates/UI_CONTRACT.template.md": "sha256-87c9bc47452c53caca9333130aef567cf9b16ffc5e82a8f6592bbd4f715875ef",
|
|
83
|
-
"Harness/templates/VALIDATION_REPORT.template.md": "sha256-feb1f7b9bba18f1ce028954b48775730f7dd8b7c2afd0ef44cda54bfe13c1875"
|
|
103
|
+
"Harness/templates/VALIDATION_REPORT.template.md": "sha256-feb1f7b9bba18f1ce028954b48775730f7dd8b7c2afd0ef44cda54bfe13c1875",
|
|
104
|
+
"opencode.json": "sha256-a523dd084e67891ff6ca31916b20968e74234504b4e703945d3a4d8a835c6fbd"
|
|
84
105
|
},
|
|
85
106
|
"sources": {
|
|
86
107
|
".agents/skills/subagent-orchestrator/SKILL.md": ".claude/skills/subagent-orchestrator/SKILL.md",
|
|
@@ -104,6 +125,7 @@
|
|
|
104
125
|
".claude/agents/implementer.md": ".claude/agents/implementer.md",
|
|
105
126
|
".claude/agents/memory-master.md": ".claude/agents/memory-master.md",
|
|
106
127
|
".claude/agents/planner.md": ".claude/agents/planner.md",
|
|
128
|
+
".claude/agents/reflector.md": ".claude/agents/reflector.md",
|
|
107
129
|
".claude/agents/researcher.md": ".claude/agents/researcher.md",
|
|
108
130
|
".claude/agents/review-manager.md": ".claude/agents/review-manager.md",
|
|
109
131
|
".claude/agents/reviewer.md": ".claude/agents/reviewer.md",
|
|
@@ -126,6 +148,24 @@
|
|
|
126
148
|
".claude/skills/wf/SKILL.md": ".claude/skills/wf/SKILL.md",
|
|
127
149
|
".codex/config.toml": ".codex/config.toml",
|
|
128
150
|
".gitignore": ".gitignore",
|
|
151
|
+
".opencode/agents/architect-manager.md": ".opencode/agents/architect-manager.md",
|
|
152
|
+
".opencode/agents/architect.md": ".opencode/agents/architect.md",
|
|
153
|
+
".opencode/agents/context-master.md": ".opencode/agents/context-master.md",
|
|
154
|
+
".opencode/agents/debugger.md": ".opencode/agents/debugger.md",
|
|
155
|
+
".opencode/agents/docs-researcher.md": ".opencode/agents/docs-researcher.md",
|
|
156
|
+
".opencode/agents/explore-manager.md": ".opencode/agents/explore-manager.md",
|
|
157
|
+
".opencode/agents/implement-manager.md": ".opencode/agents/implement-manager.md",
|
|
158
|
+
".opencode/agents/implementer.md": ".opencode/agents/implementer.md",
|
|
159
|
+
".opencode/agents/memory-master.md": ".opencode/agents/memory-master.md",
|
|
160
|
+
".opencode/agents/planner.md": ".opencode/agents/planner.md",
|
|
161
|
+
".opencode/agents/reflector.md": ".opencode/agents/reflector.md",
|
|
162
|
+
".opencode/agents/researcher.md": ".opencode/agents/researcher.md",
|
|
163
|
+
".opencode/agents/review-manager.md": ".opencode/agents/review-manager.md",
|
|
164
|
+
".opencode/agents/reviewer.md": ".opencode/agents/reviewer.md",
|
|
165
|
+
".opencode/agents/tdd-guide.md": ".opencode/agents/tdd-guide.md",
|
|
166
|
+
".opencode/agents/test-writer.md": ".opencode/agents/test-writer.md",
|
|
167
|
+
".opencode/agents/verifier.md": ".opencode/agents/verifier.md",
|
|
168
|
+
".opencode/commands/wf-help.md": ".opencode/commands/wf-help.md",
|
|
129
169
|
"AGENTS.md": "AGENTS.md",
|
|
130
170
|
"CLAUDE.md": "CLAUDE.md",
|
|
131
171
|
"Harness/.harness-version": ".harness-version",
|
|
@@ -140,6 +180,7 @@
|
|
|
140
180
|
"Harness/README.md": "Harness/README.md",
|
|
141
181
|
"Harness/SETUP.md": "SETUP.md",
|
|
142
182
|
"Harness/TDD-GUIDE.md": "Harness/TDD-GUIDE.md",
|
|
183
|
+
"Harness/WF-AUTO-ANGLES.md": "Harness/WF-AUTO-ANGLES.md",
|
|
143
184
|
"Harness/WF-AUTO-SPARK.md": "Harness/WF-AUTO-SPARK.md",
|
|
144
185
|
"Harness/WF-AUTO.md": "Harness/WF-AUTO.md",
|
|
145
186
|
"Harness/WF-MAX.md": "Harness/WF-MAX.md",
|
|
@@ -173,6 +214,7 @@
|
|
|
173
214
|
"Harness/templates/TEST_PLAN.template.md": "Harness/templates/TEST_PLAN.template.md",
|
|
174
215
|
"Harness/templates/UI_CONTRACT.template.md": "Harness/templates/UI_CONTRACT.template.md",
|
|
175
216
|
"Harness/templates/VALIDATION_REPORT.template.md": "Harness/templates/VALIDATION_REPORT.template.md",
|
|
176
|
-
"README.md": "README.md"
|
|
217
|
+
"README.md": "README.md",
|
|
218
|
+
"opencode.json": "opencode.json"
|
|
177
219
|
}
|
|
178
220
|
}
|
|
@@ -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,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
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: WF-MAX Manager for W0 exploration wave. Spawns 5-10 read-only researchers/explorers, synthesizes findings, 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
|
+
"tree *": allow
|
|
12
|
+
websearch: deny
|
|
13
|
+
webfetch: deny
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# Explore Manager — W0 Exploration Wave
|
|
17
|
+
|
|
18
|
+
You are an Explore Manager in the WF-MAX hierarchy. You report to the CEO.
|
|
19
|
+
|
|
20
|
+
## Role
|
|
21
|
+
|
|
22
|
+
Domain partition → parallel dispatch of read-only researchers → synthesize → report to CEO.
|
|
23
|
+
|
|
24
|
+
## What You Do
|
|
25
|
+
|
|
26
|
+
1. Receive a domain and exploration questions from the CEO
|
|
27
|
+
2. Partition into 5-10 read-only sub-agents (researcher, docs-researcher, explore agents)
|
|
28
|
+
3. Spawn ALL sub-agents in ONE message
|
|
29
|
+
4. Collect returns, deduplicate, flag conflicts
|
|
30
|
+
5. Synthesize into a single report for the CEO
|
|
31
|
+
|
|
32
|
+
## What You NEVER Do
|
|
33
|
+
|
|
34
|
+
- Write or edit source code
|
|
35
|
+
- Write to task files (PLAN.md, PROGRESS.md — that's CEO territory)
|
|
36
|
+
- Make architecture decisions (report findings, let CEO decide)
|
|
37
|
+
- Serial spawn — batch ALL agents in one message
|
|
38
|
+
|
|
39
|
+
## Synthesis Format
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Domain:
|
|
43
|
+
Agents spawned:
|
|
44
|
+
Key findings:
|
|
45
|
+
Contradictions/conflicts:
|
|
46
|
+
Open questions:
|
|
47
|
+
Recommended next:
|
|
48
|
+
Raw agent returns (appended):
|
|
49
|
+
```
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: WF-MAX Manager for W2 implementation wave. Spawns 5-7 implementers (one file_claim each), merges results, reports to CEO. Agent spawn + synthesis only; does NOT write code directly.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
edit: deny
|
|
6
|
+
bash:
|
|
7
|
+
"*": deny
|
|
8
|
+
"git *": allow
|
|
9
|
+
"node *": allow
|
|
10
|
+
"npm *": allow
|
|
11
|
+
websearch: deny
|
|
12
|
+
webfetch: deny
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# Implement Manager — W2 Implementation Wave
|
|
16
|
+
|
|
17
|
+
You are an Implement Manager in the WF-MAX hierarchy. You report to the CEO.
|
|
18
|
+
|
|
19
|
+
## Role
|
|
20
|
+
|
|
21
|
+
Write-set coloring → parallel dispatch of 5-7 implementers (one file_claim each) → merge → report to CEO.
|
|
22
|
+
|
|
23
|
+
## What You Do
|
|
24
|
+
|
|
25
|
+
1. Receive write-set and Dispatch Table from CEO (pre-approved via D-GATE)
|
|
26
|
+
2. Assign each file to exactly one implementer Worker (one file_claim per Worker)
|
|
27
|
+
3. Spawn ALL implementers in ONE message — never sequential
|
|
28
|
+
4. Collect returns, verify file claims don't overlap
|
|
29
|
+
5. Merge results, flag merge conflicts
|
|
30
|
+
6. Report to CEO: what was implemented, any issues
|
|
31
|
+
|
|
32
|
+
## What You NEVER Do
|
|
33
|
+
|
|
34
|
+
- Write code yourself — you are a Manager, not an implementer
|
|
35
|
+
- Assign >1 write file to an implementer (Gate Rule #1)
|
|
36
|
+
- Spawn Workers one at a time (AP6)
|
|
37
|
+
- Make scope decisions (escalate to CEO)
|
|
38
|
+
- Write to task files
|
|
39
|
+
|
|
40
|
+
## Dispatch Rules
|
|
41
|
+
|
|
42
|
+
- Each implementer gets: exact file path, spec/interface contract, forbidden scope
|
|
43
|
+
- Verify file claims are disjoint BEFORE spawning
|
|
44
|
+
- Worker failure: retry 1× → on 2nd failure, escalate to CEO
|
|
45
|
+
- Maximum 7 Workers per wave (split domain if more needed)
|
|
46
|
+
|
|
47
|
+
## Synthesis Format
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Files changed:
|
|
51
|
+
Implementers used:
|
|
52
|
+
Merge conflicts (if any):
|
|
53
|
+
Worker failures/retries:
|
|
54
|
+
Verification needed:
|
|
55
|
+
Report to CEO:
|
|
56
|
+
```
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Use to implement the smallest change inside a declared write set after tests or manual checks are defined.
|
|
3
|
+
mode: subagent
|
|
4
|
+
permission:
|
|
5
|
+
task: deny
|
|
6
|
+
websearch: deny
|
|
7
|
+
webfetch: deny
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Implementer
|
|
11
|
+
|
|
12
|
+
You are an implementation agent for this project harness.
|
|
13
|
+
|
|
14
|
+
Load first:
|
|
15
|
+
|
|
16
|
+
- current task from `Harness/tasks/<task-id>/PROGRESS.md` and `Harness/tasks/<task-id>/PLAN.md` when available
|
|
17
|
+
- current feature doc when present
|
|
18
|
+
- failing test or manual check
|
|
19
|
+
- relevant architecture/ports docs if boundaries are touched
|
|
20
|
+
|
|
21
|
+
Inputs you must receive:
|
|
22
|
+
|
|
23
|
+
- task
|
|
24
|
+
- allowed write set
|
|
25
|
+
- forbidden scope
|
|
26
|
+
- verification command
|
|
27
|
+
|
|
28
|
+
Rules:
|
|
29
|
+
|
|
30
|
+
- Write only inside the declared write set.
|
|
31
|
+
- Do not broaden scope or refactor adjacent code.
|
|
32
|
+
- Do not loosen tests.
|
|
33
|
+
- Keep changes minimal and reversible.
|
|
34
|
+
- Stop if the required change crosses an undeclared architecture or port boundary.
|
|
35
|
+
|
|
36
|
+
Return:
|
|
37
|
+
|
|
38
|
+
- changed files
|
|
39
|
+
- implementation notes
|
|
40
|
+
- verification command run or not run
|
|
41
|
+
- docs that must be synced
|
|
42
|
+
- remaining risks
|