@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.
Files changed (52) hide show
  1. package/COVERAGE.md +9 -9
  2. package/DEMO.md +4 -4
  3. package/README.md +80 -70
  4. package/bin/ma.js +6 -8
  5. package/docs/README.md +2 -2
  6. package/docs/assets/banner.png +0 -0
  7. package/docs/getting-started.md +9 -9
  8. package/docs/qa/{release-issue-gates-0.14.0.json → release-issue-gates-0.14.1.json} +77 -77
  9. package/docs/qa/{release-readiness-0.14.0.md → release-readiness-0.14.1.md} +12 -12
  10. package/docs/release-spec.md +12 -12
  11. package/docs/vendor-plugin-publishing.md +49 -0
  12. package/mcp/local/code-intel.js +9 -3
  13. package/package.json +12 -3
  14. package/plugins/meta-architect/.app.json +1 -1
  15. package/plugins/meta-architect/.claude-plugin/plugin.json +12 -0
  16. package/plugins/meta-architect/.codex-plugin/plugin.json +1 -1
  17. package/plugins/meta-architect/.mcp.json +1 -1
  18. package/plugins/meta-architect/README.md +13 -1
  19. package/plugins/meta-architect/obsidian/manifest.json +1 -1
  20. package/plugins/meta-architect/skills/maestro/SKILL.md +17 -1
  21. package/plugins/meta-architect/skills/maestro/references/core-release-rules.md +2 -2
  22. package/schemas/autonomous-task-queue.schema.json +2 -0
  23. package/scripts/install.sh +1 -1
  24. package/scripts/install.sh.sha256 +1 -1
  25. package/scripts/plugin-build.js +314 -0
  26. package/scripts/plugin-publish.js +77 -0
  27. package/scripts/release-sync.js +11 -0
  28. package/scripts/release-verify.js +35 -4
  29. package/skills/maestro/SKILL.md +17 -1
  30. package/skills/maestro/references/core-release-rules.md +2 -2
  31. package/sprint/07-release.md +2 -2
  32. package/src/agents.js +4 -2
  33. package/src/bootstrap.js +20 -2
  34. package/src/codex-app-server.js +4 -4
  35. package/src/launcher.js +2 -2
  36. package/src/mcp-live-client.js +2 -2
  37. package/src/prelaunch.js +34 -0
  38. package/src/process-utils.js +62 -0
  39. package/src/quality/ai-quality-orchestrator.js +2 -2
  40. package/src/release-operations.js +14 -4
  41. package/src/runtime/architect-review.js +2 -2
  42. package/src/runtime/autonomous-tasks.js +220 -43
  43. package/src/runtime/codeburn-core.js +9 -3
  44. package/src/runtime/core-source-ingest.js +2 -2
  45. package/src/runtime/detached-provider.js +17 -8
  46. package/src/runtime/live-agent-verification.js +2 -2
  47. package/src/runtime/project-context.js +2 -2
  48. package/src/runtime/skills-registry-export.js +7 -3
  49. package/src/skills.js +12 -12
  50. package/src/test-fixtures.js +4 -4
  51. package/support-bundle.json +1 -1
  52. package/scripts/postinstall.js +0 -30
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "bundleVersion": "0.14.0",
3
+ "bundleVersion": "0.14.1",
4
4
  "compatibility": {
5
5
  "node": ">=20",
6
6
  "managedBy": "@jstn-sdk/ma"
@@ -1,30 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import fs from "node:fs/promises";
4
- import process from "node:process";
5
-
6
- async function main() {
7
- const dryRun = process.env.MA_POSTINSTALL_DRY_RUN === "1";
8
- const skipSkills = process.env.MA_SKIP_SKILLS === "1";
9
- const receiptPath = process.env.MA_POSTINSTALL_RECEIPT;
10
- console.log(
11
- `meta-architect: postinstall skills=${skipSkills ? "disabled" : "enabled"} dry-run=${dryRun ? "yes" : "no"}`,
12
- );
13
- if (dryRun || skipSkills || process.env.MA_SKIP_AUTO_INSTALL === "1") {
14
- console.log("meta-architect: deferred host selection until first interactive launch");
15
- return;
16
- }
17
- console.log("meta-architect: host selection deferred until first interactive launch");
18
- if (receiptPath) {
19
- await fs.writeFile(
20
- receiptPath,
21
- `${JSON.stringify({ schemaVersion: "0.1.0", deferred: true }, null, 2)}\n`,
22
- );
23
- console.log(`meta-architect: receipt ${receiptPath}`);
24
- }
25
- }
26
-
27
- main().catch((error) => {
28
- console.error(`meta-architect: failed to install Codex skills: ${error.message}`);
29
- process.exitCode = 1;
30
- });