@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.
- 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 +9 -9
- package/DEMO.md +15 -6
- package/LICENSE +0 -0
- package/README.md +127 -784
- package/bin/ma.js +591 -105
- 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/assets/banner.png +0 -0
- package/docs/autonomous-tasks.md +46 -0
- package/docs/codex-integration.md +16 -0
- package/docs/getting-started.md +32 -8
- 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.1.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.1.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/docs/vendor-plugin-publishing.md +49 -0
- package/index.js +73 -0
- package/mcp/collections.json +0 -0
- package/mcp/fallback.json +0 -0
- package/mcp/local/code-intel.js +185 -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 +37 -6
- package/plugins/meta-architect/.app.json +1 -1
- package/plugins/meta-architect/.claude-plugin/plugin.json +12 -0
- package/plugins/meta-architect/.codex-plugin/plugin.json +1 -1
- package/plugins/meta-architect/.mcp.json +1 -1
- package/plugins/meta-architect/README.md +14 -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 +17 -1
- package/plugins/meta-architect/skills/maestro/agents/openai.yaml +0 -0
- package/plugins/meta-architect/skills/maestro/references/core-release-rules.md +2 -2
- 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 +58 -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-build.js +314 -0
- package/scripts/plugin-publish.js +77 -0
- package/scripts/plugin-sync.js +83 -17
- 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 +83 -7
- package/scripts/release-verify.js +131 -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 +17 -1
- package/skills/maestro/agents/openai.yaml +0 -0
- package/skills/maestro/references/core-release-rules.md +2 -2
- 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 +2 -2
- package/src/agents.js +281 -0
- package/src/bootstrap.js +272 -65
- 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 +26 -23
- package/src/mcp-config.js +9 -1
- package/src/mcp-live-client.js +141 -8
- package/src/paths.js +6 -1
- package/src/policy.js +2 -2
- package/src/prelaunch.js +223 -0
- package/src/process-utils.js +62 -0
- package/src/quality/ai-quality-orchestrator.js +328 -0
- package/src/release-issue-gates.js +62 -0
- package/src/release-operations.js +72 -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 +249 -11
- package/src/runtime/autonomous-tasks.js +585 -0
- package/src/runtime/build-readiness.js +0 -0
- package/src/runtime/code-graph-rehearse.js +0 -0
- package/src/runtime/codeburn-core.js +118 -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 +2 -2
- package/src/runtime/detached-provider.js +90 -13
- 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 +96 -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 +309 -31
- 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
- package/scripts/postinstall.js +0 -23
|
File without changes
|
package/.codex/agents/Flow.toml
CHANGED
package/.codex/agents/Sage.toml
CHANGED
package/.codex/agents/Vibe.toml
CHANGED
package/.codex/hooks.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"hooks": {
|
|
3
|
-
"
|
|
3
|
+
"SessionStart": [
|
|
4
4
|
{
|
|
5
5
|
"type": "command",
|
|
6
|
-
"command": "
|
|
6
|
+
"command": "ma hook context-hydration"
|
|
7
7
|
}
|
|
8
8
|
],
|
|
9
9
|
"UserPromptSubmit": [
|
|
10
|
+
{
|
|
11
|
+
"type": "command",
|
|
12
|
+
"command": "ma hook context-hydration"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "command",
|
|
16
|
+
"command": "ma hook active-autonomy"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"Stop": [
|
|
10
20
|
{
|
|
11
21
|
"type": "command",
|
|
12
22
|
"command": "node ./scripts/active-autonomy-hook.mjs"
|
|
File without changes
|
|
@@ -5,6 +5,7 @@ Meta-Architect is a skills-first system for Codex with a strict kernel.
|
|
|
5
5
|
## What is implemented
|
|
6
6
|
|
|
7
7
|
The primary product surface is the in-session skill flow:
|
|
8
|
+
- `$maestro` (the umbrella manager and recommended first step)
|
|
8
9
|
- `$arch`
|
|
9
10
|
- `$sage`
|
|
10
11
|
- `$flow`
|
|
@@ -13,6 +14,10 @@ The primary product surface is the in-session skill flow:
|
|
|
13
14
|
- `$build`
|
|
14
15
|
|
|
15
16
|
Secondary helper commands remain available through:
|
|
17
|
+
- `ma setup`
|
|
18
|
+
- `ma doctor`
|
|
19
|
+
- `ma welcome`
|
|
20
|
+
- `ma context refresh`
|
|
16
21
|
- `ma init`
|
|
17
22
|
- `ma idea`
|
|
18
23
|
- `ma skills`
|
|
@@ -32,7 +37,7 @@ Secondary helper commands remain available through:
|
|
|
32
37
|
2. Read `docs/getting-started.md`
|
|
33
38
|
3. Read `docs/release-spec.md`
|
|
34
39
|
4. Read `docs/skills.md`
|
|
35
|
-
5. Start Codex context if needed, then use `$
|
|
40
|
+
5. Start Codex context if needed, then use `$maestro` to select the next safe lane
|
|
36
41
|
|
|
37
42
|
## What not to do
|
|
38
43
|
|
|
File without changes
|
|
File without changes
|
package/COVERAGE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Meta-Architect Coverage Matrix
|
|
2
2
|
|
|
3
|
-
Target release: `v0.1
|
|
3
|
+
Target release: `v0.14.1`
|
|
4
4
|
Last verified: 2026-06-03
|
|
5
|
-
Package: `@jstn-sdk/ma@0.1
|
|
5
|
+
Package: `@jstn-sdk/ma@0.14.1`
|
|
6
6
|
|
|
7
7
|
This file is the canonical operator-facing coverage map for the current release line.
|
|
8
8
|
It records what MA can prove today through repository tests, runtime artifacts, package dry-runs, and release gates.
|
|
@@ -21,7 +21,7 @@ It records what MA can prove today through repository tests, runtime artifacts,
|
|
|
21
21
|
| Core skill surface | DONE | `skills/`, `skills/index.json`, `npm run skills:validate` |
|
|
22
22
|
| Helper skill surface | DONE | `$align`, `$diagnose`, `$tdd`, `$cleanup` contracts in `skills/`, plugin mirror, and Helper Orchestration Core |
|
|
23
23
|
| Build gate enforcement | DONE | `src/build-gate.js`, `test/build-gate.test.js`, `test/cli-smoke.test.js` |
|
|
24
|
-
| Release issue gates | DONE | `src/release-issue-gates.js`, `docs/qa/release-issue-gates-0.1.
|
|
24
|
+
| Release issue gates | DONE | `src/release-issue-gates.js`, `docs/qa/release-issue-gates-0.14.1.json`, `test/release-issue-gates.test.js` |
|
|
25
25
|
| Live GitMCP probe support | DONE | `src/mcp-live-client.js`, `src/skills.js`, `test/mcp-config.test.js` |
|
|
26
26
|
| MCP policy and exposure control | DONE | `src/runtime/mcp-policy.js`, `src/runtime/exposure-catalog.js`, `test/mcp-policy.test.js`, `test/exposure-catalog.test.js` |
|
|
27
27
|
| Plugin mirror discipline | DONE | `scripts/plugin-sync.js`, `npm run plugin:verify`, package dry-run |
|
|
@@ -105,7 +105,7 @@ Coverage state:
|
|
|
105
105
|
- source skill contracts in `skills/`: DONE
|
|
106
106
|
- generated manifest in `skills/index.json`: DONE
|
|
107
107
|
- plugin-mirrored skill contracts in `plugins/meta-architect/skills/`: DONE
|
|
108
|
-
- installable package skill surface via
|
|
108
|
+
- installable package skill surface via first-launch host selection: DONE
|
|
109
109
|
|
|
110
110
|
## Test coverage actually present
|
|
111
111
|
|
|
@@ -130,7 +130,7 @@ Coverage state:
|
|
|
130
130
|
| `test/obsidian-integration-core.test.js` | vault-context indexing and graph-link behavior |
|
|
131
131
|
| `test/obsidian-plugin-bridge.test.js` | in-app plugin bridge, metadata, queue, frontmatter, attachments, protocol helpers |
|
|
132
132
|
| `test/package-exports.test.js` | public package API exports core runtime capabilities |
|
|
133
|
-
| `test/package-install-smoke.test.js` | packed npm install,
|
|
133
|
+
| `test/package-install-smoke.test.js` | packed npm install, first-launch skill installation, launcher behavior, helper flow |
|
|
134
134
|
| `test/policy.test.js` | merge/release branch policy enforcement |
|
|
135
135
|
| `test/prompt-strategy-core.test.js` | prompt strategy policy and high-risk preservation |
|
|
136
136
|
| `test/quorum-review.test.js` | review vote confidence and minority reports |
|
|
@@ -154,7 +154,7 @@ Current automated verification count:
|
|
|
154
154
|
|
|
155
155
|
| Surface | Status | Mechanism |
|
|
156
156
|
| --- | --- | --- |
|
|
157
|
-
| npm package identity | DONE | `@jstn-sdk/ma@0.1
|
|
157
|
+
| npm package identity | DONE | `@jstn-sdk/ma@0.14.1` |
|
|
158
158
|
| public scoped package config | DONE | `publishConfig.access = public` |
|
|
159
159
|
| package files allowlist | DONE | `package.json > files` |
|
|
160
160
|
| production ignore policy | DONE | `.npmignore` plus `npm pack --dry-run` |
|
|
@@ -176,8 +176,8 @@ Current automated verification count:
|
|
|
176
176
|
| `docs/getting-started.md` onboarding | DONE | source checkout, helper path, gates, runtime artifacts |
|
|
177
177
|
| `docs/skills.md` skill reference | DONE | trigger-by-trigger contract guide |
|
|
178
178
|
| `docs/mcp-setup.md` evidence policy | DONE | GitMCP endpoint semantics and bridge guidance |
|
|
179
|
-
| `docs/release-spec.md` release policy | DONE | `v0.1
|
|
180
|
-
| `docs/qa/release-readiness-0.1.
|
|
179
|
+
| `docs/release-spec.md` release policy | DONE | `v0.14.1` aligned |
|
|
180
|
+
| `docs/qa/release-readiness-0.14.1.md` | DONE | current QA evidence |
|
|
181
181
|
| `scripts/release-verify.js` | DONE | checks install docs, demo doc, issue gates, package metadata, `.npmignore` |
|
|
182
182
|
|
|
183
183
|
## Known limits
|
|
@@ -192,7 +192,7 @@ These are explicit operating limits, not stale gaps:
|
|
|
192
192
|
|
|
193
193
|
## Current truth statement
|
|
194
194
|
|
|
195
|
-
Meta-Architect currently covers the `v0.1
|
|
195
|
+
Meta-Architect currently covers the `v0.14.1` release bar for:
|
|
196
196
|
|
|
197
197
|
- canonical install and launch
|
|
198
198
|
- Codex-hosted runtime entry
|
package/DEMO.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Meta-Architect Demo Guide
|
|
2
2
|
|
|
3
3
|
Last verified: 2026-06-03
|
|
4
|
-
Release line: `v0.1
|
|
4
|
+
Release line: `v0.14.1`
|
|
5
5
|
Package: `@jstn-sdk/ma`
|
|
6
6
|
|
|
7
7
|
This demo uses a real existing project: this Meta-Architect repository.
|
|
@@ -30,7 +30,7 @@ It highlights how MA helps a workspace move from idea and context to gated archi
|
|
|
30
30
|
Recommended POSIX install:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
curl -
|
|
33
|
+
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
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
Canonical npm fallback:
|
|
@@ -96,7 +96,7 @@ Scenario: make this repository release-ready without bypassing architecture, evi
|
|
|
96
96
|
Terminal helper path:
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
ma idea "Prepare Meta-Architect v0.1
|
|
99
|
+
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."
|
|
100
100
|
ma run '$maestro'
|
|
101
101
|
ma status --maestro-view
|
|
102
102
|
```
|
|
@@ -207,6 +207,7 @@ Expected:
|
|
|
207
207
|
## 9. Demo production package proof
|
|
208
208
|
|
|
209
209
|
```bash
|
|
210
|
+
npm run demo:smoke
|
|
210
211
|
node scripts/release-verify.js
|
|
211
212
|
npm run check
|
|
212
213
|
npm test
|
|
@@ -216,14 +217,22 @@ npm pack --dry-run --ignore-scripts --cache ./.npm-cache
|
|
|
216
217
|
Expected package proof:
|
|
217
218
|
|
|
218
219
|
- package name is `@jstn-sdk/ma`
|
|
219
|
-
- version line is `0.1
|
|
220
|
+
- version line is `0.14.1`
|
|
221
|
+
- `npm run demo:smoke` creates a realistic Northstar Logistics workspace and Obsidian vault under `/tmp/ma-real-demo-*`
|
|
222
|
+
- the smoke writes `.ma/evidence/real-demo-smoke-proof.json` in that temporary workspace
|
|
220
223
|
- `DEMO.md` is included
|
|
221
224
|
- `COVERAGE.md` is included
|
|
222
225
|
- `data/clone-data.proof.json`, `data/clone-data.ledger.json`, and `data/clone-data.rvf` are included
|
|
223
|
-
- runtime state such as `.ma
|
|
226
|
+
- runtime state such as canonical `.ma/` (plus legacy `.omx/` orchestration state), `node_modules/`, `test/`, and local caches are excluded
|
|
224
227
|
|
|
225
228
|
## 10. Full release demo
|
|
226
229
|
|
|
230
|
+
For a buyer-facing walkthrough, use the real demo kit:
|
|
231
|
+
|
|
232
|
+
- [Real Demo Runbook](./docs/demo/REAL_DEMO_RUNBOOK.md)
|
|
233
|
+
- [Demo Story](./docs/demo/DEMO_STORY.md)
|
|
234
|
+
- [Prospect Checklist](./docs/demo/PROSPECT_CHECKLIST.md)
|
|
235
|
+
|
|
227
236
|
The strongest single command:
|
|
228
237
|
|
|
229
238
|
```bash
|
|
@@ -243,7 +252,7 @@ What it proves:
|
|
|
243
252
|
|
|
244
253
|
| Surface | Current reality |
|
|
245
254
|
| --- | --- |
|
|
246
|
-
| Release line | `v0.1
|
|
255
|
+
| Release line | `v0.14.1` |
|
|
247
256
|
| Package | `@jstn-sdk/ma` |
|
|
248
257
|
| Public skills | 11 (`maestro`, `arch`, `sage`, `flow`, `vet`, `vibe`, `build`, `align`, `diagnose`, `tdd`, `cleanup`) |
|
|
249
258
|
| Runtime namespace | `.ma/` |
|
package/LICENSE
CHANGED
|
File without changes
|