@jstn-sdk/ma 0.14.0 → 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/COVERAGE.md +9 -9
- package/DEMO.md +4 -4
- package/README.md +80 -70
- package/bin/ma.js +6 -8
- package/docs/README.md +2 -2
- package/docs/assets/banner.png +0 -0
- package/docs/getting-started.md +9 -9
- package/docs/qa/{release-issue-gates-0.14.0.json → release-issue-gates-0.14.1.json} +77 -77
- package/docs/qa/{release-readiness-0.14.0.md → release-readiness-0.14.1.md} +12 -12
- package/docs/release-spec.md +12 -12
- package/docs/vendor-plugin-publishing.md +49 -0
- package/mcp/local/code-intel.js +9 -3
- package/package.json +12 -3
- 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 +13 -1
- package/plugins/meta-architect/obsidian/manifest.json +1 -1
- package/plugins/meta-architect/skills/maestro/SKILL.md +17 -1
- package/plugins/meta-architect/skills/maestro/references/core-release-rules.md +2 -2
- package/schemas/autonomous-task-queue.schema.json +2 -0
- package/scripts/install.sh +1 -1
- package/scripts/install.sh.sha256 +1 -1
- package/scripts/plugin-build.js +314 -0
- package/scripts/plugin-publish.js +77 -0
- package/scripts/release-sync.js +11 -0
- package/scripts/release-verify.js +35 -4
- package/skills/maestro/SKILL.md +17 -1
- package/skills/maestro/references/core-release-rules.md +2 -2
- package/sprint/07-release.md +2 -2
- package/src/agents.js +4 -2
- package/src/bootstrap.js +20 -2
- package/src/codex-app-server.js +4 -4
- package/src/launcher.js +2 -2
- package/src/mcp-live-client.js +2 -2
- package/src/prelaunch.js +34 -0
- package/src/process-utils.js +62 -0
- package/src/quality/ai-quality-orchestrator.js +2 -2
- package/src/release-operations.js +14 -4
- package/src/runtime/architect-review.js +2 -2
- package/src/runtime/autonomous-tasks.js +220 -43
- package/src/runtime/codeburn-core.js +9 -3
- package/src/runtime/core-source-ingest.js +2 -2
- package/src/runtime/detached-provider.js +17 -8
- package/src/runtime/live-agent-verification.js +2 -2
- package/src/runtime/project-context.js +2 -2
- package/src/runtime/skills-registry-export.js +7 -3
- package/src/skills.js +12 -12
- package/src/test-fixtures.js +4 -4
- package/support-bundle.json +1 -1
- package/scripts/postinstall.js +0 -30
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"releaseVersion": "0.14.
|
|
4
|
-
"releaseTag": "v0.14.
|
|
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.14.
|
|
17
|
-
"releaseTag": "v0.14.
|
|
18
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
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.14.
|
|
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.14.
|
|
55
|
-
"releaseTag": "v0.14.
|
|
56
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
93
|
-
"releaseTag": "v0.14.
|
|
94
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
129
|
-
"releaseTag": "v0.14.
|
|
130
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
167
|
-
"releaseTag": "v0.14.
|
|
168
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
202
|
-
"releaseTag": "v0.14.
|
|
203
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
237
|
-
"releaseTag": "v0.14.
|
|
238
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
272
|
-
"releaseTag": "v0.14.
|
|
273
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
307
|
-
"releaseTag": "v0.14.
|
|
308
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
342
|
-
"releaseTag": "v0.14.
|
|
343
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
377
|
-
"releaseTag": "v0.14.
|
|
378
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
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.14.
|
|
403
|
-
"dist/meta-architect-0.14.
|
|
404
|
-
"dist/meta-architect-0.14.
|
|
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.14.
|
|
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.14.
|
|
417
|
-
"releaseTag": "v0.14.
|
|
418
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
457
|
-
"releaseTag": "v0.14.
|
|
458
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
496
|
-
"releaseTag": "v0.14.
|
|
497
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
532
|
-
"releaseTag": "v0.14.
|
|
533
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
569
|
-
"releaseTag": "v0.14.
|
|
570
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
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.14.
|
|
608
|
-
"releaseTag": "v0.14.
|
|
609
|
-
"milestone": "v0.14.
|
|
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.14.
|
|
641
|
+
"labels": ["feature", "next-release", "v0.14.1"]
|
|
642
642
|
}
|
|
643
643
|
]
|
|
644
644
|
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
# Release Readiness 0.14.
|
|
1
|
+
# Release Readiness 0.14.1
|
|
2
2
|
|
|
3
3
|
## Production bar
|
|
4
4
|
|
|
5
|
-
`v0.14.
|
|
5
|
+
`v0.14.1` is treated as production only when:
|
|
6
6
|
- the package installs cleanly from the canonical public install command
|
|
7
7
|
- the Codex-hosted runtime path works end to end
|
|
8
8
|
- the helper flow remains valid for scripted verification
|
|
9
9
|
- the singular `$maestro` umbrella and helper-skill contract stay coherent
|
|
10
|
-
- release docs, package metadata, and workflows all agree on `0.14.
|
|
10
|
+
- release docs, package metadata, and workflows all agree on `0.14.1`
|
|
11
11
|
|
|
12
12
|
Target release state:
|
|
13
|
-
- npm package: `@jstn-sdk/ma@0.14.
|
|
13
|
+
- npm package: `@jstn-sdk/ma@0.14.1`
|
|
14
14
|
- npm registry state: pending publish
|
|
15
|
-
- publishability note: `0.14.0` is already published, so `0.14.
|
|
16
|
-
- git tag: `v0.14.
|
|
17
|
-
- GitHub release: pending publish for `v0.14.
|
|
15
|
+
- publishability note: `0.14.0` is already published, so `0.14.1` is the next publishable package line
|
|
16
|
+
- git tag: `v0.14.1`
|
|
17
|
+
- GitHub release: pending publish for `v0.14.1`
|
|
18
18
|
|
|
19
19
|
## Production checklist
|
|
20
20
|
|
|
21
21
|
- skills-first product identity: PASS
|
|
22
22
|
- package/plugin identity aligned to `@jstn-sdk/ma`: PASS
|
|
23
|
-
- version/tag alignment `0.14.
|
|
23
|
+
- version/tag alignment `0.14.1` / `v0.14.1`: PASS
|
|
24
24
|
- install/uninstall docs aligned: PASS
|
|
25
25
|
- onboarding is concise and sequential: PASS
|
|
26
26
|
- helper command documented as secondary: PASS
|
|
@@ -36,7 +36,7 @@ Target release state:
|
|
|
36
36
|
- workflow/release/provenance docs aligned: PASS
|
|
37
37
|
- no stale package names remain in tracked repo surfaces: PASS
|
|
38
38
|
- no conflicting CLI-first product story remains in tracked product docs: PASS
|
|
39
|
-
- issue proof gates for `v0.14.
|
|
39
|
+
- issue proof gates for `v0.14.1`: PASS; `release-issue-gates-0.14.1.json` marks issues `#13-#29` passed with implementation, verification, and production evidence, so release verification can enforce the gate artifact instead of blocking on pending issue states
|
|
40
40
|
|
|
41
41
|
## Automated checks run
|
|
42
42
|
|
|
@@ -71,10 +71,10 @@ That should prove:
|
|
|
71
71
|
Issue gate artifact:
|
|
72
72
|
|
|
73
73
|
```text
|
|
74
|
-
docs/qa/release-issue-gates-0.14.
|
|
74
|
+
docs/qa/release-issue-gates-0.14.1.json
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
Every open issue assigned to `v0.14.
|
|
77
|
+
Every open issue assigned to `v0.14.1` must remain in this file until it is production-passed. A passed issue requires:
|
|
78
78
|
- implementation evidence
|
|
79
79
|
- verification evidence
|
|
80
80
|
- production evidence
|
|
@@ -93,7 +93,7 @@ Helper-path validation:
|
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
95
|
ma setup
|
|
96
|
-
ma idea "Harden Meta-Architect v0.14.
|
|
96
|
+
ma idea "Harden Meta-Architect v0.14.1 semantic core with Obsidian vault context, Ralph execution proof, context economy, and package-gated release evidence"
|
|
97
97
|
ma run '$arch'
|
|
98
98
|
ma run '$sage'
|
|
99
99
|
ma run '$flow'
|
package/docs/release-spec.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# v0.14.
|
|
1
|
+
# v0.14.1 Requirements & Rules
|
|
2
2
|
|
|
3
3
|
## Production definition
|
|
4
4
|
|
|
5
|
-
Meta-Architect `v0.14.
|
|
5
|
+
Meta-Architect `v0.14.1` is production only when:
|
|
6
6
|
1. the package/install surface works
|
|
7
7
|
2. the in-session skill workflow from `$arch` through `$build` works
|
|
8
8
|
3. the release evidence matches the actual package and git tag
|
|
9
9
|
|
|
10
|
-
## What `v0.14.
|
|
10
|
+
## What `v0.14.1` must have
|
|
11
11
|
|
|
12
12
|
### 1. Canonical package/runtime path
|
|
13
13
|
|
|
@@ -54,16 +54,16 @@ Canonical state files:
|
|
|
54
54
|
|
|
55
55
|
### 4. Required release evidence
|
|
56
56
|
|
|
57
|
-
- `package.json` version `0.14.
|
|
58
|
-
- git tag `v0.14.
|
|
57
|
+
- `package.json` version `0.14.1`
|
|
58
|
+
- git tag `v0.14.1`
|
|
59
59
|
- `RELEASE.md`
|
|
60
60
|
- `CHANGELOG.md`
|
|
61
|
-
- `docs/qa/release-readiness-0.14.
|
|
62
|
-
- `docs/qa/release-issue-gates-0.14.
|
|
61
|
+
- `docs/qa/release-readiness-0.14.1.md`
|
|
62
|
+
- `docs/qa/release-issue-gates-0.14.1.json`
|
|
63
63
|
- green `npm run release:check`
|
|
64
|
-
- GitHub release asset `meta-architect_0.14.
|
|
65
|
-
- GitHub release asset `meta-architect-0.14.
|
|
66
|
-
- GitHub release asset `meta-architect-0.14.
|
|
64
|
+
- GitHub release asset `meta-architect_0.14.1_all.deb`
|
|
65
|
+
- GitHub release asset `meta-architect-0.14.1-1-any.pkg.tar.xz`
|
|
66
|
+
- GitHub release asset `meta-architect-0.14.1-1.noarch.rpm`
|
|
67
67
|
- green `npm run linux:packages:build`
|
|
68
68
|
- green `npm run linux:packages:smoke`
|
|
69
69
|
- green `npm run release:assets`
|
|
@@ -107,11 +107,11 @@ Canonical state files:
|
|
|
107
107
|
|
|
108
108
|
### 6.2 Issue proof gates
|
|
109
109
|
|
|
110
|
-
Every open next-release issue must be represented in `docs/qa/release-issue-gates-0.14.
|
|
110
|
+
Every open next-release issue must be represented in `docs/qa/release-issue-gates-0.14.1.json`.
|
|
111
111
|
|
|
112
112
|
Production pass rule:
|
|
113
113
|
- issue status must be `passed`
|
|
114
|
-
- issue milestone must match `v0.14.
|
|
114
|
+
- issue milestone must match `v0.14.1`
|
|
115
115
|
- implementation evidence must be present
|
|
116
116
|
- verification evidence must be present
|
|
117
117
|
- production evidence must be present
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Vendor Plugin Publishing
|
|
2
|
+
|
|
3
|
+
The existing `plugins/meta-architect` directory is the only hand-authored plugin source. Build vendor outputs from it:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm run plugin:build -- --targets all --output ./dist/vendor-plugins
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Publishing is explicit and one host at a time. It is a dry run unless `--execute` is supplied:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm run plugin:publish -- --target pi
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Pi consumes the existing `@jstn-sdk/ma` package; no second npm package is created. Claude Code, Cursor, Antigravity, Gemini CLI, OpenCode, Cline, Continue, Goose, and OpenClaw use host-specific Git, marketplace, extension, or workspace distribution flows; `plugin:publish` prepares those native inputs and does not pretend a local npm command publishes them.
|
|
16
|
+
|
|
17
|
+
The builder produces one directory per host. It copies the existing lane skills and adds only the host manifest, rules, context file, or package metadata required by that host. It never creates a second workflow or changes the canonical skills.
|
|
18
|
+
|
|
19
|
+
ChatGPT is not included as a generated local plugin target. ChatGPT
|
|
20
|
+
publication requires a deployed HTTPS MCP backend, authentication, privacy
|
|
21
|
+
materials, and OpenAI review. See [ChatGPT Integration](./chatgpt-integration.md)
|
|
22
|
+
for the exact readiness contract.
|
|
23
|
+
|
|
24
|
+
## Outputs
|
|
25
|
+
|
|
26
|
+
| Target | Output | Mode |
|
|
27
|
+
| --- | --- | --- |
|
|
28
|
+
| `codex` | `.codex-plugin/`, `skills/`, app and MCP metadata | native |
|
|
29
|
+
| `claude-code` | Claude marketplace plus plugin source | native |
|
|
30
|
+
| `cursor` | Cursor marketplace plus plugin source and rules | native |
|
|
31
|
+
| `antigravity` | `plugin.json`, `skills/`, `rules/` | native |
|
|
32
|
+
| `gemini-cli` | `gemini-extension.json`, `GEMINI.md`, `skills/` | native |
|
|
33
|
+
| `opencode` | `.opencode/skills/`, `AGENTS.md` | native |
|
|
34
|
+
| `pi` | `@jstn-sdk/ma` package with `pi.skills` metadata | native |
|
|
35
|
+
| `cline` | `.clinerules`, `.cline/skills/` | native |
|
|
36
|
+
| `openclaw` | workspace `skills/` and `AGENTS.md` | portable |
|
|
37
|
+
| `continue` | `.continue/rules/` and portable skills | portable |
|
|
38
|
+
| `goose` | workspace `skills/` and `AGENTS.md` | portable |
|
|
39
|
+
|
|
40
|
+
Portable means the generated bundle is usable as project context and skills, but this repository does not invent a host runtime plugin or claim marketplace publication. A host-specific publisher still requires the host account, repository, or review process.
|
|
41
|
+
|
|
42
|
+
## Verification
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm test -- test/plugin-build.test.js
|
|
46
|
+
npm run plugin:verify
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Inspect `BUILD-MANIFEST.json` in each output before publishing. It records the generated version, source, support mode, and the host-specific install/publish action.
|
package/mcp/local/code-intel.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { execFile } from "node:child_process";
|
|
2
1
|
import fs from "node:fs/promises";
|
|
3
2
|
import path from "node:path";
|
|
4
3
|
import { promisify } from "node:util";
|
|
5
4
|
import { getRepoRoot } from "../../src/paths.js";
|
|
5
|
+
import { safeExecFile } from "../../src/process-utils.js";
|
|
6
6
|
|
|
7
|
-
const execFileAsync = promisify(
|
|
7
|
+
const execFileAsync = promisify(safeExecFile);
|
|
8
8
|
const MAX_SCAN_BYTES = 1024 * 1024;
|
|
9
9
|
const ignoredDirs = new Set([
|
|
10
10
|
".git",
|
|
@@ -103,7 +103,13 @@ async function listGitFiles(rootDir) {
|
|
|
103
103
|
const { stdout } = await execFileAsync(
|
|
104
104
|
"git",
|
|
105
105
|
["ls-files", "--cached", "--others", "--exclude-standard", "-z"],
|
|
106
|
-
{
|
|
106
|
+
{
|
|
107
|
+
cwd: rootDir,
|
|
108
|
+
encoding: "buffer",
|
|
109
|
+
maxBuffer: 4 * 1024 * 1024,
|
|
110
|
+
timeout: 10_000,
|
|
111
|
+
shell: false,
|
|
112
|
+
},
|
|
107
113
|
);
|
|
108
114
|
return stdout
|
|
109
115
|
.toString("utf8")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jstn-sdk/ma",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Codex-native skills system for architecture, evidence, review, and gated build guidance.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "JustineDevs",
|
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/JustineDevs/meta-architect.git"
|
|
11
11
|
},
|
|
12
|
+
"pi": {
|
|
13
|
+
"skills": [
|
|
14
|
+
"./skills"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
12
17
|
"bugs": {
|
|
13
18
|
"url": "https://github.com/JustineDevs/meta-architect/issues"
|
|
14
19
|
},
|
|
@@ -49,6 +54,8 @@
|
|
|
49
54
|
"docs/quality.md",
|
|
50
55
|
"docs/codex-integration.md",
|
|
51
56
|
"docs/autonomous-tasks.md",
|
|
57
|
+
"docs/vendor-plugin-publishing.md",
|
|
58
|
+
"docs/assets/banner.png",
|
|
52
59
|
"docs/reference/",
|
|
53
60
|
"docs/qa/",
|
|
54
61
|
"data/",
|
|
@@ -71,7 +78,6 @@
|
|
|
71
78
|
"scripts": {
|
|
72
79
|
"prepare": "husky",
|
|
73
80
|
"prepack": "node ./scripts/prepack.js",
|
|
74
|
-
"postinstall": "node ./scripts/postinstall.js",
|
|
75
81
|
"test": "node --test --test-concurrency=1 test/*.test.js",
|
|
76
82
|
"test:disk": "node --test --test-concurrency=1 test/test-fixtures.test.js",
|
|
77
83
|
"fixtures:cleanup": "bash ./scripts/cleanup-test-fixtures.sh",
|
|
@@ -86,13 +92,16 @@
|
|
|
86
92
|
"release:verify": "node ./scripts/release-verify.js",
|
|
87
93
|
"release:assets": "node ./.github/scripts/validate-release-assets.js",
|
|
88
94
|
"release:assets:generate": "node ./.github/scripts/validate-release-assets.js --generate",
|
|
89
|
-
"release:check": "npm run release:verify && npm run skills:manifest && npm run plugin:sync && npm run skills:validate && npm run plugin:verify && npm run skills:pack && npm run check && npm test && npm run pack:inspect",
|
|
95
|
+
"release:check": "npm run release:verify && npm run skills:manifest && npm run plugin:sync && npm run plugin:build:all && npm run skills:validate && npm run plugin:verify && npm run skills:pack && npm run check && npm test && npm run pack:inspect",
|
|
90
96
|
"skills:manifest": "node ./scripts/skills-manifest.js",
|
|
91
97
|
"skills:validate": "node ./scripts/skills-validate.js",
|
|
92
98
|
"skills:install": "node ./scripts/skills-install.js",
|
|
93
99
|
"skills:pack": "node ./scripts/skills-pack.js",
|
|
94
100
|
"plugin:sync": "node ./scripts/plugin-sync.js",
|
|
95
101
|
"plugin:verify": "node ./scripts/plugin-sync.js --check",
|
|
102
|
+
"plugin:build": "node ./scripts/plugin-build.js",
|
|
103
|
+
"plugin:build:all": "node ./scripts/plugin-build.js --targets all --output ./dist/vendor-plugins",
|
|
104
|
+
"plugin:publish": "node ./scripts/plugin-publish.js",
|
|
96
105
|
"pack:inspect": "npm pack --dry-run --ignore-scripts --cache ./.npm-cache",
|
|
97
106
|
"package:size": "node ./scripts/package-size-check.mjs",
|
|
98
107
|
"package:doctor": "node ./scripts/doctor.js",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-architect",
|
|
3
3
|
"displayName": "Meta-Architect",
|
|
4
|
-
"version": "0.14.
|
|
4
|
+
"version": "0.14.1",
|
|
5
5
|
"description": "Programmatic architecture and verified engineering skills for Codex-native workflows.",
|
|
6
6
|
"entry": "./README.md",
|
|
7
7
|
"skillsDir": "./skills"
|