@jstn-sdk/ma 0.1.13 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/plugins/marketplace.json +0 -0
- package/.codex/agents/Architect.toml +1 -0
- package/.codex/agents/Auditor.toml +1 -0
- package/.codex/agents/Builder.toml +1 -0
- package/.codex/agents/Flow.toml +1 -0
- package/.codex/agents/Sage.toml +1 -0
- package/.codex/agents/Vibe.toml +1 -0
- package/.codex/hooks.json +12 -2
- package/.codex/prompts/enforcement.md +0 -0
- package/.codex/prompts/onboarding.md +6 -1
- package/.codex/prompts/release-rules.md +0 -0
- package/.codex/prompts/skill-contract.md +0 -0
- package/COVERAGE.md +7 -7
- package/DEMO.md +15 -6
- package/LICENSE +0 -0
- package/README.md +126 -793
- package/bin/ma.js +585 -97
- package/data/clone-data.ledger.json +0 -0
- package/data/clone-data.proof.json +0 -0
- package/data/clone-data.rvf +0 -0
- package/docs/README.md +8 -2
- package/docs/autonomous-tasks.md +46 -0
- package/docs/codex-integration.md +16 -0
- package/docs/getting-started.md +28 -4
- package/docs/installed-sdk.md +0 -0
- package/docs/mcp-setup.md +30 -1
- package/docs/qa/{release-issue-gates-0.1.13.json → release-issue-gates-0.14.0.json} +77 -77
- package/docs/qa/release-readiness-0.1.5.md +0 -0
- package/docs/qa/{release-readiness-0.1.13.md → release-readiness-0.14.0.md} +12 -12
- package/docs/quality.md +24 -0
- package/docs/reference/native-engineering-patterns.md +0 -0
- package/docs/reference/native-security-playbooks.md +0 -0
- package/docs/reference/native-source-selection.md +0 -0
- package/docs/reference/native-style-and-deslop.md +0 -0
- package/docs/release-spec.md +27 -14
- package/docs/skills.md +1 -1
- package/index.js +73 -0
- package/mcp/collections.json +0 -0
- package/mcp/fallback.json +0 -0
- package/mcp/local/code-intel.js +179 -41
- package/mcp/local/context.js +180 -0
- package/mcp/local/memory.js +17 -6
- package/mcp/local/playbooks.js +0 -0
- package/mcp/local/quality.js +39 -0
- package/mcp/local/state.js +7 -3
- package/mcp/local/team-run.js +8 -3
- package/mcp/local/trace.js +0 -0
- package/mcp/local-capabilities.json +9 -0
- package/mcp/native-playbooks.json +0 -0
- package/mcp/servers.json +0 -0
- package/package.json +26 -4
- package/plugins/meta-architect/.app.json +1 -1
- package/plugins/meta-architect/.codex-plugin/plugin.json +1 -1
- package/plugins/meta-architect/.mcp.json +1 -1
- package/plugins/meta-architect/README.md +2 -2
- package/plugins/meta-architect/obsidian/main.js +137 -4
- package/plugins/meta-architect/obsidian/manifest.json +1 -1
- package/plugins/meta-architect/obsidian/styles.css +0 -0
- package/plugins/meta-architect/skills/align/SKILL.md +0 -0
- package/plugins/meta-architect/skills/align/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/align/references/shared-language.md +0 -0
- package/plugins/meta-architect/skills/arch/SKILL.md +0 -0
- package/plugins/meta-architect/skills/arch/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/build/SKILL.md +0 -0
- package/plugins/meta-architect/skills/build/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/cleanup/SKILL.md +0 -0
- package/plugins/meta-architect/skills/cleanup/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/cleanup/references/style-and-deslop.md +0 -0
- package/plugins/meta-architect/skills/diagnose/SKILL.md +0 -0
- package/plugins/meta-architect/skills/diagnose/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/flow/SKILL.md +0 -0
- package/plugins/meta-architect/skills/flow/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/maestro/SKILL.md +0 -0
- package/plugins/meta-architect/skills/maestro/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/maestro/references/core-release-rules.md +0 -0
- package/plugins/meta-architect/skills/maestro/references/native-ingest-map.md +0 -0
- package/plugins/meta-architect/skills/sage/SKILL.md +0 -0
- package/plugins/meta-architect/skills/sage/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/sage/references/source-selection.md +0 -0
- package/plugins/meta-architect/skills/tdd/SKILL.md +0 -0
- package/plugins/meta-architect/skills/tdd/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/vet/SKILL.md +0 -0
- package/plugins/meta-architect/skills/vet/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/vet/references/security-playbooks.md +0 -0
- package/plugins/meta-architect/skills/vibe/SKILL.md +0 -0
- package/plugins/meta-architect/skills/vibe/agents/openai.yaml +0 -0
- package/schemas/autonomous-task-queue.schema.json +56 -0
- package/schemas/handoff-packet.schema.json +36 -0
- package/schemas/setup-receipt.schema.json +28 -0
- package/schemas/skill-frontmatter.schema.json +20 -0
- package/schemas/support-bundle.schema.json +37 -0
- package/schemas/task-contract.schema.json +31 -0
- package/scripts/active-autonomy-hook.mjs +141 -11
- package/scripts/biome-staged.js +0 -0
- package/scripts/build-linux-packages.mjs +7 -3
- package/scripts/cleanup-test-fixtures.sh +55 -0
- package/scripts/context-hydration-hook.mjs +89 -0
- package/scripts/demo-smoke.js +285 -0
- package/scripts/doctor.js +10 -8
- package/scripts/install.sh +33 -4
- package/scripts/install.sh.sha256 +1 -0
- package/scripts/linux-package-lib.mjs +0 -0
- package/scripts/linux-package-smoke.mjs +2 -2
- package/scripts/package-size-check.mjs +26 -0
- package/scripts/plugin-sync.js +83 -17
- package/scripts/postinstall.js +17 -10
- package/scripts/prepack.js +9 -0
- package/scripts/ralph/prompt.md +0 -0
- package/scripts/release-metadata.js +0 -0
- package/scripts/release-sync.js +72 -7
- package/scripts/release-verify.js +100 -7
- package/scripts/setup-npmrc.js +48 -23
- package/scripts/skills-install.js +9 -2
- package/scripts/skills-manifest.js +2 -21
- package/scripts/skills-pack.js +2 -2
- package/scripts/skills-validate.js +5 -55
- package/skills/align/SKILL.md +0 -0
- package/skills/align/agents/openai.yaml +0 -0
- package/skills/align/references/shared-language.md +0 -0
- package/skills/arch/SKILL.md +0 -0
- package/skills/arch/agents/openai.yaml +0 -0
- package/skills/build/SKILL.md +0 -0
- package/skills/build/agents/openai.yaml +0 -0
- package/skills/cleanup/SKILL.md +0 -0
- package/skills/cleanup/agents/openai.yaml +0 -0
- package/skills/cleanup/references/style-and-deslop.md +0 -0
- package/skills/diagnose/SKILL.md +0 -0
- package/skills/diagnose/agents/openai.yaml +0 -0
- package/skills/flow/SKILL.md +0 -0
- package/skills/flow/agents/openai.yaml +0 -0
- package/skills/index.json +0 -0
- package/skills/maestro/SKILL.md +0 -0
- package/skills/maestro/agents/openai.yaml +0 -0
- package/skills/maestro/references/core-release-rules.md +0 -0
- package/skills/maestro/references/native-ingest-map.md +0 -0
- package/skills/sage/SKILL.md +0 -0
- package/skills/sage/agents/openai.yaml +0 -0
- package/skills/sage/references/source-selection.md +0 -0
- package/skills/tdd/SKILL.md +0 -0
- package/skills/tdd/agents/openai.yaml +0 -0
- package/skills/vet/SKILL.md +0 -0
- package/skills/vet/agents/openai.yaml +0 -0
- package/skills/vet/references/security-playbooks.md +0 -0
- package/skills/vibe/SKILL.md +0 -0
- package/skills/vibe/agents/openai.yaml +0 -0
- package/sprint/00-idea.md +0 -0
- package/sprint/01-architecture.md +0 -0
- package/sprint/02-oss-evidence.md +0 -0
- package/sprint/03-logic.md +0 -0
- package/sprint/04-security.md +0 -0
- package/sprint/05-dx-ux.md +0 -0
- package/sprint/06-build-plan.md +0 -0
- package/sprint/07-release.md +0 -0
- package/src/agents.js +279 -0
- package/src/bootstrap.js +252 -63
- package/src/build-gate.js +0 -0
- package/src/codex-app-server.js +291 -0
- package/src/decision-log.js +0 -0
- package/src/fs-utils.js +175 -4
- package/src/launcher.js +24 -21
- package/src/mcp-config.js +9 -1
- package/src/mcp-live-client.js +140 -7
- package/src/paths.js +6 -1
- package/src/policy.js +2 -2
- package/src/prelaunch.js +189 -0
- package/src/quality/ai-quality-orchestrator.js +328 -0
- package/src/release-issue-gates.js +62 -0
- package/src/release-operations.js +62 -0
- package/src/release-state.js +0 -0
- package/src/runtime/active-autonomy-core.js +0 -0
- package/src/runtime/agent-compat.js +31 -0
- package/src/runtime/alignment-sentinel.js +0 -0
- package/src/runtime/architect-review.js +248 -10
- package/src/runtime/autonomous-tasks.js +408 -0
- package/src/runtime/build-readiness.js +0 -0
- package/src/runtime/code-graph-rehearse.js +0 -0
- package/src/runtime/codeburn-core.js +112 -0
- package/src/runtime/context-authority.js +40 -0
- package/src/runtime/context-economy-core.js +40 -0
- package/src/runtime/continuity-graph.js +201 -0
- package/src/runtime/continuity-notes.js +71 -26
- package/src/runtime/core-source-ingest.js +0 -0
- package/src/runtime/detached-provider.js +82 -14
- package/src/runtime/doctor-report.js +18 -0
- package/src/runtime/environment-awareness-core.js +0 -0
- package/src/runtime/exposure-catalog.js +0 -0
- package/src/runtime/graphify-core.js +167 -0
- package/src/runtime/guidance-stack.js +9 -2
- package/src/runtime/handoff-packets.js +92 -0
- package/src/runtime/headroom-core.js +104 -0
- package/src/runtime/helper-orchestration-core.js +0 -0
- package/src/runtime/hook-profiles.js +20 -0
- package/src/runtime/learning-loop-core.js +110 -4
- package/src/runtime/live-agent-verification.js +122 -0
- package/src/runtime/maestro-events.js +0 -0
- package/src/runtime/maestro-manager.js +0 -0
- package/src/runtime/maestro-output.js +58 -0
- package/src/runtime/maestro-state.js +0 -0
- package/src/runtime/managed-markdown.js +29 -0
- package/src/runtime/mcp-authority.js +147 -0
- package/src/runtime/mcp-policy.js +0 -0
- package/src/runtime/obsidian-integration-core.js +255 -17
- package/src/runtime/obsidian-plugin-bridge.js +344 -38
- package/src/runtime/orchestrator.js +0 -0
- package/src/runtime/pi-maestro-core.js +89 -0
- package/src/runtime/preferences.js +79 -0
- package/src/runtime/project-context.js +636 -0
- package/src/runtime/prompt-strategy-core.js +0 -0
- package/src/runtime/quorum-review.js +0 -0
- package/src/runtime/ralph-execution-core.js +0 -0
- package/src/runtime/redaction-gateway.js +218 -19
- package/src/runtime/runtime-state.js +94 -2
- package/src/runtime/schema-migrations.js +162 -0
- package/src/runtime/semantic-recording-core.js +0 -0
- package/src/runtime/signal-hooks.js +13 -0
- package/src/runtime/skills-registry-export.js +92 -8
- package/src/runtime/startup-path.js +0 -0
- package/src/runtime/task-contracts.js +83 -0
- package/src/runtime/universal-plugin-broker-core.js +373 -50
- package/src/runtime/workspace-intelligence-runtime.js +0 -0
- package/src/runtime/workspace-virtualizer.js +0 -0
- package/src/runtime/workspaces.js +0 -0
- package/src/runtime-artifacts.js +0 -0
- package/src/setup-lifecycle.js +359 -0
- package/src/skill-frontmatter.js +78 -0
- package/src/skill-installer.js +226 -71
- package/src/skills.js +297 -19
- package/src/state-sync.js +0 -0
- package/src/test-fixtures.js +543 -0
- package/src/tui/grid.js +67 -0
- package/src/tui/status-grid.js +23 -0
- package/support-bundle.json +114 -0
- package/templates/AGENTS.md +6 -2
- package/templates/catalog-manifest.json +0 -0
- package/templates/model-instructions/core.md +0 -0
- package/templates/model-instructions/release.md +0 -0
- package/templates/model-instructions/security.md +0 -0
- package/templates/quality/ai-quality-rules.yml +37 -0
- package/docs/assets/image/Screenshot(1).png +0 -0
- package/docs/assets/image/Screenshot(2).png +0 -0
- package/docs/assets/image/Screenshot(3).png +0 -0
- package/docs/assets/image/Screenshot(4).png +0 -0
- package/docs/assets/image/Screenshot(5).png +0 -0
- package/docs/assets/image/Screenshot(6).png +0 -0
- package/docs/assets/image/Screenshot(7).png +0 -0
- package/docs/assets/image/Screenshot(8).png +0 -0
- package/docs/assets/image/Screenshot(9).png +0 -0
- package/docs/assets/meta-architect-logo.png +0 -0
- package/docs/assets/meta-architect-logo.svg +0 -8
- package/docs/onboarding.md +0 -81
- package/docs/prompt-guidance-contract.md +0 -17
- package/docs/prompt-guidance-fragments/active-autonomy-core.md +0 -7
- package/docs/skills-publishing.md +0 -255
|
File without changes
|
|
File without changes
|
package/data/clone-data.rvf
CHANGED
|
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.
|
|
26
|
-
- [Release Issue Gates 0.
|
|
31
|
+
- [Release Readiness 0.14.0](./qa/release-readiness-0.14.0.md)
|
|
32
|
+
- [Release Issue Gates 0.14.0](./qa/release-issue-gates-0.14.0.json)
|
|
27
33
|
|
|
28
34
|
## Repo structure references
|
|
29
35
|
|
|
@@ -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
|
+
```
|
package/docs/getting-started.md
CHANGED
|
@@ -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 -
|
|
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. Package postinstall supports `MA_SKIP_AUTO_INSTALL=1`,
|
|
37
|
+
`MA_SKIP_SKILLS=1`, and `MA_POSTINSTALL_DRY_RUN=1`.
|
|
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.
|
|
114
|
+
8. Delivery plan for v0.14.0
|
|
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.
|
|
313
|
+
ma idea "Prepare Meta-Architect v0.14.0 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.
|
|
498
|
+
ma idea "Prepare Meta-Architect v0.14.0 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'
|
|
@@ -508,6 +527,11 @@ ma merge feature/ui development
|
|
|
508
527
|
ma release development prod
|
|
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
536
|
- merge only succeeds for `feature/* -> development`
|
|
513
537
|
- release only succeeds for `development|release/* -> prod`
|
package/docs/installed-sdk.md
CHANGED
|
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.
|
|
4
|
-
"releaseTag": "v0.
|
|
3
|
+
"releaseVersion": "0.14.0",
|
|
4
|
+
"releaseTag": "v0.14.0",
|
|
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.
|
|
17
|
-
"releaseTag": "v0.
|
|
18
|
-
"milestone": "v0.
|
|
16
|
+
"releaseVersion": "0.14.0",
|
|
17
|
+
"releaseTag": "v0.14.0",
|
|
18
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
29
|
+
"docs/qa/release-readiness-0.14.0.md links this gate as the canonical v0.14.0 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.
|
|
33
|
+
"node-based validateReleaseIssueGates(document, { version: 0.14.0 }) 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.
|
|
48
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
55
|
-
"releaseTag": "v0.
|
|
56
|
-
"milestone": "v0.
|
|
54
|
+
"releaseVersion": "0.14.0",
|
|
55
|
+
"releaseTag": "v0.14.0",
|
|
56
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
86
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
93
|
-
"releaseTag": "v0.
|
|
94
|
-
"milestone": "v0.
|
|
92
|
+
"releaseVersion": "0.14.0",
|
|
93
|
+
"releaseTag": "v0.14.0",
|
|
94
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
122
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
129
|
-
"releaseTag": "v0.
|
|
130
|
-
"milestone": "v0.
|
|
128
|
+
"releaseVersion": "0.14.0",
|
|
129
|
+
"releaseTag": "v0.14.0",
|
|
130
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
160
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
167
|
-
"releaseTag": "v0.
|
|
168
|
-
"milestone": "v0.
|
|
166
|
+
"releaseVersion": "0.14.0",
|
|
167
|
+
"releaseTag": "v0.14.0",
|
|
168
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
195
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
202
|
-
"releaseTag": "v0.
|
|
203
|
-
"milestone": "v0.
|
|
201
|
+
"releaseVersion": "0.14.0",
|
|
202
|
+
"releaseTag": "v0.14.0",
|
|
203
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
230
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
237
|
-
"releaseTag": "v0.
|
|
238
|
-
"milestone": "v0.
|
|
236
|
+
"releaseVersion": "0.14.0",
|
|
237
|
+
"releaseTag": "v0.14.0",
|
|
238
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
265
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
272
|
-
"releaseTag": "v0.
|
|
273
|
-
"milestone": "v0.
|
|
271
|
+
"releaseVersion": "0.14.0",
|
|
272
|
+
"releaseTag": "v0.14.0",
|
|
273
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
300
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
307
|
-
"releaseTag": "v0.
|
|
308
|
-
"milestone": "v0.
|
|
306
|
+
"releaseVersion": "0.14.0",
|
|
307
|
+
"releaseTag": "v0.14.0",
|
|
308
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
335
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
342
|
-
"releaseTag": "v0.
|
|
343
|
-
"milestone": "v0.
|
|
341
|
+
"releaseVersion": "0.14.0",
|
|
342
|
+
"releaseTag": "v0.14.0",
|
|
343
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
370
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
377
|
-
"releaseTag": "v0.
|
|
378
|
-
"milestone": "v0.
|
|
376
|
+
"releaseVersion": "0.14.0",
|
|
377
|
+
"releaseTag": "v0.14.0",
|
|
378
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
393
|
+
"npm run linux:packages:build passed and produced dist/meta-architect_0.14.0_all.deb, dist/meta-architect-0.14.0-1-any.pkg.tar.xz, and dist/meta-architect-0.14.0-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.
|
|
395
|
+
"npm run release:assets passed and validated all v0.14.0 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.
|
|
403
|
-
"dist/meta-architect-0.
|
|
404
|
-
"dist/meta-architect-0.
|
|
402
|
+
"dist/meta-architect_0.14.0_all.deb validated by release:assets at 1889688 bytes.",
|
|
403
|
+
"dist/meta-architect-0.14.0-1-any.pkg.tar.xz validated by release:assets at 1892412 bytes.",
|
|
404
|
+
"dist/meta-architect-0.14.0-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.
|
|
410
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
417
|
-
"releaseTag": "v0.
|
|
418
|
-
"milestone": "v0.
|
|
416
|
+
"releaseVersion": "0.14.0",
|
|
417
|
+
"releaseTag": "v0.14.0",
|
|
418
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
450
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
457
|
-
"releaseTag": "v0.
|
|
458
|
-
"milestone": "v0.
|
|
456
|
+
"releaseVersion": "0.14.0",
|
|
457
|
+
"releaseTag": "v0.14.0",
|
|
458
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
489
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
496
|
-
"releaseTag": "v0.
|
|
497
|
-
"milestone": "v0.
|
|
495
|
+
"releaseVersion": "0.14.0",
|
|
496
|
+
"releaseTag": "v0.14.0",
|
|
497
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
525
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
532
|
-
"releaseTag": "v0.
|
|
533
|
-
"milestone": "v0.
|
|
531
|
+
"releaseVersion": "0.14.0",
|
|
532
|
+
"releaseTag": "v0.14.0",
|
|
533
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
562
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
569
|
-
"releaseTag": "v0.
|
|
570
|
-
"milestone": "v0.
|
|
568
|
+
"releaseVersion": "0.14.0",
|
|
569
|
+
"releaseTag": "v0.14.0",
|
|
570
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
601
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
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.
|
|
608
|
-
"releaseTag": "v0.
|
|
609
|
-
"milestone": "v0.
|
|
607
|
+
"releaseVersion": "0.14.0",
|
|
608
|
+
"releaseTag": "v0.14.0",
|
|
609
|
+
"milestone": "v0.14.0",
|
|
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.
|
|
641
|
+
"labels": ["feature", "next-release", "v0.14.0"]
|
|
642
642
|
}
|
|
643
643
|
]
|
|
644
644
|
}
|
|
File without changes
|