@jstn-sdk/ma 0.1.11 → 0.1.13

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 (159) hide show
  1. package/.codex/agents/Architect.toml +0 -2
  2. package/.codex/agents/Auditor.toml +0 -2
  3. package/.codex/agents/Builder.toml +0 -2
  4. package/.codex/agents/Flow.toml +0 -2
  5. package/.codex/agents/Sage.toml +0 -2
  6. package/.codex/agents/Vibe.toml +0 -2
  7. package/.codex/hooks.json +14 -13
  8. package/.codex/prompts/enforcement.md +4 -0
  9. package/.codex/prompts/skill-contract.md +4 -0
  10. package/COVERAGE.md +211 -0
  11. package/DEMO.md +265 -0
  12. package/README.md +287 -37
  13. package/bin/ma.js +232 -71
  14. package/data/clone-data.ledger.json +41 -0
  15. package/data/clone-data.proof.json +50 -0
  16. package/data/clone-data.rvf +37 -0
  17. package/docs/README.md +7 -1
  18. package/docs/getting-started.md +108 -37
  19. package/docs/installed-sdk.md +23 -0
  20. package/docs/mcp-setup.md +65 -1
  21. package/docs/onboarding.md +18 -2
  22. package/docs/prompt-guidance-contract.md +17 -0
  23. package/docs/prompt-guidance-fragments/active-autonomy-core.md +7 -0
  24. package/docs/qa/release-issue-gates-0.1.13.json +644 -0
  25. package/docs/qa/release-readiness-0.1.13.md +116 -0
  26. package/docs/qa/release-readiness-0.1.5.md +1 -1
  27. package/docs/reference/native-engineering-patterns.md +35 -0
  28. package/docs/reference/native-security-playbooks.md +27 -0
  29. package/docs/reference/native-source-selection.md +27 -0
  30. package/docs/reference/native-style-and-deslop.md +20 -0
  31. package/docs/release-spec.md +37 -10
  32. package/docs/skills-publishing.md +25 -1
  33. package/docs/skills.md +37 -12
  34. package/index.js +222 -2
  35. package/mcp/collections.json +23 -6
  36. package/mcp/local/code-intel.js +113 -0
  37. package/mcp/local/memory.js +46 -0
  38. package/mcp/local/playbooks.js +168 -0
  39. package/mcp/local/state.js +71 -0
  40. package/mcp/local/team-run.js +113 -0
  41. package/mcp/local/trace.js +60 -0
  42. package/mcp/local-capabilities.json +56 -0
  43. package/mcp/native-playbooks.json +117 -0
  44. package/mcp/servers.json +34 -0
  45. package/package.json +8 -2
  46. package/plugins/meta-architect/.app.json +1 -1
  47. package/plugins/meta-architect/.codex-plugin/plugin.json +4 -4
  48. package/plugins/meta-architect/.mcp.json +1 -1
  49. package/plugins/meta-architect/README.md +34 -1
  50. package/plugins/meta-architect/obsidian/main.js +401 -0
  51. package/plugins/meta-architect/obsidian/manifest.json +9 -0
  52. package/plugins/meta-architect/obsidian/styles.css +7 -0
  53. package/plugins/meta-architect/skills/align/SKILL.md +24 -0
  54. package/plugins/meta-architect/skills/align/agents/openai.yaml +4 -0
  55. package/plugins/meta-architect/skills/align/references/shared-language.md +24 -0
  56. package/plugins/meta-architect/skills/arch/SKILL.md +2 -0
  57. package/plugins/meta-architect/skills/build/SKILL.md +3 -0
  58. package/plugins/meta-architect/skills/cleanup/SKILL.md +23 -0
  59. package/plugins/meta-architect/skills/cleanup/agents/openai.yaml +4 -0
  60. package/plugins/meta-architect/skills/cleanup/references/style-and-deslop.md +18 -0
  61. package/plugins/meta-architect/skills/diagnose/SKILL.md +24 -0
  62. package/plugins/meta-architect/skills/diagnose/agents/openai.yaml +4 -0
  63. package/plugins/meta-architect/skills/flow/SKILL.md +2 -0
  64. package/plugins/meta-architect/skills/maestro/SKILL.md +36 -3
  65. package/plugins/meta-architect/skills/maestro/agents/openai.yaml +2 -2
  66. package/plugins/meta-architect/skills/maestro/references/native-ingest-map.md +44 -0
  67. package/plugins/meta-architect/skills/sage/SKILL.md +5 -1
  68. package/plugins/meta-architect/skills/sage/references/source-selection.md +36 -0
  69. package/plugins/meta-architect/skills/tdd/SKILL.md +24 -0
  70. package/plugins/meta-architect/skills/tdd/agents/openai.yaml +4 -0
  71. package/plugins/meta-architect/skills/vet/SKILL.md +5 -1
  72. package/plugins/meta-architect/skills/vet/references/security-playbooks.md +30 -0
  73. package/plugins/meta-architect/skills/vibe/SKILL.md +2 -0
  74. package/scripts/active-autonomy-hook.mjs +96 -0
  75. package/scripts/build-linux-packages.mjs +328 -0
  76. package/scripts/doctor.js +36 -4
  77. package/scripts/install.sh +28 -0
  78. package/scripts/linux-package-lib.mjs +40 -0
  79. package/scripts/linux-package-smoke.mjs +103 -0
  80. package/scripts/ralph/prompt.md +35 -0
  81. package/scripts/release-sync.js +13 -6
  82. package/scripts/release-verify.js +166 -1
  83. package/skills/align/SKILL.md +24 -0
  84. package/skills/align/agents/openai.yaml +4 -0
  85. package/skills/align/references/shared-language.md +24 -0
  86. package/skills/arch/SKILL.md +2 -0
  87. package/skills/build/SKILL.md +3 -0
  88. package/skills/cleanup/SKILL.md +23 -0
  89. package/skills/cleanup/agents/openai.yaml +4 -0
  90. package/skills/cleanup/references/style-and-deslop.md +18 -0
  91. package/skills/diagnose/SKILL.md +24 -0
  92. package/skills/diagnose/agents/openai.yaml +4 -0
  93. package/skills/flow/SKILL.md +2 -0
  94. package/skills/index.json +21 -6
  95. package/skills/maestro/SKILL.md +36 -3
  96. package/skills/maestro/agents/openai.yaml +2 -2
  97. package/skills/maestro/references/native-ingest-map.md +44 -0
  98. package/skills/sage/SKILL.md +5 -1
  99. package/skills/sage/references/source-selection.md +36 -0
  100. package/skills/tdd/SKILL.md +24 -0
  101. package/skills/tdd/agents/openai.yaml +4 -0
  102. package/skills/vet/SKILL.md +5 -1
  103. package/skills/vet/references/security-playbooks.md +30 -0
  104. package/skills/vibe/SKILL.md +2 -0
  105. package/src/bootstrap.js +141 -24
  106. package/src/build-gate.js +2 -2
  107. package/src/decision-log.js +12 -9
  108. package/src/launcher.js +4 -0
  109. package/src/mcp-config.js +130 -8
  110. package/src/mcp-live-client.js +289 -3
  111. package/src/paths.js +37 -1
  112. package/src/policy.js +1 -1
  113. package/src/release-issue-gates.js +190 -0
  114. package/src/release-state.js +30 -1
  115. package/src/runtime/active-autonomy-core.js +208 -0
  116. package/src/runtime/alignment-sentinel.js +165 -0
  117. package/src/runtime/architect-review.js +88 -0
  118. package/src/runtime/build-readiness.js +62 -0
  119. package/src/runtime/code-graph-rehearse.js +113 -0
  120. package/src/runtime/context-economy-core.js +276 -0
  121. package/src/runtime/continuity-notes.js +79 -0
  122. package/src/runtime/core-source-ingest.js +379 -0
  123. package/src/runtime/detached-provider.js +74 -0
  124. package/src/runtime/environment-awareness-core.js +460 -0
  125. package/src/runtime/exposure-catalog.js +276 -0
  126. package/src/runtime/guidance-stack.js +42 -0
  127. package/src/runtime/helper-orchestration-core.js +307 -0
  128. package/src/runtime/learning-loop-core.js +238 -0
  129. package/src/runtime/maestro-events.js +18 -0
  130. package/src/runtime/maestro-manager.js +605 -0
  131. package/src/runtime/maestro-state.js +125 -0
  132. package/src/runtime/mcp-policy.js +192 -0
  133. package/src/runtime/obsidian-integration-core.js +851 -0
  134. package/src/runtime/obsidian-plugin-bridge.js +739 -0
  135. package/src/runtime/orchestrator.js +158 -0
  136. package/src/runtime/prompt-strategy-core.js +230 -0
  137. package/src/runtime/quorum-review.js +90 -0
  138. package/src/runtime/ralph-execution-core.js +217 -0
  139. package/src/runtime/redaction-gateway.js +174 -0
  140. package/src/runtime/runtime-state.js +1223 -0
  141. package/src/runtime/semantic-recording-core.js +147 -0
  142. package/src/runtime/signal-hooks.js +67 -0
  143. package/src/runtime/skills-registry-export.js +670 -0
  144. package/src/runtime/startup-path.js +14 -0
  145. package/src/runtime/universal-plugin-broker-core.js +575 -0
  146. package/src/runtime/workspace-intelligence-runtime.js +674 -0
  147. package/src/runtime/workspace-virtualizer.js +102 -0
  148. package/src/runtime/workspaces.js +25 -0
  149. package/src/runtime-artifacts.js +407 -84
  150. package/src/skill-installer.js +53 -5
  151. package/src/skills.js +1454 -78
  152. package/src/state-sync.js +51 -8
  153. package/docs/qa/release-readiness-0.1.11.md +0 -79
  154. package/plugins/meta-architect/skills/meta-architect/SKILL.md +0 -32
  155. package/plugins/meta-architect/skills/meta-architect/agents/openai.yaml +0 -4
  156. package/skills/meta-architect/SKILL.md +0 -32
  157. package/skills/meta-architect/agents/openai.yaml +0 -4
  158. /package/plugins/meta-architect/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
  159. /package/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
@@ -0,0 +1,644 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "releaseVersion": "0.1.13",
4
+ "releaseTag": "v0.1.13",
5
+ "previousVersion": "0.1.12",
6
+ "passContract": {
7
+ "allIssuesMustPassProduction": true,
8
+ "passedMeans": "The issue has implementation evidence, verification evidence, and production release evidence. Pending, blocked, failed, or in_progress issues must loop through fix tasks before release.",
9
+ "allIssuesMustHaveLabels": true
10
+ },
11
+ "issues": [
12
+ {
13
+ "number": 13,
14
+ "title": "[feature] Meta tracking: next-release core gated lanes and runtime maturity program",
15
+ "url": "https://github.com/JustineDevs/meta-architect/issues/13",
16
+ "releaseVersion": "0.1.13",
17
+ "releaseTag": "v0.1.13",
18
+ "milestone": "v0.1.13",
19
+ "status": "passed",
20
+ "requiredProof": [
21
+ "All child next-release issues are individually passed with evidence.",
22
+ "Release readiness file links every child issue gate.",
23
+ "Production release checks pass after all child issues are closed or explicitly passed."
24
+ ],
25
+ "loopAction": "Keep #13 open as the parent blocker until every child issue in this gate is passed.",
26
+ "proof": {
27
+ "implementationEvidence": [
28
+ "Child issues #14, #15, #16, #17, #18, #19, #20, #21, #22, #23, #24, #25, #26, #27, #28, #29 are individually marked passed in this gate with implementation, verification, and production evidence.",
29
+ "docs/qa/release-readiness-0.1.13.md links this gate as the canonical v0.1.13 issue proof artifact.",
30
+ "src/release-issue-gates.js validates all tracked issue statuses, labels, proof arrays, milestone, release version, and release tag."
31
+ ],
32
+ "verificationEvidence": [
33
+ "node-based validateReleaseIssueGates(document, { version: 0.1.13 }) returns valid true after this evidence update.",
34
+ "test/release-issue-gates.test.js covers failing pending gates and passing proof gates.",
35
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
36
+ "npm test passed after core implementation changes (30/30 tests).",
37
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
38
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
39
+ ],
40
+ "productionEvidence": [
41
+ "npm run release:verify validates this gate file before release.",
42
+ "npm run release:check is the final production gate covering release verification, skills/plugin checks, check, tests, and npm pack inspection.",
43
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
44
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
45
+ "npm run release:check is the required final production release gate for this issue set."
46
+ ]
47
+ },
48
+ "labels": ["feature", "next-release", "v0.1.13"]
49
+ },
50
+ {
51
+ "number": 14,
52
+ "title": "[feature] Reconcile core gated lane contracts and harden the `$build` state loop",
53
+ "url": "https://github.com/JustineDevs/meta-architect/issues/14",
54
+ "releaseVersion": "0.1.13",
55
+ "releaseTag": "v0.1.13",
56
+ "milestone": "v0.1.13",
57
+ "status": "passed",
58
+ "requiredProof": [
59
+ "Core gated lane contracts are implemented in repo code and prompts.",
60
+ "`$build` cannot pass while upstream gates are incomplete.",
61
+ "Targeted gate tests and full release checks pass."
62
+ ],
63
+ "loopAction": "Implement or repair the gated lane loop until `$build` has fresh green evidence.",
64
+ "proof": {
65
+ "implementationEvidence": [
66
+ "src/skills.js implements the $build lane state loop with upstream gate checks, READY/RUNNING/DONE transitions, and optional quorum review.",
67
+ "src/runtime/build-readiness.js evaluates lane prerequisites so $build cannot pass while architecture, evidence, logic, security, or experience gates are incomplete.",
68
+ "prompts/builder.md and skills/build/SKILL.md carry the gated build contract into role and skill surfaces."
69
+ ],
70
+ "verificationEvidence": [
71
+ "test/build-gate.test.js verifies build gate state transitions and blocked upstream-gate behavior.",
72
+ "test/full-flow.test.js exercises helper-flow sequencing through $build.",
73
+ "test/runtime-state.test.js validates runtime summary build readiness fields.",
74
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
75
+ "npm test passed after core implementation changes (30/30 tests).",
76
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
77
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
78
+ ],
79
+ "productionEvidence": [
80
+ "node bin/ma.js status reported Build DONE only after upstream release lanes were green.",
81
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
82
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
83
+ "npm run release:check is the required final production release gate for this issue set."
84
+ ]
85
+ },
86
+ "labels": ["feature", "next-release", "v0.1.13"]
87
+ },
88
+ {
89
+ "number": 15,
90
+ "title": "[feature] Add the operational scratchpad layer and `maestro-state.json` control-plane ledger",
91
+ "url": "https://github.com/JustineDevs/meta-architect/issues/15",
92
+ "releaseVersion": "0.1.13",
93
+ "releaseTag": "v0.1.13",
94
+ "milestone": "v0.1.13",
95
+ "status": "passed",
96
+ "requiredProof": [
97
+ "Scratchpad and maestro-state ledger are implemented with safe ownership boundaries.",
98
+ "State writes are schema-validated and do not bypass release authority.",
99
+ "Runtime/state tests pass."
100
+ ],
101
+ "loopAction": "Complete the ledger implementation and state tests before marking passed.",
102
+ "proof": {
103
+ "implementationEvidence": [
104
+ "src/runtime/maestro-state.js implements the maestro-state ledger schema and safe runtime path ownership.",
105
+ "src/runtime/maestro-manager.js and src/runtime/maestro-events.js persist manager runs, decisions, and append-only activity evidence.",
106
+ "src/runtime/runtime-state.js loads, validates, repairs, and summarizes maestro state without giving helper lanes release authority."
107
+ ],
108
+ "verificationEvidence": [
109
+ "test/runtime-state.test.js validates maestro-state loading, summary fields, invalid artifact repair, and missing artifact recovery.",
110
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
111
+ "npm test passed after core implementation changes (30/30 tests).",
112
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
113
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
114
+ ],
115
+ "productionEvidence": [
116
+ "node bin/ma.js status read the runtime state ledger and reported coherent lane summaries.",
117
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
118
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
119
+ "npm run release:check is the required final production release gate for this issue set."
120
+ ]
121
+ },
122
+ "labels": ["feature", "next-release", "v0.1.13"]
123
+ },
124
+ {
125
+ "number": 16,
126
+ "title": "[feature] Add read-only supply-chain exposure intake and build circuit-breaker orchestration",
127
+ "url": "https://github.com/JustineDevs/meta-architect/issues/16",
128
+ "releaseVersion": "0.1.13",
129
+ "releaseTag": "v0.1.13",
130
+ "milestone": "v0.1.13",
131
+ "status": "passed",
132
+ "requiredProof": [
133
+ "Supply-chain intake is read-only and cannot mutate release state directly.",
134
+ "Build circuit breaker blocks unsafe release progression.",
135
+ "Security and build-gate tests pass."
136
+ ],
137
+ "loopAction": "Finish the read-only intake and circuit-breaker proof before release.",
138
+ "proof": {
139
+ "implementationEvidence": [
140
+ "src/runtime/exposure-catalog.js implements read-only exposure intake for package and capability surfaces.",
141
+ "src/runtime/mcp-policy.js enforces MCP and provider policy boundaries for external capability exposure.",
142
+ "src/runtime/build-readiness.js and src/skills.js wire exposure findings into build circuit-breaker behavior."
143
+ ],
144
+ "verificationEvidence": [
145
+ "test/exposure-catalog.test.js validates exposure catalog classification and read-only behavior.",
146
+ "test/mcp-policy.test.js validates provider/MCP policy boundaries.",
147
+ "test/build-gate.test.js validates circuit-breaker interaction with build readiness.",
148
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
149
+ "npm test passed after core implementation changes (30/30 tests).",
150
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
151
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
152
+ ],
153
+ "productionEvidence": [
154
+ "node bin/ma.js status reported Security GREEN and Build DONE after exposure and build-readiness checks.",
155
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
156
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
157
+ "npm run release:check is the required final production release gate for this issue set."
158
+ ]
159
+ },
160
+ "labels": ["feature", "next-release", "v0.1.13"]
161
+ },
162
+ {
163
+ "number": 17,
164
+ "title": "[feature] Add the Redaction Gateway for provider-bound context sanitization",
165
+ "url": "https://github.com/JustineDevs/meta-architect/issues/17",
166
+ "releaseVersion": "0.1.13",
167
+ "releaseTag": "v0.1.13",
168
+ "milestone": "v0.1.13",
169
+ "status": "passed",
170
+ "requiredProof": [
171
+ "Provider-bound context sanitization is implemented.",
172
+ "Redaction cannot leak protected workspace details in exported prompts or payloads.",
173
+ "Redaction gateway tests pass."
174
+ ],
175
+ "loopAction": "Complete sanitization coverage and redaction tests before marking passed.",
176
+ "proof": {
177
+ "implementationEvidence": [
178
+ "src/runtime/redaction-gateway.js implements provider-bound redaction, provider_safe receipts, and vault persistence for protected context.",
179
+ "The redaction gateway records sanitized exports without mutating protected raw workspace context."
180
+ ],
181
+ "verificationEvidence": [
182
+ "test/redaction-gateway.test.js proves sensitive provider-bound text is masked, provider_safe is true, and events are emitted.",
183
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
184
+ "npm test passed after core implementation changes (30/30 tests).",
185
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
186
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
187
+ ],
188
+ "productionEvidence": [
189
+ "node bin/ma.js status completed with runtime artifacts valid after redaction gateway installation.",
190
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
191
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
192
+ "npm run release:check is the required final production release gate for this issue set."
193
+ ]
194
+ },
195
+ "labels": ["feature", "next-release", "v0.1.13"]
196
+ },
197
+ {
198
+ "number": 18,
199
+ "title": "[feature] Add the Alignment Sentinel for runtime drift detection and bounded worker reboot",
200
+ "url": "https://github.com/JustineDevs/meta-architect/issues/18",
201
+ "releaseVersion": "0.1.13",
202
+ "releaseTag": "v0.1.13",
203
+ "milestone": "v0.1.13",
204
+ "status": "passed",
205
+ "requiredProof": [
206
+ "Runtime drift detection is implemented.",
207
+ "Worker reboot or recovery is bounded and cannot loop indefinitely.",
208
+ "Sentinel tests prove drift handling and recovery behavior."
209
+ ],
210
+ "loopAction": "Implement the sentinel and recovery tests before release.",
211
+ "proof": {
212
+ "implementationEvidence": [
213
+ "src/runtime/alignment-sentinel.js implements runtime drift detection and bounded recovery planning.",
214
+ "Recovery plans are bounded and do not silently reboot or loop workers indefinitely."
215
+ ],
216
+ "verificationEvidence": [
217
+ "test/alignment-sentinel.test.js proves drift detection and bounded recovery behavior.",
218
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
219
+ "npm test passed after core implementation changes (30/30 tests).",
220
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
221
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
222
+ ],
223
+ "productionEvidence": [
224
+ "node bin/ma.js doctor validated runtime artifact health after sentinel installation.",
225
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
226
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
227
+ "npm run release:check is the required final production release gate for this issue set."
228
+ ]
229
+ },
230
+ "labels": ["feature", "next-release", "v0.1.13"]
231
+ },
232
+ {
233
+ "number": 19,
234
+ "title": "[feature] Add the Synthetic Workspace Virtualizer for low-overhead bounded verification",
235
+ "url": "https://github.com/JustineDevs/meta-architect/issues/19",
236
+ "releaseVersion": "0.1.13",
237
+ "releaseTag": "v0.1.13",
238
+ "milestone": "v0.1.13",
239
+ "status": "passed",
240
+ "requiredProof": [
241
+ "Synthetic workspace virtualization is implemented without replacing real release checks.",
242
+ "Virtualized evidence is clearly separated from production evidence.",
243
+ "Virtualizer tests pass."
244
+ ],
245
+ "loopAction": "Finish the virtualizer and evidence-boundary tests before marking passed.",
246
+ "proof": {
247
+ "implementationEvidence": [
248
+ "src/runtime/workspace-virtualizer.js implements bounded synthetic workspace verification without replacing real release checks.",
249
+ "Virtualizer receipts mark production_evidence false and isolate simulated files from source mutation."
250
+ ],
251
+ "verificationEvidence": [
252
+ "test/workspace-virtualizer.test.js proves virtual evidence stays separate from production evidence and does not mutate source files.",
253
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
254
+ "npm test passed after core implementation changes (30/30 tests).",
255
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
256
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
257
+ ],
258
+ "productionEvidence": [
259
+ "Real production evidence still comes from npm run check, npm test, doctor, status, package smoke, and release verification, not virtualizer receipts.",
260
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
261
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
262
+ "npm run release:check is the required final production release gate for this issue set."
263
+ ]
264
+ },
265
+ "labels": ["feature", "next-release", "v0.1.13"]
266
+ },
267
+ {
268
+ "number": 20,
269
+ "title": "[feature] Add the Quorum Review Engine as an optional high-assurance `$build` substep",
270
+ "url": "https://github.com/JustineDevs/meta-architect/issues/20",
271
+ "releaseVersion": "0.1.13",
272
+ "releaseTag": "v0.1.13",
273
+ "milestone": "v0.1.13",
274
+ "status": "passed",
275
+ "requiredProof": [
276
+ "Quorum review is available as an optional high-assurance substep.",
277
+ "Review output cannot falsely mark production readiness without gate evidence.",
278
+ "Quorum review tests pass."
279
+ ],
280
+ "loopAction": "Implement quorum review and gate interaction tests before release.",
281
+ "proof": {
282
+ "implementationEvidence": [
283
+ "src/runtime/quorum-review.js implements optional high-assurance quorum review receipts.",
284
+ "src/skills.js wires $build reviewMode quorum without allowing quorum output to replace gate evidence."
285
+ ],
286
+ "verificationEvidence": [
287
+ "test/quorum-review.test.js proves quorum receipts cannot falsely mark production readiness without existing build gate evidence.",
288
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
289
+ "npm test passed after core implementation changes (30/30 tests).",
290
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
291
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
292
+ ],
293
+ "productionEvidence": [
294
+ "node bin/ma.js status reported Build DONE from lane evidence, not quorum-only claims.",
295
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
296
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
297
+ "npm run release:check is the required final production release gate for this issue set."
298
+ ]
299
+ },
300
+ "labels": ["feature", "next-release", "v0.1.13"]
301
+ },
302
+ {
303
+ "number": 21,
304
+ "title": "[feature] Add an incremental code graph and bounded `$rehearse` trajectory mode",
305
+ "url": "https://github.com/JustineDevs/meta-architect/issues/21",
306
+ "releaseVersion": "0.1.13",
307
+ "releaseTag": "v0.1.13",
308
+ "milestone": "v0.1.13",
309
+ "status": "passed",
310
+ "requiredProof": [
311
+ "Incremental code graph support is implemented.",
312
+ "`$rehearse` remains bounded and cannot become unverified execution.",
313
+ "Code graph and rehearsal tests pass."
314
+ ],
315
+ "loopAction": "Complete graph and rehearsal implementation with bounded-mode tests.",
316
+ "proof": {
317
+ "implementationEvidence": [
318
+ "src/runtime/code-graph-rehearse.js implements incremental code graph collection and bounded rehearsal trajectories.",
319
+ "Rehearsal receipts set source_mutation_allowed false and production_evidence false so rehearsal cannot become unverified execution."
320
+ ],
321
+ "verificationEvidence": [
322
+ "test/code-graph-rehearse.test.js proves graph output, bounded steps, no source mutation, and non-production evidence classification.",
323
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
324
+ "npm test passed after core implementation changes (30/30 tests).",
325
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
326
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
327
+ ],
328
+ "productionEvidence": [
329
+ "Production readiness remains proven by real check/test/doctor/status commands rather than rehearsal receipts.",
330
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
331
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
332
+ "npm run release:check is the required final production release gate for this issue set."
333
+ ]
334
+ },
335
+ "labels": ["feature", "next-release", "v0.1.13"]
336
+ },
337
+ {
338
+ "number": 22,
339
+ "title": "[feature] Add the multi-agent skills registry and exported compatibility payload contract",
340
+ "url": "https://github.com/JustineDevs/meta-architect/issues/22",
341
+ "releaseVersion": "0.1.13",
342
+ "releaseTag": "v0.1.13",
343
+ "milestone": "v0.1.13",
344
+ "status": "passed",
345
+ "requiredProof": [
346
+ "Universal and non-universal agent registry is implemented.",
347
+ "Exported compatibility payloads preserve MA authority boundaries.",
348
+ "Installer tests cover no-symlink, symlink, skip, and copy-fallback paths."
349
+ ],
350
+ "loopAction": "Implement registry/exporter coverage and installer tests before release.",
351
+ "proof": {
352
+ "implementationEvidence": [
353
+ "src/runtime/skills-registry-export.js implements the universal .agents/skills registry, non-universal symlink fan-out, copy fallback, and compatibility payload export.",
354
+ "Compatibility payloads preserve MA authority boundaries and do not allow external skills to own release state."
355
+ ],
356
+ "verificationEvidence": [
357
+ "test/skills-registry-export.test.js covers universal no-symlink, non-universal symlink, missing-agent skip, copy fallback, and compatibility payload authority fields.",
358
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
359
+ "npm test passed after core implementation changes (30/30 tests).",
360
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
361
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
362
+ ],
363
+ "productionEvidence": [
364
+ "npm run skills:pack and npm run release:check exercise shipped skill payload packaging.",
365
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
366
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
367
+ "npm run release:check is the required final production release gate for this issue set."
368
+ ]
369
+ },
370
+ "labels": ["feature", "next-release", "v0.1.13"]
371
+ },
372
+ {
373
+ "number": 23,
374
+ "title": "[feature] Harden Linux packaging and cross-agent install verification against the real release contract",
375
+ "url": "https://github.com/JustineDevs/meta-architect/issues/23",
376
+ "releaseVersion": "0.1.13",
377
+ "releaseTag": "v0.1.13",
378
+ "milestone": "v0.1.13",
379
+ "status": "passed",
380
+ "requiredProof": [
381
+ "Linux package artifacts build for Debian, Arch, and RPM lanes.",
382
+ "Package smoke tests prove extracted `ma` command behavior.",
383
+ "Cross-agent install verification is covered for the supported v1 matrix."
384
+ ],
385
+ "loopAction": "Run package build/smoke and cross-agent install tests until green.",
386
+ "proof": {
387
+ "implementationEvidence": [
388
+ "scripts/build-linux-packages.mjs builds Debian, Arch, and RPM-style release artifacts.",
389
+ "scripts/linux-package-smoke.mjs extracts package payloads and verifies the packaged ma command behavior.",
390
+ "test/package-install-smoke.test.js and test/package-exports.test.js cover install and package export behavior."
391
+ ],
392
+ "verificationEvidence": [
393
+ "npm run linux:packages:build passed and produced dist/meta-architect_0.1.13_all.deb, dist/meta-architect-0.1.13-1-any.pkg.tar.xz, and dist/meta-architect-0.1.13-1.noarch.rpm.",
394
+ "npm run linux:packages:smoke passed against extracted package payloads.",
395
+ "npm run release:assets passed and validated all v0.1.13 release artifacts plus dist/linux-package-manifest.json.",
396
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
397
+ "npm test passed after core implementation changes (30/30 tests).",
398
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
399
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
400
+ ],
401
+ "productionEvidence": [
402
+ "dist/meta-architect_0.1.13_all.deb validated by release:assets at 1889688 bytes.",
403
+ "dist/meta-architect-0.1.13-1-any.pkg.tar.xz validated by release:assets at 1892412 bytes.",
404
+ "dist/meta-architect-0.1.13-1.noarch.rpm validated by release:assets at 1990404 bytes.",
405
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
406
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
407
+ "npm run release:check is the required final production release gate for this issue set."
408
+ ]
409
+ },
410
+ "labels": ["feature", "next-release", "v0.1.13"]
411
+ },
412
+ {
413
+ "number": 24,
414
+ "title": "[feature] Add Obsidian Integration Core as default vault/plugin capability",
415
+ "url": "https://github.com/JustineDevs/meta-architect/issues/24",
416
+ "releaseVersion": "0.1.13",
417
+ "releaseTag": "v0.1.13",
418
+ "milestone": "v0.1.13",
419
+ "status": "passed",
420
+ "requiredProof": [
421
+ "Obsidian integration is default core, not optional.",
422
+ "Vault context is tagged as `vault_context`, not build evidence.",
423
+ "Plugin-side actions cannot mutate release or lane artifacts directly."
424
+ ],
425
+ "loopAction": "Finish Obsidian core implementation and boundary tests before release.",
426
+ "proof": {
427
+ "implementationEvidence": [
428
+ "src/runtime/obsidian-integration-core.js implements default Obsidian core bridge artifacts, vault note indexing, tag graph context, and safe CRUD operations.",
429
+ "bin/ma.js exposes ma obsidian list/read/create/update/delete and ma obsidian-index commands.",
430
+ "src/bootstrap.js, src/runtime/runtime-state.js, src/launcher.js, and index.js wire Obsidian as default MA core capability, not optional MCP-only config."
431
+ ],
432
+ "verificationEvidence": [
433
+ "test/obsidian-integration-core.test.js covers bridge validation, vault-context classification, safe CRUD, traversal rejection, and operation receipts.",
434
+ "node --test test/obsidian-integration-core.test.js test/runtime-state.test.js test/cli-smoke.test.js passed after CRUD implementation.",
435
+ "Manual local-vault smoke created, read, updated, deleted a temporary note, then created durable Meta-Architect/Core Brain Context.md in the user's Obsidian vault.",
436
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
437
+ "npm test passed after core implementation changes (30/30 tests).",
438
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
439
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
440
+ ],
441
+ "productionEvidence": [
442
+ "node bin/ma.js obsidian list /mnt/c/users/justinedevs/Documents/Obsidian Vault returned 2 notes including Meta-Architect/Core Brain Context.md.",
443
+ "node bin/ma.js obsidian-index /mnt/c/users/justinedevs/Documents/Obsidian Vault returned Notes: 2, Tags: 2, Unresolved links: 0.",
444
+ "Obsidian CRUD operation receipts recorded create/update/delete/create actions as vault_context and not build_evidence.",
445
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
446
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
447
+ "npm run release:check is the required final production release gate for this issue set."
448
+ ]
449
+ },
450
+ "labels": ["feature", "next-release", "v0.1.13"]
451
+ },
452
+ {
453
+ "number": 25,
454
+ "title": "[feature] Add Context Economy Core as default compression capability",
455
+ "url": "https://github.com/JustineDevs/meta-architect/issues/25",
456
+ "releaseVersion": "0.1.13",
457
+ "releaseTag": "v0.1.13",
458
+ "milestone": "v0.1.13",
459
+ "status": "passed",
460
+ "requiredProof": [
461
+ "Context economy is default core across applicable capabilities.",
462
+ "Compressed communication preserves technical accuracy and safety exceptions.",
463
+ "Context economy tests pass."
464
+ ],
465
+ "loopAction": "Complete context economy implementation and safety tests before release.",
466
+ "proof": {
467
+ "implementationEvidence": [
468
+ "src/runtime/context-economy-core.js implements MA Context Economy Core with default compact-output policy, safety exceptions, and compression contracts.",
469
+ "src/runtime/core-source-ingest.js ingests the local caveman core source once under .ma/core-sources/caveman for MA-owned semantic use.",
470
+ "Runtime state composition marks Context Economy as default core across applicable capabilities."
471
+ ],
472
+ "verificationEvidence": [
473
+ "test/context-economy-core.test.js validates compression policy, safety exceptions, and technical-accuracy preservation.",
474
+ "test/core-source-ingest.test.js validates local core-source ingest manifest behavior.",
475
+ "MA_DISABLE_LIVE_MCP=1 node bin/ma.js run '$sage' verified Caveman from local-core-source-ingest.",
476
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
477
+ "npm test passed after core implementation changes (30/30 tests).",
478
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
479
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
480
+ ],
481
+ "productionEvidence": [
482
+ "node bin/ma.js core-ingest --refresh cloned/updated caveman under .ma/core-sources/caveman without fetching on each runtime use.",
483
+ "Full $sage smoke verified core-source-backed capabilities from local-core-source-ingest.",
484
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
485
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
486
+ "npm run release:check is the required final production release gate for this issue set."
487
+ ]
488
+ },
489
+ "labels": ["feature", "next-release", "v0.1.13"]
490
+ },
491
+ {
492
+ "number": 26,
493
+ "title": "[feature] Add Ralph Execution Core as default maestro execution engine",
494
+ "url": "https://github.com/JustineDevs/meta-architect/issues/26",
495
+ "releaseVersion": "0.1.13",
496
+ "releaseTag": "v0.1.13",
497
+ "milestone": "v0.1.13",
498
+ "status": "passed",
499
+ "requiredProof": [
500
+ "Ralph execution core is default where autonomous execution applies.",
501
+ "Quality gates are embedded before commit or completion.",
502
+ "Execution-loop tests pass without bypassing MA lane authority."
503
+ ],
504
+ "loopAction": "Finish Ralph execution wiring and loop verification before release.",
505
+ "proof": {
506
+ "implementationEvidence": [
507
+ "src/runtime/ralph-execution-core.js implements Ralph Execution Core as MA-owned execution engine metadata, PRD handoff, quality gates, and lane authority rules.",
508
+ "scripts/ralph/prompt.md embeds MA quality gates and story loop requirements for autonomous execution.",
509
+ "src/runtime/runtime-state.js validates Ralph core artifacts and summarizes Ralph readiness."
510
+ ],
511
+ "verificationEvidence": [
512
+ "test/ralph-execution-core.test.js proves PRD handoff shape, quality-gate embedding, and MA lane authority boundaries.",
513
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
514
+ "npm test passed after core implementation changes (30/30 tests).",
515
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
516
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
517
+ ],
518
+ "productionEvidence": [
519
+ "node bin/ma.js status reported runtime core artifacts valid after Ralph Execution Core installation.",
520
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
521
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
522
+ "npm run release:check is the required final production release gate for this issue set."
523
+ ]
524
+ },
525
+ "labels": ["feature", "next-release", "v0.1.13"]
526
+ },
527
+ {
528
+ "number": 27,
529
+ "title": "[feature] Add Workspace Intelligence Runtime Core semantic composition contracts",
530
+ "url": "https://github.com/JustineDevs/meta-architect/issues/27",
531
+ "releaseVersion": "0.1.13",
532
+ "releaseTag": "v0.1.13",
533
+ "milestone": "v0.1.13",
534
+ "status": "passed",
535
+ "requiredProof": [
536
+ "Workspace intelligence runtime contracts are implemented.",
537
+ "Semantic data uses validated runtime APIs rather than raw unsafe writes.",
538
+ "Workspace intelligence and runtime-state tests pass."
539
+ ],
540
+ "loopAction": "Complete runtime contract implementation and semantic evidence tests.",
541
+ "proof": {
542
+ "implementationEvidence": [
543
+ "src/runtime/workspace-intelligence-runtime.js composes core capabilities semantically across vault context, context economy, Ralph, prompt strategy, and active autonomy.",
544
+ "src/runtime/semantic-recording-core.js defines semantic recording layers and separates hook-owned automation from validated runtime API state.",
545
+ "src/runtime/runtime-state.js validates semantic runtime artifacts and summary fields."
546
+ ],
547
+ "verificationEvidence": [
548
+ "test/workspace-intelligence-runtime.test.js proves semantic capability composition and workspace-intelligence contracts.",
549
+ "test/runtime-state.test.js validates semantic recording and runtime-state summary integration.",
550
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
551
+ "npm test passed after core implementation changes (30/30 tests).",
552
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
553
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
554
+ ],
555
+ "productionEvidence": [
556
+ "node bin/ma.js status reported Obsidian vault notes, core source snapshots, and green release lanes from the composed runtime snapshot.",
557
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
558
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
559
+ "npm run release:check is the required final production release gate for this issue set."
560
+ ]
561
+ },
562
+ "labels": ["feature", "next-release", "v0.1.13"]
563
+ },
564
+ {
565
+ "number": 28,
566
+ "title": "[feature] Add Prompt Strategy Core as default MA prompt-policy capability",
567
+ "url": "https://github.com/JustineDevs/meta-architect/issues/28",
568
+ "releaseVersion": "0.1.13",
569
+ "releaseTag": "v0.1.13",
570
+ "milestone": "v0.1.13",
571
+ "status": "passed",
572
+ "requiredProof": [
573
+ "Prompt strategy is default core across applicable roles and skills.",
574
+ "Prompt strategy uses MA-owned policy, not copied external branding.",
575
+ "Prompt strategy tests pass."
576
+ ],
577
+ "loopAction": "Complete prompt policy implementation and role/skill contract tests.",
578
+ "proof": {
579
+ "implementationEvidence": [
580
+ "src/runtime/prompt-strategy-core.js implements MA Prompt Strategy Core as default policy capability using MA-owned framing rather than copied external branding.",
581
+ "src/runtime/core-source-ingest.js ingests Prompt_Engineering locally under .ma/core-sources/prompt-engineering for one-time semantic reference.",
582
+ "Prompt strategy guidance is wired through docs/prompt-guidance-contract.md, docs/prompt-guidance-fragments, role prompts, and skills."
583
+ ],
584
+ "verificationEvidence": [
585
+ "test/prompt-strategy-core.test.js validates prompt strategy policy, MA ownership, and prompt technique catalog contracts.",
586
+ "test/core-source-ingest.test.js validates prompt-engineering core-source ingest metadata.",
587
+ "Full $sage smoke verified prompt-engineering from local-core-source-ingest.",
588
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
589
+ "npm test passed after core implementation changes (30/30 tests).",
590
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
591
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
592
+ ],
593
+ "productionEvidence": [
594
+ "node bin/ma.js core-ingest --refresh cloned/updated prompt-engineering under .ma/core-sources/prompt-engineering without runtime refetch.",
595
+ "Full $sage smoke verified core-source-backed prompt strategy capability from local-core-source-ingest.",
596
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
597
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
598
+ "npm run release:check is the required final production release gate for this issue set."
599
+ ]
600
+ },
601
+ "labels": ["feature", "next-release", "v0.1.13"]
602
+ },
603
+ {
604
+ "number": 29,
605
+ "title": "[feature] Add Active Autonomy Contract Core to prevent passive chatbot behavior",
606
+ "url": "https://github.com/JustineDevs/meta-architect/issues/29",
607
+ "releaseVersion": "0.1.13",
608
+ "releaseTag": "v0.1.13",
609
+ "milestone": "v0.1.13",
610
+ "status": "passed",
611
+ "requiredProof": [
612
+ "Active autonomy contract is default core across applicable agents and roles.",
613
+ "Passive handoff wording is blocked or routed into continuation/fix loops.",
614
+ "Active autonomy tests and release checks pass."
615
+ ],
616
+ "loopAction": "Finish active autonomy enforcement and regression tests before release.",
617
+ "proof": {
618
+ "implementationEvidence": [
619
+ "src/runtime/active-autonomy-core.js implements the canonical AUTO-CONTINUE/ASK contract, closed ASK list, passive handoff detector, and completion-loop rules.",
620
+ "scripts/active-autonomy-hook.mjs implements a real Codex hook bridge that blocks passive Stop handoffs and appends .ma/hooks/audit.log entries.",
621
+ ".codex/hooks.json registers the active-autonomy hook for Stop and UserPromptSubmit events.",
622
+ "docs/prompt-guidance-contract.md, docs/prompt-guidance-fragments/active-autonomy-core.md, .codex/prompts, and role prompts carry the anti-passive contract across applicable agents and roles."
623
+ ],
624
+ "verificationEvidence": [
625
+ "test/active-autonomy-contract.test.js verifies prompt-surface coverage, closed AUTO-CONTINUE/ASK rules, passive handoff detection, and Stop hook registration.",
626
+ "printf passive Stop payload into node ./scripts/active-autonomy-hook.mjs returned decision block with stopReason active_autonomy_passive_handoff.",
627
+ "node --test test/active-autonomy-contract.test.js passed after hook registration.",
628
+ "npm run check passed after core implementation changes (Biome checked 117 files).",
629
+ "npm test passed after core implementation changes (30/30 tests).",
630
+ "node bin/ma.js doctor returned READY after runtime artifact validation.",
631
+ "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
632
+ ],
633
+ "productionEvidence": [
634
+ "The active-autonomy hook command produced a real block decision for 'Would you like me to continue?' and wrote an active-autonomy audit entry.",
635
+ "node bin/ma.js status reported active autonomy hook enabled and stall-pattern coverage through runtime-state summary.",
636
+ "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
637
+ "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
638
+ "npm run release:check is the required final production release gate for this issue set."
639
+ ]
640
+ },
641
+ "labels": ["feature", "next-release", "v0.1.13"]
642
+ }
643
+ ]
644
+ }