@jstn-sdk/ma 0.1.13 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/.agents/plugins/marketplace.json +0 -0
  2. package/.codex/agents/Architect.toml +1 -0
  3. package/.codex/agents/Auditor.toml +1 -0
  4. package/.codex/agents/Builder.toml +1 -0
  5. package/.codex/agents/Flow.toml +1 -0
  6. package/.codex/agents/Sage.toml +1 -0
  7. package/.codex/agents/Vibe.toml +1 -0
  8. package/.codex/hooks.json +12 -2
  9. package/.codex/prompts/enforcement.md +0 -0
  10. package/.codex/prompts/onboarding.md +6 -1
  11. package/.codex/prompts/release-rules.md +0 -0
  12. package/.codex/prompts/skill-contract.md +0 -0
  13. package/COVERAGE.md +9 -9
  14. package/DEMO.md +15 -6
  15. package/LICENSE +0 -0
  16. package/README.md +127 -784
  17. package/bin/ma.js +591 -105
  18. package/data/clone-data.ledger.json +0 -0
  19. package/data/clone-data.proof.json +0 -0
  20. package/data/clone-data.rvf +0 -0
  21. package/docs/README.md +8 -2
  22. package/docs/assets/banner.png +0 -0
  23. package/docs/autonomous-tasks.md +46 -0
  24. package/docs/codex-integration.md +16 -0
  25. package/docs/getting-started.md +32 -8
  26. package/docs/installed-sdk.md +0 -0
  27. package/docs/mcp-setup.md +30 -1
  28. package/docs/qa/{release-issue-gates-0.1.13.json → release-issue-gates-0.14.1.json} +77 -77
  29. package/docs/qa/release-readiness-0.1.5.md +0 -0
  30. package/docs/qa/{release-readiness-0.1.13.md → release-readiness-0.14.1.md} +12 -12
  31. package/docs/quality.md +24 -0
  32. package/docs/reference/native-engineering-patterns.md +0 -0
  33. package/docs/reference/native-security-playbooks.md +0 -0
  34. package/docs/reference/native-source-selection.md +0 -0
  35. package/docs/reference/native-style-and-deslop.md +0 -0
  36. package/docs/release-spec.md +27 -14
  37. package/docs/skills.md +1 -1
  38. package/docs/vendor-plugin-publishing.md +49 -0
  39. package/index.js +73 -0
  40. package/mcp/collections.json +0 -0
  41. package/mcp/fallback.json +0 -0
  42. package/mcp/local/code-intel.js +185 -41
  43. package/mcp/local/context.js +180 -0
  44. package/mcp/local/memory.js +17 -6
  45. package/mcp/local/playbooks.js +0 -0
  46. package/mcp/local/quality.js +39 -0
  47. package/mcp/local/state.js +7 -3
  48. package/mcp/local/team-run.js +8 -3
  49. package/mcp/local/trace.js +0 -0
  50. package/mcp/local-capabilities.json +9 -0
  51. package/mcp/native-playbooks.json +0 -0
  52. package/mcp/servers.json +0 -0
  53. package/package.json +37 -6
  54. package/plugins/meta-architect/.app.json +1 -1
  55. package/plugins/meta-architect/.claude-plugin/plugin.json +12 -0
  56. package/plugins/meta-architect/.codex-plugin/plugin.json +1 -1
  57. package/plugins/meta-architect/.mcp.json +1 -1
  58. package/plugins/meta-architect/README.md +14 -2
  59. package/plugins/meta-architect/obsidian/main.js +137 -4
  60. package/plugins/meta-architect/obsidian/manifest.json +1 -1
  61. package/plugins/meta-architect/obsidian/styles.css +0 -0
  62. package/plugins/meta-architect/skills/align/SKILL.md +0 -0
  63. package/plugins/meta-architect/skills/align/agents/openai.yaml +0 -0
  64. package/plugins/meta-architect/skills/align/references/shared-language.md +0 -0
  65. package/plugins/meta-architect/skills/arch/SKILL.md +0 -0
  66. package/plugins/meta-architect/skills/arch/agents/openai.yaml +0 -0
  67. package/plugins/meta-architect/skills/build/SKILL.md +0 -0
  68. package/plugins/meta-architect/skills/build/agents/openai.yaml +0 -0
  69. package/plugins/meta-architect/skills/cleanup/SKILL.md +0 -0
  70. package/plugins/meta-architect/skills/cleanup/agents/openai.yaml +0 -0
  71. package/plugins/meta-architect/skills/cleanup/references/style-and-deslop.md +0 -0
  72. package/plugins/meta-architect/skills/diagnose/SKILL.md +0 -0
  73. package/plugins/meta-architect/skills/diagnose/agents/openai.yaml +0 -0
  74. package/plugins/meta-architect/skills/flow/SKILL.md +0 -0
  75. package/plugins/meta-architect/skills/flow/agents/openai.yaml +0 -0
  76. package/plugins/meta-architect/skills/maestro/SKILL.md +17 -1
  77. package/plugins/meta-architect/skills/maestro/agents/openai.yaml +0 -0
  78. package/plugins/meta-architect/skills/maestro/references/core-release-rules.md +2 -2
  79. package/plugins/meta-architect/skills/maestro/references/native-ingest-map.md +0 -0
  80. package/plugins/meta-architect/skills/sage/SKILL.md +0 -0
  81. package/plugins/meta-architect/skills/sage/agents/openai.yaml +0 -0
  82. package/plugins/meta-architect/skills/sage/references/source-selection.md +0 -0
  83. package/plugins/meta-architect/skills/tdd/SKILL.md +0 -0
  84. package/plugins/meta-architect/skills/tdd/agents/openai.yaml +0 -0
  85. package/plugins/meta-architect/skills/vet/SKILL.md +0 -0
  86. package/plugins/meta-architect/skills/vet/agents/openai.yaml +0 -0
  87. package/plugins/meta-architect/skills/vet/references/security-playbooks.md +0 -0
  88. package/plugins/meta-architect/skills/vibe/SKILL.md +0 -0
  89. package/plugins/meta-architect/skills/vibe/agents/openai.yaml +0 -0
  90. package/schemas/autonomous-task-queue.schema.json +58 -0
  91. package/schemas/handoff-packet.schema.json +36 -0
  92. package/schemas/setup-receipt.schema.json +28 -0
  93. package/schemas/skill-frontmatter.schema.json +20 -0
  94. package/schemas/support-bundle.schema.json +37 -0
  95. package/schemas/task-contract.schema.json +31 -0
  96. package/scripts/active-autonomy-hook.mjs +141 -11
  97. package/scripts/biome-staged.js +0 -0
  98. package/scripts/build-linux-packages.mjs +7 -3
  99. package/scripts/cleanup-test-fixtures.sh +55 -0
  100. package/scripts/context-hydration-hook.mjs +89 -0
  101. package/scripts/demo-smoke.js +285 -0
  102. package/scripts/doctor.js +10 -8
  103. package/scripts/install.sh +33 -4
  104. package/scripts/install.sh.sha256 +1 -0
  105. package/scripts/linux-package-lib.mjs +0 -0
  106. package/scripts/linux-package-smoke.mjs +2 -2
  107. package/scripts/package-size-check.mjs +26 -0
  108. package/scripts/plugin-build.js +314 -0
  109. package/scripts/plugin-publish.js +77 -0
  110. package/scripts/plugin-sync.js +83 -17
  111. package/scripts/prepack.js +9 -0
  112. package/scripts/ralph/prompt.md +0 -0
  113. package/scripts/release-metadata.js +0 -0
  114. package/scripts/release-sync.js +83 -7
  115. package/scripts/release-verify.js +131 -7
  116. package/scripts/setup-npmrc.js +48 -23
  117. package/scripts/skills-install.js +9 -2
  118. package/scripts/skills-manifest.js +2 -21
  119. package/scripts/skills-pack.js +2 -2
  120. package/scripts/skills-validate.js +5 -55
  121. package/skills/align/SKILL.md +0 -0
  122. package/skills/align/agents/openai.yaml +0 -0
  123. package/skills/align/references/shared-language.md +0 -0
  124. package/skills/arch/SKILL.md +0 -0
  125. package/skills/arch/agents/openai.yaml +0 -0
  126. package/skills/build/SKILL.md +0 -0
  127. package/skills/build/agents/openai.yaml +0 -0
  128. package/skills/cleanup/SKILL.md +0 -0
  129. package/skills/cleanup/agents/openai.yaml +0 -0
  130. package/skills/cleanup/references/style-and-deslop.md +0 -0
  131. package/skills/diagnose/SKILL.md +0 -0
  132. package/skills/diagnose/agents/openai.yaml +0 -0
  133. package/skills/flow/SKILL.md +0 -0
  134. package/skills/flow/agents/openai.yaml +0 -0
  135. package/skills/index.json +0 -0
  136. package/skills/maestro/SKILL.md +17 -1
  137. package/skills/maestro/agents/openai.yaml +0 -0
  138. package/skills/maestro/references/core-release-rules.md +2 -2
  139. package/skills/maestro/references/native-ingest-map.md +0 -0
  140. package/skills/sage/SKILL.md +0 -0
  141. package/skills/sage/agents/openai.yaml +0 -0
  142. package/skills/sage/references/source-selection.md +0 -0
  143. package/skills/tdd/SKILL.md +0 -0
  144. package/skills/tdd/agents/openai.yaml +0 -0
  145. package/skills/vet/SKILL.md +0 -0
  146. package/skills/vet/agents/openai.yaml +0 -0
  147. package/skills/vet/references/security-playbooks.md +0 -0
  148. package/skills/vibe/SKILL.md +0 -0
  149. package/skills/vibe/agents/openai.yaml +0 -0
  150. package/sprint/00-idea.md +0 -0
  151. package/sprint/01-architecture.md +0 -0
  152. package/sprint/02-oss-evidence.md +0 -0
  153. package/sprint/03-logic.md +0 -0
  154. package/sprint/04-security.md +0 -0
  155. package/sprint/05-dx-ux.md +0 -0
  156. package/sprint/06-build-plan.md +0 -0
  157. package/sprint/07-release.md +2 -2
  158. package/src/agents.js +281 -0
  159. package/src/bootstrap.js +272 -65
  160. package/src/build-gate.js +0 -0
  161. package/src/codex-app-server.js +291 -0
  162. package/src/decision-log.js +0 -0
  163. package/src/fs-utils.js +175 -4
  164. package/src/launcher.js +26 -23
  165. package/src/mcp-config.js +9 -1
  166. package/src/mcp-live-client.js +141 -8
  167. package/src/paths.js +6 -1
  168. package/src/policy.js +2 -2
  169. package/src/prelaunch.js +223 -0
  170. package/src/process-utils.js +62 -0
  171. package/src/quality/ai-quality-orchestrator.js +328 -0
  172. package/src/release-issue-gates.js +62 -0
  173. package/src/release-operations.js +72 -0
  174. package/src/release-state.js +0 -0
  175. package/src/runtime/active-autonomy-core.js +0 -0
  176. package/src/runtime/agent-compat.js +31 -0
  177. package/src/runtime/alignment-sentinel.js +0 -0
  178. package/src/runtime/architect-review.js +249 -11
  179. package/src/runtime/autonomous-tasks.js +585 -0
  180. package/src/runtime/build-readiness.js +0 -0
  181. package/src/runtime/code-graph-rehearse.js +0 -0
  182. package/src/runtime/codeburn-core.js +118 -0
  183. package/src/runtime/context-authority.js +40 -0
  184. package/src/runtime/context-economy-core.js +40 -0
  185. package/src/runtime/continuity-graph.js +201 -0
  186. package/src/runtime/continuity-notes.js +71 -26
  187. package/src/runtime/core-source-ingest.js +2 -2
  188. package/src/runtime/detached-provider.js +90 -13
  189. package/src/runtime/doctor-report.js +18 -0
  190. package/src/runtime/environment-awareness-core.js +0 -0
  191. package/src/runtime/exposure-catalog.js +0 -0
  192. package/src/runtime/graphify-core.js +167 -0
  193. package/src/runtime/guidance-stack.js +9 -2
  194. package/src/runtime/handoff-packets.js +92 -0
  195. package/src/runtime/headroom-core.js +104 -0
  196. package/src/runtime/helper-orchestration-core.js +0 -0
  197. package/src/runtime/hook-profiles.js +20 -0
  198. package/src/runtime/learning-loop-core.js +110 -4
  199. package/src/runtime/live-agent-verification.js +122 -0
  200. package/src/runtime/maestro-events.js +0 -0
  201. package/src/runtime/maestro-manager.js +0 -0
  202. package/src/runtime/maestro-output.js +58 -0
  203. package/src/runtime/maestro-state.js +0 -0
  204. package/src/runtime/managed-markdown.js +29 -0
  205. package/src/runtime/mcp-authority.js +147 -0
  206. package/src/runtime/mcp-policy.js +0 -0
  207. package/src/runtime/obsidian-integration-core.js +255 -17
  208. package/src/runtime/obsidian-plugin-bridge.js +344 -38
  209. package/src/runtime/orchestrator.js +0 -0
  210. package/src/runtime/pi-maestro-core.js +89 -0
  211. package/src/runtime/preferences.js +79 -0
  212. package/src/runtime/project-context.js +636 -0
  213. package/src/runtime/prompt-strategy-core.js +0 -0
  214. package/src/runtime/quorum-review.js +0 -0
  215. package/src/runtime/ralph-execution-core.js +0 -0
  216. package/src/runtime/redaction-gateway.js +218 -19
  217. package/src/runtime/runtime-state.js +94 -2
  218. package/src/runtime/schema-migrations.js +162 -0
  219. package/src/runtime/semantic-recording-core.js +0 -0
  220. package/src/runtime/signal-hooks.js +13 -0
  221. package/src/runtime/skills-registry-export.js +96 -8
  222. package/src/runtime/startup-path.js +0 -0
  223. package/src/runtime/task-contracts.js +83 -0
  224. package/src/runtime/universal-plugin-broker-core.js +373 -50
  225. package/src/runtime/workspace-intelligence-runtime.js +0 -0
  226. package/src/runtime/workspace-virtualizer.js +0 -0
  227. package/src/runtime/workspaces.js +0 -0
  228. package/src/runtime-artifacts.js +0 -0
  229. package/src/setup-lifecycle.js +359 -0
  230. package/src/skill-frontmatter.js +78 -0
  231. package/src/skill-installer.js +226 -71
  232. package/src/skills.js +309 -31
  233. package/src/state-sync.js +0 -0
  234. package/src/test-fixtures.js +543 -0
  235. package/src/tui/grid.js +67 -0
  236. package/src/tui/status-grid.js +23 -0
  237. package/support-bundle.json +114 -0
  238. package/templates/AGENTS.md +6 -2
  239. package/templates/catalog-manifest.json +0 -0
  240. package/templates/model-instructions/core.md +0 -0
  241. package/templates/model-instructions/release.md +0 -0
  242. package/templates/model-instructions/security.md +0 -0
  243. package/templates/quality/ai-quality-rules.yml +37 -0
  244. package/docs/assets/image/Screenshot(1).png +0 -0
  245. package/docs/assets/image/Screenshot(2).png +0 -0
  246. package/docs/assets/image/Screenshot(3).png +0 -0
  247. package/docs/assets/image/Screenshot(4).png +0 -0
  248. package/docs/assets/image/Screenshot(5).png +0 -0
  249. package/docs/assets/image/Screenshot(6).png +0 -0
  250. package/docs/assets/image/Screenshot(7).png +0 -0
  251. package/docs/assets/image/Screenshot(8).png +0 -0
  252. package/docs/assets/image/Screenshot(9).png +0 -0
  253. package/docs/assets/meta-architect-logo.png +0 -0
  254. package/docs/assets/meta-architect-logo.svg +0 -8
  255. package/docs/onboarding.md +0 -81
  256. package/docs/prompt-guidance-contract.md +0 -17
  257. package/docs/prompt-guidance-fragments/active-autonomy-core.md +0 -7
  258. package/docs/skills-publishing.md +0 -255
  259. package/scripts/postinstall.js +0 -23
File without changes
File without changes
File without changes
package/docs/README.md CHANGED
@@ -6,11 +6,16 @@ Meta-Architect documentation is organized by operator task.
6
6
 
7
7
  - [Getting Started](./getting-started.md)
8
8
  - [Production Demo Guide](../DEMO.md)
9
+ - [Real Demo Runbook](./demo/REAL_DEMO_RUNBOOK.md)
10
+ - [Demo Story](./demo/DEMO_STORY.md)
11
+ - [Prospect Checklist](./demo/PROSPECT_CHECKLIST.md)
9
12
  - [Coverage Matrix](../COVERAGE.md)
10
13
  - [Release Spec](./release-spec.md)
11
14
  - [Skills Reference](./skills.md)
12
15
  - umbrella, gated lanes, and helper skill distinctions live in the Skills Reference
13
16
  - [Installed Support Bundle](./installed-sdk.md)
17
+ - [Runtime retention](./runtime-retention.md)
18
+ - [External architect review](./architect-review.md)
14
19
 
15
20
  ## Packaging and installation
16
21
 
@@ -18,12 +23,13 @@ Meta-Architect documentation is organized by operator task.
18
23
  - published helper-skill and plugin-mirror expectations live in Skills Publishing
19
24
  - Linux-native distro package expectations live in the Release Spec and release-readiness docs
20
25
  - [MCP Setup](./mcp-setup.md)
26
+ - [Continuity Graph](./continuity-graph.md)
21
27
  - [Plugin Bundle](../plugins/meta-architect/README.md)
22
28
 
23
29
  ## QA and readiness
24
30
 
25
- - [Release Readiness 0.1.13](./qa/release-readiness-0.1.13.md)
26
- - [Release Issue Gates 0.1.13](./qa/release-issue-gates-0.1.13.json)
31
+ - [Release Readiness 0.14.1](./qa/release-readiness-0.14.1.md)
32
+ - [Release Issue Gates 0.14.1](./qa/release-issue-gates-0.14.1.json)
27
33
 
28
34
  ## Repo structure references
29
35
 
Binary file
@@ -0,0 +1,46 @@
1
+ # Autonomous tasks
2
+
3
+ Meta-Architect persists autonomous work in `.ma/tasks/autonomous-queue.json`.
4
+ The queue is separate from the team-run registry and is driven by the existing
5
+ Maestro manager.
6
+
7
+ ## Intake
8
+
9
+ ```bash
10
+ ma task add "Implement the parser" --priority high --label backend
11
+ ma task bulk tasks.json
12
+ cat tasks.yaml | ma task bulk - --format yaml
13
+ ma task list --json
14
+ ```
15
+
16
+ Each task receives a durable contract, status, retry budget, dependencies,
17
+ labels, optional deadline, selected environment capabilities, and evidence.
18
+ Duplicate IDs, malformed contracts, unknown dependencies, and dependency
19
+ cycles are rejected before persistence.
20
+
21
+ ## Execution
22
+
23
+ ```bash
24
+ ma task run --concurrency 3
25
+ ma task run --max-tasks 20 --json
26
+ ma task cancel task-123 "No longer needed"
27
+ ```
28
+
29
+ Independent queued tasks run up to the configured concurrency. Dependencies
30
+ run first; failed, blocked, cancelled, expired, or unsafe tasks do not run
31
+ their downstream work. A failed task is retried up to `maxAttempts`, and the
32
+ queue remains resumable after interruption.
33
+
34
+ Environment discovery records installed project and user capabilities before
35
+ execution. Existing skills are observed rather than claimed or modified, and
36
+ vendor invocation metadata uses the environment's native `$`, `/`, or plain
37
+ command convention when a vendor is selected.
38
+
39
+ Every state transition emits a Maestro event under `.ma/events/` and persists
40
+ the latest queue atomically. Safe local work proceeds automatically; goals
41
+ that imply credentials, destructive changes, publication, production, or
42
+ other external mutations are blocked with an actionable reason.
43
+
44
+ The default runner delegates to the existing Maestro manager. Tests and host
45
+ integrations can inject `execute(task)` into `runAutonomousTasks` without
46
+ changing the queue contract.
@@ -0,0 +1,16 @@
1
+ # Codex integration
2
+
3
+ Meta-Architect drives the installed Codex binary; it does not reproduce Codex's TUI or runtime.
4
+
5
+ `CodexAppServerClient` uses the real stdio JSON-RPC app-server lifecycle: initialize, thread start/resume/fork/list/archive, turn start/interrupt, configuration read/write, and streamed notifications. `runCodexExec()` uses `codex exec --json` for bounded automation, and `generateCodexBindings()` delegates type/schema generation to the running Codex binary.
6
+
7
+ All child processes use argument arrays with `shell: false`, time out, and surface non-zero exits. Goal support remains Codex-owned: prompts may request the installed `create_goal`, `get_goal`, and `update_goal` tools, while Meta-Architect only consumes the resulting notifications.
8
+
9
+ ```js
10
+ import { CodexAppServerClient } from "@jstn-sdk/ma";
11
+
12
+ const codex = new CodexAppServerClient();
13
+ await codex.initialize();
14
+ const thread = await codex.startThread({ ephemeral: true });
15
+ await codex.startTurn({ threadId: thread.id, input: [{ type: "text", text: "Run the quality gate" }] });
16
+ ```
@@ -26,10 +26,15 @@ Recommended CLI install for macOS, Linux, WSL, and Git-Bash:
26
26
 
27
27
  ```bash
28
28
  # One-line install (POSIX shells only; use WSL/Git-Bash on Windows)
29
- curl -fsSL https://cdn.jsdelivr.net/gh/JustineDevs/meta-architect@main/scripts/install.sh | sh
29
+ curl -fsSLo install.sh https://cdn.jsdelivr.net/gh/JustineDevs/meta-architect@latest/scripts/install.sh && curl -fsSLo install.sh.sha256 https://cdn.jsdelivr.net/gh/JustineDevs/meta-architect@latest/scripts/install.sh.sha256 && sed 's#scripts/install.sh#install.sh#' install.sh.sha256 | sha256sum -c - && sh install.sh
30
30
  ```
31
31
 
32
32
  The jsDelivr installer runs `npm i -g @openai/codex@latest @jstn-sdk/ma@latest`, then `ma setup`.
33
+ Use `sh install.sh --dry-run` to inspect the plan, `--no-setup` to skip local
34
+ runtime writes, or `--no-skills` to skip skill/support-bundle writes. The
35
+ installer prints Node/npm/Codex versions and an uninstall command after a real
36
+ install. npm installation is side-effect free; host selection and skill
37
+ installation happen explicitly during the first interactive `ma` launch.
33
38
 
34
39
  Debian-family install:
35
40
 
@@ -51,6 +56,11 @@ sudo dnf install ./meta-architect-<version>-1.noarch.rpm
51
56
 
52
57
  Default supported npm fallback:
53
58
 
59
+ On the first interactive `ma` launch, Meta-Architect detects supported CLI and
60
+ IDE host markers and asks once for the installation scope and targets. The
61
+ selection is recorded in `.ma/prelaunch.json`; CI and piped/non-interactive
62
+ launches skip the prompt and preserve the default Codex bootstrap behavior.
63
+
54
64
  ```bash
55
65
  # Install
56
66
  npm i -g @openai/codex@latest @jstn-sdk/ma@latest
@@ -101,7 +111,7 @@ Required output:
101
111
  5. Data model and storage choices
102
112
  6. Auth/security considerations
103
113
  7. DX/UX considerations
104
- 8. Delivery plan for v0.1.13
114
+ 8. Delivery plan for v0.14.1
105
115
  9. Risks and trade-offs
106
116
  10. Decision log
107
117
  11. Exact next trigger to run after this
@@ -161,6 +171,10 @@ Expected effects:
161
171
  - `mcp/`, `docs/`, and `sprint/` surfaces exist
162
172
  - `ma` opens Codex with the Meta-Architect helper posture when run with no arguments
163
173
 
174
+ `.ma/` is the canonical Meta-Architect project namespace. A legacy `.omx/` directory may
175
+ exist for oh-my-codex orchestration history, but new MA setup and generated guidance never
176
+ use it as runtime state.
177
+
164
178
  Expected output:
165
179
 
166
180
  ```text
@@ -242,6 +256,11 @@ Contract split:
242
256
  - it runs the same environment checks without changing files
243
257
  - it prints the current readiness state and exact next step
244
258
 
259
+ Maintainers use `npm run package:doctor` (also available as
260
+ `npm run release:doctor`) for release and package artifact completeness. It
261
+ does not inspect the installed user environment; both commands use the same
262
+ status vocabulary so their scopes remain explicit.
263
+
245
264
  `ma sdk-path` prints the installed packaged support-bundle root for relevant files such as prompts, MCP files, sprint files, scripts, plugin metadata, and templates.
246
265
 
247
266
  ## 5. Configure MCP / GitMCP
@@ -291,7 +310,7 @@ See [docs/mcp-setup.md](./mcp-setup.md) for endpoint policy and evidence semanti
291
310
  ## 6. Secondary helper flow
292
311
 
293
312
  ```bash
294
- ma idea "Prepare Meta-Architect v0.1.13 for a production package release with real install docs, Obsidian brain-context support, learning-loop reliability, and package proof artifacts."
313
+ ma idea "Prepare Meta-Architect v0.14.1 for a production package release with real install docs, Obsidian brain-context support, learning-loop reliability, and package proof artifacts."
295
314
  ```
296
315
 
297
316
  Expected effects:
@@ -476,7 +495,7 @@ If `$build` fails:
476
495
 
477
496
  ```bash
478
497
  ma setup
479
- ma idea "Prepare Meta-Architect v0.1.13 for a production package release with real install docs, Obsidian brain-context support, learning-loop reliability, and package proof artifacts."
498
+ ma idea "Prepare Meta-Architect v0.14.1 for a production package release with real install docs, Obsidian brain-context support, learning-loop reliability, and package proof artifacts."
480
499
  ma run '$arch'
481
500
  ma run '$sage'
482
501
  ma run '$flow'
@@ -504,13 +523,18 @@ Canonical demo reference:
504
523
  After implementation work is complete:
505
524
 
506
525
  ```bash
507
- ma merge feature/ui development
508
- ma release development prod
526
+ ma merge feature/ui dev
527
+ ma release dev main
509
528
  ```
510
529
 
530
+ These commands record approval by default; they do not execute Git. Use
531
+ `--dry-run` to run preflight and print the exact merge command without changing
532
+ state, or `--execute` to run the checked, explicit merge on the target branch.
533
+ Both modes require a clean worktree and a valid source branch.
534
+
511
535
  Expected effects:
512
- - merge only succeeds for `feature/* -> development`
513
- - release only succeeds for `development|release/* -> prod`
536
+ - merge only succeeds for `feature/* -> dev`
537
+ - release only succeeds for `dev|release/* -> main`
514
538
  - final statuses advance to:
515
539
  - `build_status = DONE`
516
540
  - `merge_status = MERGED_TO_DEVELOPMENT`
File without changes
package/docs/mcp-setup.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # MCP / GitMCP Setup
2
2
 
3
+ The MCP client advertises the installed Meta-Architect version read from the
4
+ package metadata. `ma doctor` reports the same value, while `0.0.0-dev` is used
5
+ only when development metadata is unavailable.
6
+
3
7
  1. Use approved discovery accelerators when you need to find OSS candidates faster than browsing GitHub directly.
4
8
  2. Add repo-specific GitMCP endpoints in `mcp/servers.json` for any project you want to treat as approved evidence.
5
9
  3. Confirm categories in `mcp/collections.json`.
@@ -15,6 +19,7 @@
15
19
  - `team_run`
16
20
  - `code_intel`
17
21
  - `playbooks`
22
+ - `context`
18
23
 
19
24
  `playbooks` is a read-only packaged capability. It does not point at external MCP servers and it does not repurpose `mcp/collections.json`.
20
25
 
@@ -77,9 +82,16 @@ To enable bridge-backed live verification, configure a trusted local bridge comm
77
82
 
78
83
  ```bash
79
84
  export MA_MCP_REMOTE_BRIDGE_CMD="mcp-remote {url}"
85
+ export MA_MCP_REMOTE_BRIDGE_ALLOWLIST="mcp-remote"
80
86
  ```
81
87
 
82
- The `{url}` placeholder is replaced with the exact repo endpoint from `mcp/servers.json`. Use a preinstalled, trusted bridge binary or wrapper; do not depend on automatic package downloads in production verification.
88
+ The `{url}` placeholder is replaced with the exact repo endpoint from `mcp/servers.json`. The command must be explicitly allowlisted by basename or exact path in `MA_MCP_REMOTE_BRIDGE_ALLOWLIST`, or by a project-local `mcp/bridge.json` file such as `{ "allowedCommands": ["mcp-remote"] }`. Use a preinstalled, trusted bridge binary or wrapper; do not depend on automatic package downloads in production verification.
89
+
90
+ Bridge startup, exit, failure, and bounded stderr diagnostics are recorded as
91
+ redacted receipts under `.ma/evidence/mcp-bridge-receipts/`. The bridge receives
92
+ only a minimal environment allowlist, and request timeouts are bounded by
93
+ `MA_MCP_REQUEST_TIMEOUT_MS` (15 seconds by default). `ma doctor` should be used
94
+ to verify the command policy before live evidence collection.
83
95
 
84
96
  When no bridge is configured:
85
97
  - direct-SSE-compatible MCP servers can still verify normally
@@ -110,3 +122,20 @@ The current release intentionally includes both broad discovery lists and core-s
110
122
 
111
123
  Obsidian-derived notes remain `vault_context`.
112
124
  They do not count as `build_evidence` unless `$sage`, `$vet`, or another owning lane promotes a specific claim with source-backed proof.
125
+ ## Local context capability
126
+
127
+ The setup-owned local MCP registry exposes read-only context evidence through
128
+ the `context` capability. Its resources are:
129
+
130
+ - `context://project-index` — source-truth project fingerprint and file metadata.
131
+ - `context://freshness` — incremental refresh status and changed-file evidence.
132
+ - `context://learning` — validated learning-loop state.
133
+ - `context://obsidian` — validated vault index and operation receipts when configured.
134
+ - `context://hooks` — hook configuration and audit evidence.
135
+ - `context://commands` — source-derived command map.
136
+ - `context://agent-brief` — bounded first-read generated context.
137
+ - `context://architecture` — bounded generated architecture map.
138
+
139
+ Every response includes `record_type`, `authority`, `source`, and `available`
140
+ metadata. Missing optional artifacts return an unavailable result; writes are
141
+ not exposed by this capability.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "releaseVersion": "0.1.13",
4
- "releaseTag": "v0.1.13",
3
+ "releaseVersion": "0.14.1",
4
+ "releaseTag": "v0.14.1",
5
5
  "previousVersion": "0.1.12",
6
6
  "passContract": {
7
7
  "allIssuesMustPassProduction": true,
@@ -13,9 +13,9 @@
13
13
  "number": 13,
14
14
  "title": "[feature] Meta tracking: next-release core gated lanes and runtime maturity program",
15
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",
16
+ "releaseVersion": "0.14.1",
17
+ "releaseTag": "v0.14.1",
18
+ "milestone": "v0.14.1",
19
19
  "status": "passed",
20
20
  "requiredProof": [
21
21
  "All child next-release issues are individually passed with evidence.",
@@ -26,11 +26,11 @@
26
26
  "proof": {
27
27
  "implementationEvidence": [
28
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.",
29
+ "docs/qa/release-readiness-0.14.1.md links this gate as the canonical v0.14.1 issue proof artifact.",
30
30
  "src/release-issue-gates.js validates all tracked issue statuses, labels, proof arrays, milestone, release version, and release tag."
31
31
  ],
32
32
  "verificationEvidence": [
33
- "node-based validateReleaseIssueGates(document, { version: 0.1.13 }) returns valid true after this evidence update.",
33
+ "node-based validateReleaseIssueGates(document, { version: 0.14.1 }) returns valid true after this evidence update.",
34
34
  "test/release-issue-gates.test.js covers failing pending gates and passing proof gates.",
35
35
  "npm run check passed after core implementation changes (Biome checked 117 files).",
36
36
  "npm test passed after core implementation changes (30/30 tests).",
@@ -45,15 +45,15 @@
45
45
  "npm run release:check is the required final production release gate for this issue set."
46
46
  ]
47
47
  },
48
- "labels": ["feature", "next-release", "v0.1.13"]
48
+ "labels": ["feature", "next-release", "v0.14.1"]
49
49
  },
50
50
  {
51
51
  "number": 14,
52
52
  "title": "[feature] Reconcile core gated lane contracts and harden the `$build` state loop",
53
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",
54
+ "releaseVersion": "0.14.1",
55
+ "releaseTag": "v0.14.1",
56
+ "milestone": "v0.14.1",
57
57
  "status": "passed",
58
58
  "requiredProof": [
59
59
  "Core gated lane contracts are implemented in repo code and prompts.",
@@ -83,15 +83,15 @@
83
83
  "npm run release:check is the required final production release gate for this issue set."
84
84
  ]
85
85
  },
86
- "labels": ["feature", "next-release", "v0.1.13"]
86
+ "labels": ["feature", "next-release", "v0.14.1"]
87
87
  },
88
88
  {
89
89
  "number": 15,
90
90
  "title": "[feature] Add the operational scratchpad layer and `maestro-state.json` control-plane ledger",
91
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",
92
+ "releaseVersion": "0.14.1",
93
+ "releaseTag": "v0.14.1",
94
+ "milestone": "v0.14.1",
95
95
  "status": "passed",
96
96
  "requiredProof": [
97
97
  "Scratchpad and maestro-state ledger are implemented with safe ownership boundaries.",
@@ -119,15 +119,15 @@
119
119
  "npm run release:check is the required final production release gate for this issue set."
120
120
  ]
121
121
  },
122
- "labels": ["feature", "next-release", "v0.1.13"]
122
+ "labels": ["feature", "next-release", "v0.14.1"]
123
123
  },
124
124
  {
125
125
  "number": 16,
126
126
  "title": "[feature] Add read-only supply-chain exposure intake and build circuit-breaker orchestration",
127
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",
128
+ "releaseVersion": "0.14.1",
129
+ "releaseTag": "v0.14.1",
130
+ "milestone": "v0.14.1",
131
131
  "status": "passed",
132
132
  "requiredProof": [
133
133
  "Supply-chain intake is read-only and cannot mutate release state directly.",
@@ -157,15 +157,15 @@
157
157
  "npm run release:check is the required final production release gate for this issue set."
158
158
  ]
159
159
  },
160
- "labels": ["feature", "next-release", "v0.1.13"]
160
+ "labels": ["feature", "next-release", "v0.14.1"]
161
161
  },
162
162
  {
163
163
  "number": 17,
164
164
  "title": "[feature] Add the Redaction Gateway for provider-bound context sanitization",
165
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",
166
+ "releaseVersion": "0.14.1",
167
+ "releaseTag": "v0.14.1",
168
+ "milestone": "v0.14.1",
169
169
  "status": "passed",
170
170
  "requiredProof": [
171
171
  "Provider-bound context sanitization is implemented.",
@@ -192,15 +192,15 @@
192
192
  "npm run release:check is the required final production release gate for this issue set."
193
193
  ]
194
194
  },
195
- "labels": ["feature", "next-release", "v0.1.13"]
195
+ "labels": ["feature", "next-release", "v0.14.1"]
196
196
  },
197
197
  {
198
198
  "number": 18,
199
199
  "title": "[feature] Add the Alignment Sentinel for runtime drift detection and bounded worker reboot",
200
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",
201
+ "releaseVersion": "0.14.1",
202
+ "releaseTag": "v0.14.1",
203
+ "milestone": "v0.14.1",
204
204
  "status": "passed",
205
205
  "requiredProof": [
206
206
  "Runtime drift detection is implemented.",
@@ -227,15 +227,15 @@
227
227
  "npm run release:check is the required final production release gate for this issue set."
228
228
  ]
229
229
  },
230
- "labels": ["feature", "next-release", "v0.1.13"]
230
+ "labels": ["feature", "next-release", "v0.14.1"]
231
231
  },
232
232
  {
233
233
  "number": 19,
234
234
  "title": "[feature] Add the Synthetic Workspace Virtualizer for low-overhead bounded verification",
235
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",
236
+ "releaseVersion": "0.14.1",
237
+ "releaseTag": "v0.14.1",
238
+ "milestone": "v0.14.1",
239
239
  "status": "passed",
240
240
  "requiredProof": [
241
241
  "Synthetic workspace virtualization is implemented without replacing real release checks.",
@@ -262,15 +262,15 @@
262
262
  "npm run release:check is the required final production release gate for this issue set."
263
263
  ]
264
264
  },
265
- "labels": ["feature", "next-release", "v0.1.13"]
265
+ "labels": ["feature", "next-release", "v0.14.1"]
266
266
  },
267
267
  {
268
268
  "number": 20,
269
269
  "title": "[feature] Add the Quorum Review Engine as an optional high-assurance `$build` substep",
270
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",
271
+ "releaseVersion": "0.14.1",
272
+ "releaseTag": "v0.14.1",
273
+ "milestone": "v0.14.1",
274
274
  "status": "passed",
275
275
  "requiredProof": [
276
276
  "Quorum review is available as an optional high-assurance substep.",
@@ -297,15 +297,15 @@
297
297
  "npm run release:check is the required final production release gate for this issue set."
298
298
  ]
299
299
  },
300
- "labels": ["feature", "next-release", "v0.1.13"]
300
+ "labels": ["feature", "next-release", "v0.14.1"]
301
301
  },
302
302
  {
303
303
  "number": 21,
304
304
  "title": "[feature] Add an incremental code graph and bounded `$rehearse` trajectory mode",
305
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",
306
+ "releaseVersion": "0.14.1",
307
+ "releaseTag": "v0.14.1",
308
+ "milestone": "v0.14.1",
309
309
  "status": "passed",
310
310
  "requiredProof": [
311
311
  "Incremental code graph support is implemented.",
@@ -332,15 +332,15 @@
332
332
  "npm run release:check is the required final production release gate for this issue set."
333
333
  ]
334
334
  },
335
- "labels": ["feature", "next-release", "v0.1.13"]
335
+ "labels": ["feature", "next-release", "v0.14.1"]
336
336
  },
337
337
  {
338
338
  "number": 22,
339
339
  "title": "[feature] Add the multi-agent skills registry and exported compatibility payload contract",
340
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",
341
+ "releaseVersion": "0.14.1",
342
+ "releaseTag": "v0.14.1",
343
+ "milestone": "v0.14.1",
344
344
  "status": "passed",
345
345
  "requiredProof": [
346
346
  "Universal and non-universal agent registry is implemented.",
@@ -367,15 +367,15 @@
367
367
  "npm run release:check is the required final production release gate for this issue set."
368
368
  ]
369
369
  },
370
- "labels": ["feature", "next-release", "v0.1.13"]
370
+ "labels": ["feature", "next-release", "v0.14.1"]
371
371
  },
372
372
  {
373
373
  "number": 23,
374
374
  "title": "[feature] Harden Linux packaging and cross-agent install verification against the real release contract",
375
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",
376
+ "releaseVersion": "0.14.1",
377
+ "releaseTag": "v0.14.1",
378
+ "milestone": "v0.14.1",
379
379
  "status": "passed",
380
380
  "requiredProof": [
381
381
  "Linux package artifacts build for Debian, Arch, and RPM lanes.",
@@ -390,32 +390,32 @@
390
390
  "test/package-install-smoke.test.js and test/package-exports.test.js cover install and package export behavior."
391
391
  ],
392
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.",
393
+ "npm run linux:packages:build passed and produced dist/meta-architect_0.14.1_all.deb, dist/meta-architect-0.14.1-1-any.pkg.tar.xz, and dist/meta-architect-0.14.1-1.noarch.rpm.",
394
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.",
395
+ "npm run release:assets passed and validated all v0.14.1 release artifacts plus dist/linux-package-manifest.json.",
396
396
  "npm run check passed after core implementation changes (Biome checked 117 files).",
397
397
  "npm test passed after core implementation changes (30/30 tests).",
398
398
  "node bin/ma.js doctor returned READY after runtime artifact validation.",
399
399
  "node bin/ma.js status reported Evidence VERIFIED, Logic GREEN, Security GREEN, Experience GREEN, and Build DONE."
400
400
  ],
401
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.",
402
+ "dist/meta-architect_0.14.1_all.deb validated by release:assets at 1889688 bytes.",
403
+ "dist/meta-architect-0.14.1-1-any.pkg.tar.xz validated by release:assets at 1892412 bytes.",
404
+ "dist/meta-architect-0.14.1-1.noarch.rpm validated by release:assets at 1990404 bytes.",
405
405
  "node bin/ma.js status exercised the shipped CLI runtime and reported all release lanes green.",
406
406
  "node bin/ma.js doctor exercised install/runtime readiness checks and returned READY.",
407
407
  "npm run release:check is the required final production release gate for this issue set."
408
408
  ]
409
409
  },
410
- "labels": ["feature", "next-release", "v0.1.13"]
410
+ "labels": ["feature", "next-release", "v0.14.1"]
411
411
  },
412
412
  {
413
413
  "number": 24,
414
414
  "title": "[feature] Add Obsidian Integration Core as default vault/plugin capability",
415
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",
416
+ "releaseVersion": "0.14.1",
417
+ "releaseTag": "v0.14.1",
418
+ "milestone": "v0.14.1",
419
419
  "status": "passed",
420
420
  "requiredProof": [
421
421
  "Obsidian integration is default core, not optional.",
@@ -447,15 +447,15 @@
447
447
  "npm run release:check is the required final production release gate for this issue set."
448
448
  ]
449
449
  },
450
- "labels": ["feature", "next-release", "v0.1.13"]
450
+ "labels": ["feature", "next-release", "v0.14.1"]
451
451
  },
452
452
  {
453
453
  "number": 25,
454
454
  "title": "[feature] Add Context Economy Core as default compression capability",
455
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",
456
+ "releaseVersion": "0.14.1",
457
+ "releaseTag": "v0.14.1",
458
+ "milestone": "v0.14.1",
459
459
  "status": "passed",
460
460
  "requiredProof": [
461
461
  "Context economy is default core across applicable capabilities.",
@@ -486,15 +486,15 @@
486
486
  "npm run release:check is the required final production release gate for this issue set."
487
487
  ]
488
488
  },
489
- "labels": ["feature", "next-release", "v0.1.13"]
489
+ "labels": ["feature", "next-release", "v0.14.1"]
490
490
  },
491
491
  {
492
492
  "number": 26,
493
493
  "title": "[feature] Add Ralph Execution Core as default maestro execution engine",
494
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",
495
+ "releaseVersion": "0.14.1",
496
+ "releaseTag": "v0.14.1",
497
+ "milestone": "v0.14.1",
498
498
  "status": "passed",
499
499
  "requiredProof": [
500
500
  "Ralph execution core is default where autonomous execution applies.",
@@ -522,15 +522,15 @@
522
522
  "npm run release:check is the required final production release gate for this issue set."
523
523
  ]
524
524
  },
525
- "labels": ["feature", "next-release", "v0.1.13"]
525
+ "labels": ["feature", "next-release", "v0.14.1"]
526
526
  },
527
527
  {
528
528
  "number": 27,
529
529
  "title": "[feature] Add Workspace Intelligence Runtime Core semantic composition contracts",
530
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",
531
+ "releaseVersion": "0.14.1",
532
+ "releaseTag": "v0.14.1",
533
+ "milestone": "v0.14.1",
534
534
  "status": "passed",
535
535
  "requiredProof": [
536
536
  "Workspace intelligence runtime contracts are implemented.",
@@ -559,15 +559,15 @@
559
559
  "npm run release:check is the required final production release gate for this issue set."
560
560
  ]
561
561
  },
562
- "labels": ["feature", "next-release", "v0.1.13"]
562
+ "labels": ["feature", "next-release", "v0.14.1"]
563
563
  },
564
564
  {
565
565
  "number": 28,
566
566
  "title": "[feature] Add Prompt Strategy Core as default MA prompt-policy capability",
567
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",
568
+ "releaseVersion": "0.14.1",
569
+ "releaseTag": "v0.14.1",
570
+ "milestone": "v0.14.1",
571
571
  "status": "passed",
572
572
  "requiredProof": [
573
573
  "Prompt strategy is default core across applicable roles and skills.",
@@ -598,15 +598,15 @@
598
598
  "npm run release:check is the required final production release gate for this issue set."
599
599
  ]
600
600
  },
601
- "labels": ["feature", "next-release", "v0.1.13"]
601
+ "labels": ["feature", "next-release", "v0.14.1"]
602
602
  },
603
603
  {
604
604
  "number": 29,
605
605
  "title": "[feature] Add Active Autonomy Contract Core to prevent passive chatbot behavior",
606
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",
607
+ "releaseVersion": "0.14.1",
608
+ "releaseTag": "v0.14.1",
609
+ "milestone": "v0.14.1",
610
610
  "status": "passed",
611
611
  "requiredProof": [
612
612
  "Active autonomy contract is default core across applicable agents and roles.",
@@ -638,7 +638,7 @@
638
638
  "npm run release:check is the required final production release gate for this issue set."
639
639
  ]
640
640
  },
641
- "labels": ["feature", "next-release", "v0.1.13"]
641
+ "labels": ["feature", "next-release", "v0.14.1"]
642
642
  }
643
643
  ]
644
644
  }
File without changes