@tea-agent/loop-agent 0.1.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 (264) hide show
  1. package/AGENTS.md +121 -0
  2. package/CHANGELOG.md +37 -0
  3. package/README.md +144 -0
  4. package/bin/loop-agent.js +21 -0
  5. package/dist/adapters/aimax.js +91 -0
  6. package/dist/adapters/context.js +32 -0
  7. package/dist/adapters/index.js +28 -0
  8. package/dist/adapters/loop-agent.js +98 -0
  9. package/dist/adapters/types.js +1 -0
  10. package/dist/cli/catalog.js +259 -0
  11. package/dist/cli/help.js +55 -0
  12. package/dist/cli/index.js +3 -0
  13. package/dist/cli/program.js +505 -0
  14. package/dist/cli.js +12 -0
  15. package/dist/commands/closeout.js +13 -0
  16. package/dist/commands/coverage-audit.js +14 -0
  17. package/dist/commands/cursor-prompt.js +222 -0
  18. package/dist/commands/cursor-worker.js +43 -0
  19. package/dist/commands/dag-approve.js +102 -0
  20. package/dist/commands/dag-final-verification.js +76 -0
  21. package/dist/commands/dag-init-hybrid.js +56 -0
  22. package/dist/commands/dag-reconcile-tasks.js +51 -0
  23. package/dist/commands/dag-reject.js +91 -0
  24. package/dist/commands/dag-report.js +177 -0
  25. package/dist/commands/dag-resume.js +34 -0
  26. package/dist/commands/dag-run-task.js +470 -0
  27. package/dist/commands/dag-validate.js +186 -0
  28. package/dist/commands/dag-workflow-compile.js +91 -0
  29. package/dist/commands/dag-workflow-plan.js +130 -0
  30. package/dist/commands/dag-workflow-validate.js +66 -0
  31. package/dist/commands/delegate.js +132 -0
  32. package/dist/commands/docs-archive.js +5 -0
  33. package/dist/commands/docs-audit.js +5 -0
  34. package/dist/commands/doctor.js +50 -0
  35. package/dist/commands/goal.js +92 -0
  36. package/dist/commands/handoff-check.js +5 -0
  37. package/dist/commands/harvest.js +44 -0
  38. package/dist/commands/inspect.js +11 -0
  39. package/dist/commands/instructions.js +195 -0
  40. package/dist/commands/knowledge.js +64 -0
  41. package/dist/commands/loop-benchmark.js +72 -0
  42. package/dist/commands/loop.js +241 -0
  43. package/dist/commands/new-task.js +5 -0
  44. package/dist/commands/pi-prompt.js +181 -0
  45. package/dist/commands/pi-reuse-benchmark.js +153 -0
  46. package/dist/commands/plan-list.js +5 -0
  47. package/dist/commands/promote-run.js +29 -0
  48. package/dist/commands/reference-index.js +16 -0
  49. package/dist/commands/run-dag.js +184 -0
  50. package/dist/commands/spine.js +38 -0
  51. package/dist/commands/stats.js +84 -0
  52. package/dist/commands/status.js +56 -0
  53. package/dist/commands/study-init.js +192 -0
  54. package/dist/commands/workflow.js +259 -0
  55. package/dist/commands/worktree-create.js +31 -0
  56. package/dist/commands/worktree-list.js +5 -0
  57. package/dist/commands/worktree-remove.js +26 -0
  58. package/dist/cursor-worker-entry.js +8 -0
  59. package/dist/executors/config-core.js +55 -0
  60. package/dist/executors/config.js +2 -0
  61. package/dist/executors/cursor-artifacts.js +33 -0
  62. package/dist/executors/cursor-execution-log.js +81 -0
  63. package/dist/executors/cursor-executor-artifacts.js +135 -0
  64. package/dist/executors/cursor-executor.js +468 -0
  65. package/dist/executors/cursor-run.js +115 -0
  66. package/dist/executors/cursor-tool.js +94 -0
  67. package/dist/executors/cursor-worker-client.js +213 -0
  68. package/dist/executors/cursor-worker-protocol.js +18 -0
  69. package/dist/executors/cursor-worker-server.js +54 -0
  70. package/dist/executors/cursor-worker.js +3 -0
  71. package/dist/executors/cursor.js +6 -0
  72. package/dist/executors/dag-cursor-executor.js +88 -0
  73. package/dist/executors/dag-pi-executor.js +322 -0
  74. package/dist/executors/dag-static-executor.js +45 -0
  75. package/dist/executors/dag.js +4 -0
  76. package/dist/executors/index.js +8 -0
  77. package/dist/executors/model-routing.js +60 -0
  78. package/dist/executors/pi-event-serializer.js +43 -0
  79. package/dist/executors/pi-executor.js +606 -0
  80. package/dist/executors/pi-reuse-benchmark.js +316 -0
  81. package/dist/executors/pi-runtime-reuse.js +29 -0
  82. package/dist/executors/pi-sdk-executor.js +255 -0
  83. package/dist/executors/pi-sdk.js +1 -0
  84. package/dist/executors/pi.js +3 -0
  85. package/dist/executors/shell-executor.js +300 -0
  86. package/dist/executors/shell-presets.js +47 -0
  87. package/dist/executors/shell-verification.js +251 -0
  88. package/dist/executors/shell-write-guard.js +126 -0
  89. package/dist/executors/shell.js +3 -0
  90. package/dist/executors/static.js +1 -0
  91. package/dist/governance/checks.js +434 -0
  92. package/dist/governance/harness.js +9 -0
  93. package/dist/governance/index.js +3 -0
  94. package/dist/governance/manifest-types.js +128 -0
  95. package/dist/governance/manifest.js +2 -0
  96. package/dist/governance/path-guard.js +69 -0
  97. package/dist/governance/path-guards.js +2 -0
  98. package/dist/governance/profiles.js +3 -0
  99. package/dist/governance/requirement-coverage.js +425 -0
  100. package/dist/governance/skill-safety.js +135 -0
  101. package/dist/governance/spine-audit.js +152 -0
  102. package/dist/records/closeout.js +2 -0
  103. package/dist/records/harvest.js +236 -0
  104. package/dist/records/index.js +3 -0
  105. package/dist/records/one-shot-runs.js +421 -0
  106. package/dist/records/promotion.js +199 -0
  107. package/dist/shared/artifacts-core.js +88 -0
  108. package/dist/shared/artifacts.js +2 -0
  109. package/dist/shared/context-files.js +32 -0
  110. package/dist/shared/context.js +2 -0
  111. package/dist/shared/copy-dir.js +17 -0
  112. package/dist/shared/git-progress.js +165 -0
  113. package/dist/shared/index.js +5 -0
  114. package/dist/shared/logger.js +23 -0
  115. package/dist/shared/one-shot-prompt-args.js +98 -0
  116. package/dist/shared/path-refs.js +31 -0
  117. package/dist/shared/prompts.js +26 -0
  118. package/dist/shared/reference-context.js +238 -0
  119. package/dist/shared/timeout-policy.js +19 -0
  120. package/dist/shared/timeout.js +1 -0
  121. package/dist/shared/types.js +5 -0
  122. package/dist/task/config-types.js +97 -0
  123. package/dist/task/config.js +2 -0
  124. package/dist/task/delegate.js +220 -0
  125. package/dist/task/goal-audit.js +51 -0
  126. package/dist/task/goal-policy.js +8 -0
  127. package/dist/task/goal.js +3 -0
  128. package/dist/task/ids.js +1 -0
  129. package/dist/task/index.js +9 -0
  130. package/dist/task/lifecycle.js +1 -0
  131. package/dist/task/paths.js +1 -0
  132. package/dist/task/read-model.js +149 -0
  133. package/dist/task/runtime.js +699 -0
  134. package/dist/task/source-state.js +1 -0
  135. package/dist/task/state.js +55 -0
  136. package/dist/task/subagent-guidance.js +1 -0
  137. package/dist/task/workflow-state-types.js +92 -0
  138. package/dist/task/worktree-cleanup.js +140 -0
  139. package/dist/task/worktree.js +171 -0
  140. package/dist/workflows/dag/authoring.js +8 -0
  141. package/dist/workflows/dag/authority-surface.js +138 -0
  142. package/dist/workflows/dag/canvas-observer.js +474 -0
  143. package/dist/workflows/dag/decision-envelope.js +502 -0
  144. package/dist/workflows/dag/decision-evidence.js +153 -0
  145. package/dist/workflows/dag/decision-gates.js +1 -0
  146. package/dist/workflows/dag/executor-registry.js +25 -0
  147. package/dist/workflows/dag/facts.js +4 -0
  148. package/dist/workflows/dag/failure-category.js +111 -0
  149. package/dist/workflows/dag/final-verification.js +180 -0
  150. package/dist/workflows/dag/governance-constants.js +5 -0
  151. package/dist/workflows/dag/governance-profile.js +405 -0
  152. package/dist/workflows/dag/index.js +6 -0
  153. package/dist/workflows/dag/init-hybrid.js +855 -0
  154. package/dist/workflows/dag/knowledge-curator.js +162 -0
  155. package/dist/workflows/dag/lifecycle.js +484 -0
  156. package/dist/workflows/dag/prompt-source.js +88 -0
  157. package/dist/workflows/dag/prompt.js +130 -0
  158. package/dist/workflows/dag/reconcile-tasks.js +404 -0
  159. package/dist/workflows/dag/recovery-recommendation.js +226 -0
  160. package/dist/workflows/dag/repair-artifact.js +136 -0
  161. package/dist/workflows/dag/report.js +1019 -0
  162. package/dist/workflows/dag/runner.js +1677 -0
  163. package/dist/workflows/dag/runtime.js +5 -0
  164. package/dist/workflows/dag/skill-instructions.js +471 -0
  165. package/dist/workflows/dag/skills.js +41 -0
  166. package/dist/workflows/dag/spec.js +3 -0
  167. package/dist/workflows/dag/topo.js +30 -0
  168. package/dist/workflows/dag/types.js +275 -0
  169. package/dist/workflows/dag/upstream-artifacts.js +95 -0
  170. package/dist/workflows/dag/validate.js +527 -0
  171. package/dist/workflows/dynamic/artifacts.js +65 -0
  172. package/dist/workflows/dynamic/compile.js +360 -0
  173. package/dist/workflows/dynamic/compileTypes.js +1 -0
  174. package/dist/workflows/dynamic/errors.js +5 -0
  175. package/dist/workflows/dynamic/index.js +7 -0
  176. package/dist/workflows/dynamic/profiles.js +156 -0
  177. package/dist/workflows/dynamic/spec.js +114 -0
  178. package/dist/workflows/dynamic/validate.js +275 -0
  179. package/dist/workflows/loop/actions.js +1334 -0
  180. package/dist/workflows/loop/benchmark.js +510 -0
  181. package/dist/workflows/loop/closeout.js +134 -0
  182. package/dist/workflows/loop/context.js +48 -0
  183. package/dist/workflows/loop/events.js +25 -0
  184. package/dist/workflows/loop/hash.js +32 -0
  185. package/dist/workflows/loop/index.js +8 -0
  186. package/dist/workflows/loop/paths.js +17 -0
  187. package/dist/workflows/loop/rounds.js +81 -0
  188. package/dist/workflows/loop/signals.js +55 -0
  189. package/dist/workflows/loop/state.js +116 -0
  190. package/dist/workflows/loop/templates.js +54 -0
  191. package/dist/workflows/loop/types.js +28 -0
  192. package/docs/README.md +62 -0
  193. package/docs/agent-dag-recovery-playbook.md +158 -0
  194. package/docs/agent-dag-runner.md +40 -0
  195. package/docs/cursor-executor-usage.md +25 -0
  196. package/docs/decisions/README.md +3 -0
  197. package/docs/design/README.md +36 -0
  198. package/docs/development-principles.md +71 -0
  199. package/docs/dynamic-workflow-dag-engine-roadmap.md +1749 -0
  200. package/docs/exec-plans/README.md +6 -0
  201. package/docs/exec-plans/active/README.md +5 -0
  202. package/docs/exec-plans/completed/README.md +5 -0
  203. package/docs/feature-workflow.md +184 -0
  204. package/docs/harness-methodology-debugging.md +153 -0
  205. package/docs/harness-methodology-tdd.md +130 -0
  206. package/docs/harness-methodology-verification.md +27 -0
  207. package/docs/loop-agent-harness.md +42 -0
  208. package/docs/progress/README.md +3 -0
  209. package/docs/reports/README.md +3 -0
  210. package/docs/templates/adr.md +60 -0
  211. package/docs/templates/agent-dag-authority-surface-audit.prompt.md +94 -0
  212. package/docs/templates/agent-dag-decision-envelope.schema.json +213 -0
  213. package/docs/templates/agent-dag-decision-gate-dogfood-report.md +117 -0
  214. package/docs/templates/agent-dag-decision-gate.prompt.md +246 -0
  215. package/docs/templates/agent-dag-process-supervisor.prompt.md +98 -0
  216. package/docs/templates/agent-dag-report.schema.json +423 -0
  217. package/docs/templates/agent-dag-review-verdict.prompt.md +68 -0
  218. package/docs/templates/agent-dag.base.json +195 -0
  219. package/docs/templates/agent-dag.final-verification.json +190 -0
  220. package/docs/templates/agent-dag.schema.json +316 -0
  221. package/docs/templates/agent-dag.supervised-implementation.json +500 -0
  222. package/docs/templates/exec-plan.md +64 -0
  223. package/docs/templates/feature-spec.md +53 -0
  224. package/docs/templates/hybrid-dag.json +193 -0
  225. package/docs/templates/progress-log.md +17 -0
  226. package/docs/templates/project-start-checklist.md +9 -0
  227. package/docs/templates/qa-report.md +42 -0
  228. package/docs/templates/sprint-contract.md +29 -0
  229. package/docs/verification-matrix.md +30 -0
  230. package/examples/decision-gate-agent-dag.json +123 -0
  231. package/examples/example-dag.json +51 -0
  232. package/examples/hybrid-loop-agent-dag.json +194 -0
  233. package/harness.json +92 -0
  234. package/package.json +61 -0
  235. package/skills/ai-engineering-context/SKILL.md +48 -0
  236. package/skills/loop-agent/SKILL.md +260 -0
  237. package/skills/loop-agent/references/README.md +63 -0
  238. package/skills/loop-agent/references/command-reference.md +315 -0
  239. package/skills/loop-agent/references/harness-policy.md +258 -0
  240. package/skills/loop-agent/references/hybrid-dag.md +216 -0
  241. package/skills/loop-agent/references/learned/README.md +21 -0
  242. package/skills/loop-agent/references/model-routing.md +36 -0
  243. package/skills/loop-agent/references/multi-worktree.md +54 -0
  244. package/skills/loop-agent/references/one-shot-runs.md +85 -0
  245. package/skills/loop-agent/references/orchestrator-and-interventions.md +169 -0
  246. package/skills/loop-agent/references/pi-prompt.md +23 -0
  247. package/skills/loop-agent/references/pi-subagent-assisted-mode.md +83 -0
  248. package/skills/loop-agent/references/post-implementation-and-patterns.md +44 -0
  249. package/skills/loop-agent/references/task-workflow.md +84 -0
  250. package/skills/loop-agent/references/verification-and-failure-handling.md +74 -0
  251. package/skills/requesting-code-review/SKILL.md +101 -0
  252. package/skills/requesting-code-review/code-reviewer.md +168 -0
  253. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  254. package/skills/systematic-debugging/SKILL.md +296 -0
  255. package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  256. package/skills/systematic-debugging/condition-based-waiting.md +115 -0
  257. package/skills/systematic-debugging/defense-in-depth.md +122 -0
  258. package/skills/systematic-debugging/find-polluter.sh +63 -0
  259. package/skills/systematic-debugging/root-cause-tracing.md +169 -0
  260. package/skills/systematic-debugging/test-academic.md +14 -0
  261. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  262. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  263. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  264. package/skills/verification-before-completion/SKILL.md +154 -0
@@ -0,0 +1,195 @@
1
+ {
2
+ "$schema": "./agent-dag.schema.json",
3
+ "version": 2,
4
+ "title": "Agent DAG base template",
5
+ "objective": "Replace with the concrete objective for this DAG run.",
6
+ "successCriteria": [
7
+ "Each node returns output matching its outputContract.",
8
+ "Same-rank read-only scouts run in parallel when their outputs are independent.",
9
+ "Only Pi nodes with toolProfile=write or explicitly enabled Cursor implementer nodes may write files, and only inside declared writeSet.",
10
+ "Pi nodes remain read-only unless toolProfile=write is explicitly selected for a bounded writer node.",
11
+ "Read-only nodes must not write root artifacts/**; root artifacts/ is not a per-node scratchpad."
12
+ ],
13
+ "globalConstraints": [
14
+ "Replace every REPLACE/WITH/... placeholder with concrete repo paths before execution; do not leave template placeholders in production DAG JSON.",
15
+ "Do not commit runtime traces under .harness/dag-runs/.",
16
+ "Do not write generated DAG input specs into .harness/dag-runs/active/.",
17
+ "Use a platform-native temp path such as <temp-dir>/<topic>-dag.json for one-off DAG specs; commit reusable templates under examples/ or docs/templates/.",
18
+ "Actual file operation paths must be macOS/Windows compatible; use / only for stable repo refs, JSON/Markdown evidence refs, and glob conventions.",
19
+ "Every task must explicitly declare executor; defaults.executor is schema-only and not a runtime fallback.",
20
+ "Prefer same-rank parallel read-only scouts over serial chains when outputs are independent.",
21
+ "Add depends_on only when a child truly needs upstream output; challenge single-chain topologies during review.",
22
+ "Same-rank exclusive writeSet entries must be disjoint.",
23
+ "Do not add provider fields to DAG JSON; provider routing is executor-owned.",
24
+ "Use executorModels for model routing; do not add defaults.model or legacy top-level models.",
25
+ "Every task must declare outputContract describing the expected Markdown/output shape.",
26
+ "exclusive implementer nodes must use narrow, concrete writeSet and allowedPaths; never keep broad write permissions such as ** or repo root.",
27
+ "Cursor is optional; no-Cursor environments should use Pi read-only scouts and Pi writer nodes with toolProfile=write."
28
+ ],
29
+ "defaults": {
30
+ "executor": "pi",
31
+ "contextProfile": "slim",
32
+ "skills": [
33
+ "ai-engineering-context"
34
+ ],
35
+ "writePolicy": "read-only"
36
+ },
37
+ "skillsByRole": {
38
+ "planner": [
39
+ "loop-agent"
40
+ ],
41
+ "scout": [
42
+ "ai-engineering-context"
43
+ ],
44
+ "implementer": [
45
+ "verification-before-completion"
46
+ ],
47
+ "reviewer": [
48
+ "requesting-code-review"
49
+ ],
50
+ "verifier": [
51
+ "verification-before-completion",
52
+ "systematic-debugging"
53
+ ],
54
+ "closeout": [
55
+ "loop-agent",
56
+ "verification-before-completion"
57
+ ]
58
+ },
59
+ "executorModels": {
60
+ "cursor": {
61
+ "LOW": "composer-2.5",
62
+ "MED": "composer-2.5",
63
+ "HIGH": "composer-2.5"
64
+ },
65
+ "pi": {
66
+ "LOW": "gpt-5.3-codex-spark",
67
+ "MED": "glm-5.2",
68
+ "HIGH": "gpt-5.5"
69
+ }
70
+ },
71
+ "tasks": [
72
+ {
73
+ "id": "contract-pi",
74
+ "depends_on": [],
75
+ "complexity": "MED",
76
+ "executor": "pi",
77
+ "role": "planner",
78
+ "writePolicy": "read-only",
79
+ "allowedPaths": [
80
+ "**"
81
+ ],
82
+ "forbiddenPaths": [
83
+ ".harness/**",
84
+ "artifacts/**"
85
+ ],
86
+ "outputContract": "Plain Markdown implementation contract; no file writes.",
87
+ "subtask_prompt": "Read the task inputs and return a concise implementation contract: scope, risks, narrow write boundaries, parallel scout opportunities, and verification expectations. Do not edit files."
88
+ },
89
+ {
90
+ "id": "scout-src",
91
+ "depends_on": [
92
+ "contract-pi"
93
+ ],
94
+ "complexity": "LOW",
95
+ "executor": "pi",
96
+ "role": "scout",
97
+ "writePolicy": "read-only",
98
+ "allowedPaths": [
99
+ "REPLACE/WITH/SOURCE/PATH/**"
100
+ ],
101
+ "forbiddenPaths": [
102
+ ".harness/**",
103
+ "artifacts/**"
104
+ ],
105
+ "outputContract": "Plain Markdown source reconnaissance summary; no file writes.",
106
+ "subtask_prompt": "Perform read-only source reconnaissance. List relevant source files, existing patterns, and risks. Do not edit files."
107
+ },
108
+ {
109
+ "id": "scout-tests",
110
+ "depends_on": [
111
+ "contract-pi"
112
+ ],
113
+ "complexity": "LOW",
114
+ "executor": "pi",
115
+ "role": "scout",
116
+ "writePolicy": "read-only",
117
+ "allowedPaths": [
118
+ "REPLACE/WITH/TEST/PATH/**"
119
+ ],
120
+ "forbiddenPaths": [
121
+ ".harness/**",
122
+ "artifacts/**"
123
+ ],
124
+ "outputContract": "Plain Markdown test coverage reconnaissance summary; no file writes.",
125
+ "subtask_prompt": "Perform read-only test reconnaissance. List relevant tests, coverage gaps, and verification commands. Do not edit files."
126
+ },
127
+ {
128
+ "id": "implement-pi",
129
+ "depends_on": [
130
+ "scout-src",
131
+ "scout-tests"
132
+ ],
133
+ "complexity": "HIGH",
134
+ "executor": "pi",
135
+ "role": "implementer",
136
+ "writePolicy": "exclusive",
137
+ "writeSet": [
138
+ "REPLACE/WITH/ALLOWED/PATH/**"
139
+ ],
140
+ "allowedPaths": [
141
+ "REPLACE/WITH/ALLOWED/PATH/**"
142
+ ],
143
+ "forbiddenPaths": [
144
+ ".harness/**",
145
+ "artifacts/**"
146
+ ],
147
+ "outputContract": "Implementation summary with changed files, tests run, and risks.",
148
+ "subtask_prompt": "Implement the approved change within writeSet only. Keep the change minimal and update relevant tests/docs inside allowedPaths.",
149
+ "toolProfile": "write"
150
+ },
151
+ {
152
+ "id": "review-pi",
153
+ "depends_on": [
154
+ "implement-pi"
155
+ ],
156
+ "complexity": "MED",
157
+ "executor": "pi",
158
+ "role": "reviewer",
159
+ "writePolicy": "read-only",
160
+ "allowedPaths": [
161
+ "**"
162
+ ],
163
+ "forbiddenPaths": [
164
+ ".harness/**",
165
+ "artifacts/**"
166
+ ],
167
+ "outputContract": "Plain Markdown review summary; no file writes.",
168
+ "subtask_prompt": "Review upstream implementation output against the contract. Identify drift, missing tests, and residual risks. Do not edit files."
169
+ },
170
+ {
171
+ "id": "verify-shell",
172
+ "depends_on": [
173
+ "implement-pi"
174
+ ],
175
+ "complexity": "LOW",
176
+ "executor": "shell",
177
+ "role": "verifier",
178
+ "writePolicy": "read-only",
179
+ "allowedPaths": [
180
+ "./**"
181
+ ],
182
+ "forbiddenPaths": [
183
+ ".harness/**",
184
+ "artifacts/**"
185
+ ],
186
+ "outputContract": "Archived shell command stdout/stderr with exit codes; no worktree writes.",
187
+ "subtask_prompt": "Run deterministic loop-agent verification commands and archive outputs.",
188
+ "shell": {
189
+ "preset": "loop-agent-standard-verify",
190
+ "cwd": ".",
191
+ "timeoutMs": 300000
192
+ }
193
+ }
194
+ ]
195
+ }
@@ -0,0 +1,190 @@
1
+ {
2
+ "version": 2,
3
+ "title": "Agent DAG final verification template",
4
+ "objective": "Run closeout verification gates in a fixed order: reconcile, coverage, static invariant scan, changeset impact, closeout artifact generation, final verification, and closeout summary.",
5
+ "successCriteria": [
6
+ "task-state-reconcile-shell runs a deterministic task drift report",
7
+ "requirement-coverage-shell runs deterministic requirement coverage audit",
8
+ "static-invariant-shell uses task-scoped constraints only",
9
+ "changeset-impact-shell can skip with an explicit reason when the repo has no changesets/release impact",
10
+ "closeout-artifact-shell runs before final-verify-shell",
11
+ "final-verify-shell uses repo manifest or task-provided commands without host-specific wrappers"
12
+ ],
13
+ "globalConstraints": [
14
+ "Do not implement Project Policy Gate",
15
+ "Do not add rtk or host-specific shell wrappers as loop-agent built-ins",
16
+ "Do not mutate .harness/dag-runs/completed facts",
17
+ "Final verification must run after closeout artifact creation"
18
+ ],
19
+ "defaults": {
20
+ "executor": "shell",
21
+ "contextProfile": "slim",
22
+ "writePolicy": "read-only",
23
+ "skills": [
24
+ "ai-engineering-context"
25
+ ]
26
+ },
27
+ "executorModels": {
28
+ "cursor": {
29
+ "LOW": "composer-2.5",
30
+ "MED": "composer-2.5",
31
+ "HIGH": "composer-2.5"
32
+ },
33
+ "pi": {
34
+ "LOW": "gpt-5.3-codex-spark",
35
+ "MED": "glm-5.2",
36
+ "HIGH": "gpt-5.5"
37
+ }
38
+ },
39
+ "skillsByRole": {
40
+ "verifier": [
41
+ "verification-before-completion"
42
+ ],
43
+ "closeout": [
44
+ "loop-agent",
45
+ "verification-before-completion"
46
+ ]
47
+ },
48
+ "tasks": [
49
+ {
50
+ "id": "task-state-reconcile-shell",
51
+ "depends_on": [],
52
+ "executor": "shell",
53
+ "role": "verifier",
54
+ "complexity": "LOW",
55
+ "writePolicy": "read-only",
56
+ "forbiddenPaths": [
57
+ ".harness/dag-runs/completed/**",
58
+ "artifacts/**"
59
+ ],
60
+ "shell": {
61
+ "commands": [
62
+ "npm run dev -- dag reconcile-tasks --glob 'REPLACE_WITH_TASK_GLOB' --markdown"
63
+ ]
64
+ },
65
+ "outputContract": "Markdown task state/artifact/DAG/verification drift report.",
66
+ "subtask_prompt": "Run deterministic task reconcile audit."
67
+ },
68
+ {
69
+ "id": "requirement-coverage-shell",
70
+ "depends_on": [],
71
+ "executor": "shell",
72
+ "role": "verifier",
73
+ "complexity": "LOW",
74
+ "writePolicy": "read-only",
75
+ "forbiddenPaths": [
76
+ ".harness/dag-runs/completed/**",
77
+ "artifacts/**"
78
+ ],
79
+ "shell": {
80
+ "commands": [
81
+ "npm run dev -- handoff coverage REPLACE_WITH_TASK_ID --markdown"
82
+ ]
83
+ },
84
+ "outputContract": "Markdown requirement coverage audit.",
85
+ "subtask_prompt": "Run deterministic requirement coverage audit."
86
+ },
87
+ {
88
+ "id": "static-invariant-shell",
89
+ "depends_on": [],
90
+ "executor": "shell",
91
+ "role": "verifier",
92
+ "complexity": "LOW",
93
+ "writePolicy": "read-only",
94
+ "forbiddenPaths": [
95
+ ".harness/dag-runs/completed/**",
96
+ "artifacts/**"
97
+ ],
98
+ "shell": {
99
+ "commands": [
100
+ "node -e 'const fs=require(\"fs\"); const task=\"REPLACE_WITH_TASK_ID\"; const cfg=JSON.parse(fs.readFileSync(`.harness/tasks/${task}/task.json`,\"utf8\")); const forbidden=cfg.forbiddenPaths||[]; const hard=cfg.hardConstraints||[]; console.log(`# Static invariant scan for ${task}`); console.log(`forbiddenPaths=${forbidden.length}`); console.log(`hardConstraints=${hard.length}`); if (forbidden.some((entry)=>String(entry).includes(\"harness.json\"))) console.log(\"invariant: harness.json remains forbidden by task source\"); console.log(\"No global shellPolicy or host wrapper policy was introduced by this scan.\");'"
101
+ ]
102
+ },
103
+ "outputContract": "Task-scoped static invariant scan result.",
104
+ "subtask_prompt": "Run only task-scoped invariant checks."
105
+ },
106
+ {
107
+ "id": "changeset-impact-shell",
108
+ "depends_on": [],
109
+ "executor": "shell",
110
+ "role": "verifier",
111
+ "complexity": "LOW",
112
+ "writePolicy": "read-only",
113
+ "forbiddenPaths": [
114
+ ".harness/dag-runs/completed/**",
115
+ "artifacts/**"
116
+ ],
117
+ "shell": {
118
+ "commands": [
119
+ "node -e 'const fs=require(\"fs\"); const task=\"REPLACE_WITH_TASK_ID\"; const cfg=JSON.parse(fs.readFileSync(`.harness/tasks/${task}/task.json`,\"utf8\")); const haystack=[cfg.notes||\"\",...(cfg.hardConstraints||[]),...(cfg.sourceFiles||[])].join(\"\\n\"); process.exit(/changeset|release|publish|version/i.test(haystack)?0:2);' && { test -d .changeset || test -f .changeset/config.json || { echo \"changeset impact declared by task but no .changeset metadata found\"; exit 1; }; echo \"changeset impact metadata present\"; } || { code=$?; if test \"$code\" = 2; then if test -d .changeset || test -f .changeset/config.json; then echo \"changeset metadata present; review release notes before final verify\"; else echo \"SKIP: no changesets directory/config and task declares no release impact\"; fi; else exit \"$code\"; fi; }"
120
+ ]
121
+ },
122
+ "outputContract": "Changeset impact audit or explicit skip reason.",
123
+ "subtask_prompt": "Audit changeset/release impact or emit a skip reason."
124
+ },
125
+ {
126
+ "id": "closeout-artifact-shell",
127
+ "depends_on": [
128
+ "task-state-reconcile-shell",
129
+ "requirement-coverage-shell",
130
+ "static-invariant-shell",
131
+ "changeset-impact-shell"
132
+ ],
133
+ "executor": "shell",
134
+ "role": "verifier",
135
+ "complexity": "LOW",
136
+ "writePolicy": "none",
137
+ "forbiddenPaths": [
138
+ ".harness/dag-runs/completed/**",
139
+ "artifacts/**"
140
+ ],
141
+ "shell": {
142
+ "commands": [
143
+ "mkdir -p \"$(dirname \"REPLACE_WITH_CLOSEOUT_PATH\")\"",
144
+ "printf '%s\\n' '# Final Verification Closeout' '' 'task: REPLACE_WITH_TASK_ID' 'generated before final verification; do not treat as verify evidence' > \"REPLACE_WITH_CLOSEOUT_PATH\"",
145
+ "test -s \"REPLACE_WITH_CLOSEOUT_PATH\""
146
+ ]
147
+ },
148
+ "outputContract": "Derived closeout artifact exists before final verification.",
149
+ "subtask_prompt": "Create closeout artifact before final verification."
150
+ },
151
+ {
152
+ "id": "final-verify-shell",
153
+ "depends_on": [
154
+ "closeout-artifact-shell"
155
+ ],
156
+ "executor": "shell",
157
+ "role": "verifier",
158
+ "complexity": "LOW",
159
+ "writePolicy": "read-only",
160
+ "forbiddenPaths": [
161
+ ".harness/dag-runs/completed/**",
162
+ "artifacts/**"
163
+ ],
164
+ "shell": {
165
+ "commands": [
166
+ "CHECK_REPO=$(node -e 'const fs=require(\"fs\"); const manifest=JSON.parse(fs.readFileSync(\"harness.json\",\"utf8\")); process.stdout.write((manifest.scripts&&manifest.scripts.checkRepo)||\"scripts/check-repo.sh\");'); HARNESS_ALLOW_ACTIVE_DAG_RUNS=1 bash \"$CHECK_REPO\""
167
+ ]
168
+ },
169
+ "outputContract": "Final verification evidence captured after closeout artifact creation.",
170
+ "subtask_prompt": "Run final verification after closeout artifact exists."
171
+ },
172
+ {
173
+ "id": "closeout-summary-pi",
174
+ "depends_on": [
175
+ "final-verify-shell"
176
+ ],
177
+ "executor": "pi",
178
+ "role": "closeout",
179
+ "complexity": "LOW",
180
+ "writePolicy": "read-only",
181
+ "forbiddenPaths": [
182
+ ".harness/**",
183
+ ".harness/dag-runs/**",
184
+ "artifacts/**"
185
+ ],
186
+ "outputContract": "Plain Markdown final closeout summary. No file writes.",
187
+ "subtask_prompt": "Summarize final verification evidence. Do not write files."
188
+ }
189
+ ]
190
+ }