@jstn-sdk/ma 0.1.12 → 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/.codex/agents/Architect.toml +1 -2
- package/.codex/agents/Auditor.toml +1 -2
- package/.codex/agents/Builder.toml +1 -2
- package/.codex/agents/Flow.toml +1 -2
- package/.codex/agents/Sage.toml +1 -2
- package/.codex/agents/Vibe.toml +1 -2
- package/.codex/hooks.json +24 -13
- package/.codex/prompts/enforcement.md +4 -0
- package/.codex/prompts/onboarding.md +6 -1
- package/.codex/prompts/release-rules.md +0 -0
- package/.codex/prompts/skill-contract.md +4 -0
- package/COVERAGE.md +211 -0
- package/DEMO.md +274 -0
- package/LICENSE +0 -0
- package/README.md +132 -656
- package/bin/ma.js +748 -55
- package/data/clone-data.ledger.json +41 -0
- package/data/clone-data.proof.json +50 -0
- package/data/clone-data.rvf +37 -0
- package/docs/README.md +10 -1
- package/docs/autonomous-tasks.md +46 -0
- package/docs/codex-integration.md +16 -0
- package/docs/getting-started.md +62 -22
- package/docs/mcp-setup.md +64 -0
- package/docs/qa/release-issue-gates-0.14.0.json +644 -0
- package/docs/qa/release-readiness-0.1.5.md +1 -1
- package/docs/qa/{release-readiness-0.1.12.md → release-readiness-0.14.0.md} +25 -9
- package/docs/quality.md +24 -0
- package/docs/reference/native-security-playbooks.md +6 -0
- package/docs/reference/native-source-selection.md +6 -0
- package/docs/release-spec.md +39 -10
- package/docs/skills.md +14 -1
- package/index.js +295 -2
- package/mcp/collections.json +23 -6
- 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/quality.js +39 -0
- package/mcp/local/state.js +7 -3
- package/mcp/local/team-run.js +56 -4
- package/mcp/local-capabilities.json +9 -0
- package/mcp/servers.json +24 -0
- package/package.json +29 -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 +8 -1
- package/plugins/meta-architect/obsidian/main.js +534 -0
- package/plugins/meta-architect/obsidian/manifest.json +9 -0
- package/plugins/meta-architect/obsidian/styles.css +7 -0
- package/plugins/meta-architect/skills/arch/SKILL.md +2 -0
- package/plugins/meta-architect/skills/build/SKILL.md +3 -0
- package/plugins/meta-architect/skills/flow/SKILL.md +2 -0
- package/plugins/meta-architect/skills/sage/SKILL.md +2 -0
- package/plugins/meta-architect/skills/sage/references/source-selection.md +8 -0
- package/plugins/meta-architect/skills/vet/SKILL.md +2 -0
- package/plugins/meta-architect/skills/vet/references/security-playbooks.md +7 -0
- package/plugins/meta-architect/skills/vibe/SKILL.md +2 -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 +226 -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 +27 -12
- package/scripts/install.sh +57 -0
- package/scripts/install.sh.sha256 +1 -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 +35 -0
- package/scripts/release-sync.js +72 -7
- package/scripts/release-verify.js +260 -2
- 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/arch/SKILL.md +2 -0
- package/skills/build/SKILL.md +3 -0
- package/skills/flow/SKILL.md +2 -0
- package/skills/index.json +0 -0
- package/skills/sage/SKILL.md +2 -0
- package/skills/sage/references/source-selection.md +8 -0
- package/skills/vet/SKILL.md +2 -0
- package/skills/vet/references/security-playbooks.md +7 -0
- package/skills/vibe/SKILL.md +2 -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 +268 -62
- package/src/build-gate.js +2 -2
- 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 +28 -21
- package/src/mcp-config.js +9 -1
- package/src/mcp-live-client.js +422 -3
- package/src/paths.js +10 -1
- package/src/policy.js +3 -3
- package/src/prelaunch.js +189 -0
- package/src/quality/ai-quality-orchestrator.js +328 -0
- package/src/release-issue-gates.js +252 -0
- package/src/release-operations.js +62 -0
- package/src/release-state.js +0 -0
- package/src/runtime/active-autonomy-core.js +208 -0
- package/src/runtime/agent-compat.js +31 -0
- package/src/runtime/alignment-sentinel.js +165 -0
- package/src/runtime/architect-review.js +326 -0
- package/src/runtime/autonomous-tasks.js +408 -0
- package/src/runtime/build-readiness.js +28 -4
- package/src/runtime/code-graph-rehearse.js +113 -0
- package/src/runtime/codeburn-core.js +112 -0
- package/src/runtime/context-authority.js +40 -0
- package/src/runtime/context-economy-core.js +316 -0
- package/src/runtime/continuity-graph.js +201 -0
- package/src/runtime/continuity-notes.js +71 -26
- package/src/runtime/core-source-ingest.js +379 -0
- package/src/runtime/detached-provider.js +142 -0
- package/src/runtime/doctor-report.js +18 -0
- package/src/runtime/environment-awareness-core.js +460 -0
- package/src/runtime/exposure-catalog.js +276 -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 +307 -0
- package/src/runtime/hook-profiles.js +20 -0
- package/src/runtime/learning-loop-core.js +344 -0
- package/src/runtime/live-agent-verification.js +122 -0
- package/src/runtime/maestro-events.js +18 -0
- package/src/runtime/maestro-manager.js +19 -0
- package/src/runtime/maestro-output.js +58 -0
- package/src/runtime/maestro-state.js +125 -0
- package/src/runtime/managed-markdown.js +29 -0
- package/src/runtime/mcp-authority.js +147 -0
- package/src/runtime/mcp-policy.js +192 -0
- package/src/runtime/obsidian-integration-core.js +1089 -0
- package/src/runtime/obsidian-plugin-bridge.js +1045 -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 +230 -0
- package/src/runtime/quorum-review.js +90 -0
- package/src/runtime/ralph-execution-core.js +217 -0
- package/src/runtime/redaction-gateway.js +373 -0
- package/src/runtime/runtime-state.js +935 -2
- package/src/runtime/schema-migrations.js +162 -0
- package/src/runtime/semantic-recording-core.js +147 -0
- package/src/runtime/signal-hooks.js +28 -0
- package/src/runtime/skills-registry-export.js +754 -0
- package/src/runtime/task-contracts.js +83 -0
- package/src/runtime/universal-plugin-broker-core.js +898 -0
- package/src/runtime/workspace-intelligence-runtime.js +674 -0
- package/src/runtime/workspace-virtualizer.js +102 -0
- package/src/runtime-artifacts.js +225 -62
- 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 +1166 -96
- 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 -65
- package/docs/skills-publishing.md +0 -255
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"bundleVersion": "0.14.0",
|
|
4
|
+
"compatibility": {
|
|
5
|
+
"node": ">=20",
|
|
6
|
+
"managedBy": "@jstn-sdk/ma"
|
|
7
|
+
},
|
|
8
|
+
"assets": [
|
|
9
|
+
{
|
|
10
|
+
"name": "mcp",
|
|
11
|
+
"class": "runtime",
|
|
12
|
+
"source": "mcp",
|
|
13
|
+
"destination": "mcp",
|
|
14
|
+
"type": "directory",
|
|
15
|
+
"required": true
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "sprint-release",
|
|
19
|
+
"class": "guidance",
|
|
20
|
+
"source": "sprint/07-release.md",
|
|
21
|
+
"destination": "sprint/07-release.md",
|
|
22
|
+
"type": "file",
|
|
23
|
+
"required": true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "prompts",
|
|
27
|
+
"class": "guidance",
|
|
28
|
+
"source": ".codex/prompts",
|
|
29
|
+
"destination": "prompts",
|
|
30
|
+
"type": "directory",
|
|
31
|
+
"required": true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "active-autonomy-hook",
|
|
35
|
+
"class": "runtime",
|
|
36
|
+
"source": "scripts/active-autonomy-hook.mjs",
|
|
37
|
+
"destination": "scripts/active-autonomy-hook.mjs",
|
|
38
|
+
"type": "file",
|
|
39
|
+
"required": true
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "skills-install",
|
|
43
|
+
"class": "runtime",
|
|
44
|
+
"source": "scripts/skills-install.js",
|
|
45
|
+
"destination": "scripts/skills-install.js",
|
|
46
|
+
"type": "file",
|
|
47
|
+
"required": true
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "plugin-skills",
|
|
51
|
+
"class": "plugin",
|
|
52
|
+
"source": "skills",
|
|
53
|
+
"destination": "plugins/meta-architect/skills",
|
|
54
|
+
"type": "directory",
|
|
55
|
+
"required": true
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "plugin-manifest",
|
|
59
|
+
"class": "plugin",
|
|
60
|
+
"source": "plugins/meta-architect/.codex-plugin/plugin.json",
|
|
61
|
+
"destination": "plugins/meta-architect/.codex-plugin/plugin.json",
|
|
62
|
+
"type": "file",
|
|
63
|
+
"required": true
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "plugin-app",
|
|
67
|
+
"class": "plugin",
|
|
68
|
+
"source": "plugins/meta-architect/.app.json",
|
|
69
|
+
"destination": "plugins/meta-architect/.app.json",
|
|
70
|
+
"type": "file",
|
|
71
|
+
"required": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "plugin-mcp",
|
|
75
|
+
"class": "plugin",
|
|
76
|
+
"source": "plugins/meta-architect/.mcp.json",
|
|
77
|
+
"destination": "plugins/meta-architect/.mcp.json",
|
|
78
|
+
"type": "file",
|
|
79
|
+
"required": true
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "plugin-obsidian",
|
|
83
|
+
"class": "plugin",
|
|
84
|
+
"source": "plugins/meta-architect/obsidian",
|
|
85
|
+
"destination": "plugins/meta-architect/obsidian",
|
|
86
|
+
"type": "directory",
|
|
87
|
+
"required": true
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "templates",
|
|
91
|
+
"class": "guidance",
|
|
92
|
+
"source": "templates/AGENTS.md",
|
|
93
|
+
"destination": "templates/AGENTS.md",
|
|
94
|
+
"type": "file",
|
|
95
|
+
"required": true
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "docs-readme",
|
|
99
|
+
"class": "documentation",
|
|
100
|
+
"source": "docs/README.md",
|
|
101
|
+
"destination": "docs/README.md",
|
|
102
|
+
"type": "file",
|
|
103
|
+
"required": true
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "docs-reference",
|
|
107
|
+
"class": "documentation",
|
|
108
|
+
"source": "docs/reference",
|
|
109
|
+
"destination": "docs/reference",
|
|
110
|
+
"type": "directory",
|
|
111
|
+
"required": false
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
package/templates/AGENTS.md
CHANGED
|
@@ -17,6 +17,10 @@ The primary trigger surfaces are:
|
|
|
17
17
|
|
|
18
18
|
No implementation should proceed as if it were approved unless the required architecture, evidence, logic, and security gates are satisfied.
|
|
19
19
|
|
|
20
|
+
## External review findings rule
|
|
21
|
+
|
|
22
|
+
Every finding reported by the `chatgpt-codex-connector` must be reviewed, implemented or explicitly resolved with evidence, and re-checked before the change is considered complete. Do not dismiss, skip, or claim resolution for a finding until the affected behavior is verified by the smallest appropriate test, check, or reproduction. A pull request remains unresolved while any connector finding lacks a recorded resolution and fresh verification evidence.
|
|
23
|
+
|
|
20
24
|
## Kernel vs extension model
|
|
21
25
|
|
|
22
26
|
Meta-Architect should be treated as a core system plus extension surfaces:
|
|
@@ -63,8 +67,8 @@ If any required field is missing, red, or unverified, the workflow should stop a
|
|
|
63
67
|
|
|
64
68
|
### Merge and release rule
|
|
65
69
|
|
|
66
|
-
- `feature/*` work merges into `
|
|
67
|
-
- release promotion is allowed only from `
|
|
70
|
+
- `feature/*` work merges into `dev`
|
|
71
|
+
- release promotion is allowed only from `dev` or approved `release/*`
|
|
68
72
|
- no direct `feature/* -> prod`
|
|
69
73
|
|
|
70
74
|
## Evidence rule
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
- id: ai-missing-fetch-timeout
|
|
3
|
+
languages: [javascript, typescript]
|
|
4
|
+
message: Network calls require an AbortController or timeout boundary.
|
|
5
|
+
severity: ERROR
|
|
6
|
+
patterns:
|
|
7
|
+
- pattern: fetch($URL)
|
|
8
|
+
- pattern-not: fetch($URL, {...})
|
|
9
|
+
- id: ai-dynamic-code-execution
|
|
10
|
+
languages: [javascript, typescript]
|
|
11
|
+
message: Dynamic code execution is forbidden.
|
|
12
|
+
severity: ERROR
|
|
13
|
+
patterns:
|
|
14
|
+
- pattern: eval(...)
|
|
15
|
+
- pattern: new Function(...)
|
|
16
|
+
- id: ai-log-injection
|
|
17
|
+
languages: [javascript, typescript]
|
|
18
|
+
message: User-controlled values must be sanitized before logging.
|
|
19
|
+
severity: WARNING
|
|
20
|
+
pattern: console.log(...)
|
|
21
|
+
- id: ai-raw-database-payload
|
|
22
|
+
languages: [javascript, typescript]
|
|
23
|
+
message: Database writes must use an allowlisted payload.
|
|
24
|
+
severity: ERROR
|
|
25
|
+
patterns:
|
|
26
|
+
- pattern: $DB.updateOne(...)
|
|
27
|
+
- pattern: $DB.create(...)
|
|
28
|
+
- id: ai-no-any-types
|
|
29
|
+
languages: [typescript]
|
|
30
|
+
message: Generated TypeScript must not use any.
|
|
31
|
+
severity: ERROR
|
|
32
|
+
pattern: $TYPE: any
|
|
33
|
+
- id: ai-unbounded-timer
|
|
34
|
+
languages: [javascript, typescript]
|
|
35
|
+
message: Timers require lifecycle cleanup.
|
|
36
|
+
severity: WARNING
|
|
37
|
+
pattern: setTimeout(...)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|