@jstn-sdk/ma 0.1.11 → 0.1.13
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 +0 -2
- package/.codex/agents/Auditor.toml +0 -2
- package/.codex/agents/Builder.toml +0 -2
- package/.codex/agents/Flow.toml +0 -2
- package/.codex/agents/Sage.toml +0 -2
- package/.codex/agents/Vibe.toml +0 -2
- package/.codex/hooks.json +14 -13
- package/.codex/prompts/enforcement.md +4 -0
- package/.codex/prompts/skill-contract.md +4 -0
- package/COVERAGE.md +211 -0
- package/DEMO.md +265 -0
- package/README.md +287 -37
- package/bin/ma.js +232 -71
- 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 +7 -1
- package/docs/getting-started.md +108 -37
- package/docs/installed-sdk.md +23 -0
- package/docs/mcp-setup.md +65 -1
- package/docs/onboarding.md +18 -2
- package/docs/prompt-guidance-contract.md +17 -0
- package/docs/prompt-guidance-fragments/active-autonomy-core.md +7 -0
- package/docs/qa/release-issue-gates-0.1.13.json +644 -0
- package/docs/qa/release-readiness-0.1.13.md +116 -0
- package/docs/qa/release-readiness-0.1.5.md +1 -1
- package/docs/reference/native-engineering-patterns.md +35 -0
- package/docs/reference/native-security-playbooks.md +27 -0
- package/docs/reference/native-source-selection.md +27 -0
- package/docs/reference/native-style-and-deslop.md +20 -0
- package/docs/release-spec.md +37 -10
- package/docs/skills-publishing.md +25 -1
- package/docs/skills.md +37 -12
- package/index.js +222 -2
- package/mcp/collections.json +23 -6
- package/mcp/local/code-intel.js +113 -0
- package/mcp/local/memory.js +46 -0
- package/mcp/local/playbooks.js +168 -0
- package/mcp/local/state.js +71 -0
- package/mcp/local/team-run.js +113 -0
- package/mcp/local/trace.js +60 -0
- package/mcp/local-capabilities.json +56 -0
- package/mcp/native-playbooks.json +117 -0
- package/mcp/servers.json +34 -0
- package/package.json +8 -2
- package/plugins/meta-architect/.app.json +1 -1
- package/plugins/meta-architect/.codex-plugin/plugin.json +4 -4
- package/plugins/meta-architect/.mcp.json +1 -1
- package/plugins/meta-architect/README.md +34 -1
- package/plugins/meta-architect/obsidian/main.js +401 -0
- package/plugins/meta-architect/obsidian/manifest.json +9 -0
- package/plugins/meta-architect/obsidian/styles.css +7 -0
- package/plugins/meta-architect/skills/align/SKILL.md +24 -0
- package/plugins/meta-architect/skills/align/agents/openai.yaml +4 -0
- package/plugins/meta-architect/skills/align/references/shared-language.md +24 -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/cleanup/SKILL.md +23 -0
- package/plugins/meta-architect/skills/cleanup/agents/openai.yaml +4 -0
- package/plugins/meta-architect/skills/cleanup/references/style-and-deslop.md +18 -0
- package/plugins/meta-architect/skills/diagnose/SKILL.md +24 -0
- package/plugins/meta-architect/skills/diagnose/agents/openai.yaml +4 -0
- package/plugins/meta-architect/skills/flow/SKILL.md +2 -0
- package/plugins/meta-architect/skills/maestro/SKILL.md +36 -3
- package/plugins/meta-architect/skills/maestro/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/maestro/references/native-ingest-map.md +44 -0
- package/plugins/meta-architect/skills/sage/SKILL.md +5 -1
- package/plugins/meta-architect/skills/sage/references/source-selection.md +36 -0
- package/plugins/meta-architect/skills/tdd/SKILL.md +24 -0
- package/plugins/meta-architect/skills/tdd/agents/openai.yaml +4 -0
- package/plugins/meta-architect/skills/vet/SKILL.md +5 -1
- package/plugins/meta-architect/skills/vet/references/security-playbooks.md +30 -0
- package/plugins/meta-architect/skills/vibe/SKILL.md +2 -0
- package/scripts/active-autonomy-hook.mjs +96 -0
- package/scripts/build-linux-packages.mjs +328 -0
- package/scripts/doctor.js +36 -4
- package/scripts/install.sh +28 -0
- package/scripts/linux-package-lib.mjs +40 -0
- package/scripts/linux-package-smoke.mjs +103 -0
- package/scripts/ralph/prompt.md +35 -0
- package/scripts/release-sync.js +13 -6
- package/scripts/release-verify.js +166 -1
- package/skills/align/SKILL.md +24 -0
- package/skills/align/agents/openai.yaml +4 -0
- package/skills/align/references/shared-language.md +24 -0
- package/skills/arch/SKILL.md +2 -0
- package/skills/build/SKILL.md +3 -0
- package/skills/cleanup/SKILL.md +23 -0
- package/skills/cleanup/agents/openai.yaml +4 -0
- package/skills/cleanup/references/style-and-deslop.md +18 -0
- package/skills/diagnose/SKILL.md +24 -0
- package/skills/diagnose/agents/openai.yaml +4 -0
- package/skills/flow/SKILL.md +2 -0
- package/skills/index.json +21 -6
- package/skills/maestro/SKILL.md +36 -3
- package/skills/maestro/agents/openai.yaml +2 -2
- package/skills/maestro/references/native-ingest-map.md +44 -0
- package/skills/sage/SKILL.md +5 -1
- package/skills/sage/references/source-selection.md +36 -0
- package/skills/tdd/SKILL.md +24 -0
- package/skills/tdd/agents/openai.yaml +4 -0
- package/skills/vet/SKILL.md +5 -1
- package/skills/vet/references/security-playbooks.md +30 -0
- package/skills/vibe/SKILL.md +2 -0
- package/src/bootstrap.js +141 -24
- package/src/build-gate.js +2 -2
- package/src/decision-log.js +12 -9
- package/src/launcher.js +4 -0
- package/src/mcp-config.js +130 -8
- package/src/mcp-live-client.js +289 -3
- package/src/paths.js +37 -1
- package/src/policy.js +1 -1
- package/src/release-issue-gates.js +190 -0
- package/src/release-state.js +30 -1
- package/src/runtime/active-autonomy-core.js +208 -0
- package/src/runtime/alignment-sentinel.js +165 -0
- package/src/runtime/architect-review.js +88 -0
- package/src/runtime/build-readiness.js +62 -0
- package/src/runtime/code-graph-rehearse.js +113 -0
- package/src/runtime/context-economy-core.js +276 -0
- package/src/runtime/continuity-notes.js +79 -0
- package/src/runtime/core-source-ingest.js +379 -0
- package/src/runtime/detached-provider.js +74 -0
- package/src/runtime/environment-awareness-core.js +460 -0
- package/src/runtime/exposure-catalog.js +276 -0
- package/src/runtime/guidance-stack.js +42 -0
- package/src/runtime/helper-orchestration-core.js +307 -0
- package/src/runtime/learning-loop-core.js +238 -0
- package/src/runtime/maestro-events.js +18 -0
- package/src/runtime/maestro-manager.js +605 -0
- package/src/runtime/maestro-state.js +125 -0
- package/src/runtime/mcp-policy.js +192 -0
- package/src/runtime/obsidian-integration-core.js +851 -0
- package/src/runtime/obsidian-plugin-bridge.js +739 -0
- package/src/runtime/orchestrator.js +158 -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 +174 -0
- package/src/runtime/runtime-state.js +1223 -0
- package/src/runtime/semantic-recording-core.js +147 -0
- package/src/runtime/signal-hooks.js +67 -0
- package/src/runtime/skills-registry-export.js +670 -0
- package/src/runtime/startup-path.js +14 -0
- package/src/runtime/universal-plugin-broker-core.js +575 -0
- package/src/runtime/workspace-intelligence-runtime.js +674 -0
- package/src/runtime/workspace-virtualizer.js +102 -0
- package/src/runtime/workspaces.js +25 -0
- package/src/runtime-artifacts.js +407 -84
- package/src/skill-installer.js +53 -5
- package/src/skills.js +1454 -78
- package/src/state-sync.js +51 -8
- package/docs/qa/release-readiness-0.1.11.md +0 -79
- package/plugins/meta-architect/skills/meta-architect/SKILL.md +0 -32
- package/plugins/meta-architect/skills/meta-architect/agents/openai.yaml +0 -4
- package/skills/meta-architect/SKILL.md +0 -32
- package/skills/meta-architect/agents/openai.yaml +0 -4
- /package/plugins/meta-architect/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
- /package/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import fs from "node:fs/promises";
|
|
2
|
+
import {
|
|
3
|
+
controlTask,
|
|
4
|
+
getTask,
|
|
5
|
+
getTaskMailboxRoot,
|
|
6
|
+
listMaestroTasks,
|
|
7
|
+
listTasks,
|
|
8
|
+
loadTaskRegistry,
|
|
9
|
+
submitTask,
|
|
10
|
+
} from "../../src/runtime/orchestrator.js";
|
|
11
|
+
|
|
12
|
+
const teamRunResources = [
|
|
13
|
+
"team-run://tasks",
|
|
14
|
+
"team-run://maestro-tasks",
|
|
15
|
+
"team-run://registry",
|
|
16
|
+
"team-run://mailbox",
|
|
17
|
+
];
|
|
18
|
+
const teamRunTools = [
|
|
19
|
+
"team_run.submit_task",
|
|
20
|
+
"team_run.get_status",
|
|
21
|
+
"team_run.list_tasks",
|
|
22
|
+
"team_run.wait_task",
|
|
23
|
+
"team_run.control_task",
|
|
24
|
+
];
|
|
25
|
+
const terminalTaskStatuses = new Set(["done", "blocked", "cancelled"]);
|
|
26
|
+
|
|
27
|
+
export function listTeamRunResources() {
|
|
28
|
+
return [...teamRunResources];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function listTeamRunTools() {
|
|
32
|
+
return [...teamRunTools];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export async function readTeamRunResource(uri) {
|
|
36
|
+
if (uri === "team-run://tasks") {
|
|
37
|
+
return listTasks();
|
|
38
|
+
}
|
|
39
|
+
if (uri === "team-run://maestro-tasks") {
|
|
40
|
+
return listMaestroTasks();
|
|
41
|
+
}
|
|
42
|
+
if (uri === "team-run://registry") {
|
|
43
|
+
return loadTaskRegistry();
|
|
44
|
+
}
|
|
45
|
+
if (uri === "team-run://mailbox") {
|
|
46
|
+
return fs.readdir(getTaskMailboxRoot());
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
throw new Error(`Unknown team_run resource: ${uri}`);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export async function callTeamRunTool(name, args = {}, options = {}) {
|
|
53
|
+
const localOptions = { ...options, actor: "local-capability:team_run" };
|
|
54
|
+
if (name === "team_run.submit_task") {
|
|
55
|
+
return submitTask(args.task ?? args, localOptions);
|
|
56
|
+
}
|
|
57
|
+
if (name === "team_run.get_status") {
|
|
58
|
+
return getTask(args.taskId);
|
|
59
|
+
}
|
|
60
|
+
if (name === "team_run.list_tasks") {
|
|
61
|
+
return args.managerOwner === "$maestro" ? listMaestroTasks() : listTasks();
|
|
62
|
+
}
|
|
63
|
+
if (name === "team_run.wait_task") {
|
|
64
|
+
return waitForTask(args.taskId, args);
|
|
65
|
+
}
|
|
66
|
+
if (name === "team_run.control_task") {
|
|
67
|
+
return controlTask(args.taskId, args.action, localOptions);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
throw new Error(`Unknown team_run tool: ${name}`);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export async function waitForTask(taskId, { timeoutMs = 1_000, pollMs = 50 } = {}) {
|
|
74
|
+
if (typeof taskId !== "string" || taskId.trim() === "") {
|
|
75
|
+
throw new Error("team_run.wait_task requires a taskId");
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const boundedTimeoutMs = Math.max(0, Math.min(Number(timeoutMs) || 0, 30_000));
|
|
79
|
+
const boundedPollMs = Math.max(10, Math.min(Number(pollMs) || 50, 1_000));
|
|
80
|
+
const startedAt = Date.now();
|
|
81
|
+
|
|
82
|
+
while (Date.now() - startedAt <= boundedTimeoutMs) {
|
|
83
|
+
const task = await getTask(taskId);
|
|
84
|
+
if (terminalTaskStatuses.has(task.status)) {
|
|
85
|
+
return {
|
|
86
|
+
record_type: "team_run_wait_result",
|
|
87
|
+
terminal: true,
|
|
88
|
+
timed_out: false,
|
|
89
|
+
task,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (boundedTimeoutMs === 0) {
|
|
94
|
+
break;
|
|
95
|
+
}
|
|
96
|
+
await new Promise((resolve) => setTimeout(resolve, boundedPollMs));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
return {
|
|
100
|
+
record_type: "team_run_wait_result",
|
|
101
|
+
terminal: false,
|
|
102
|
+
timed_out: true,
|
|
103
|
+
task: await getTask(taskId),
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export async function checkTeamRunCapability() {
|
|
108
|
+
const registry = await readTeamRunResource("team-run://registry");
|
|
109
|
+
return {
|
|
110
|
+
ready: Array.isArray(registry.tasks),
|
|
111
|
+
detail: `task registry loaded with ${registry.tasks.length} task(s)`,
|
|
112
|
+
};
|
|
113
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import fs from "node:fs/promises";
|
|
2
|
+
import {
|
|
3
|
+
getActiveManagerRun,
|
|
4
|
+
loadManagerRunRegistryOrDefault,
|
|
5
|
+
} from "../../src/runtime/maestro-manager.js";
|
|
6
|
+
import { getTaskMailboxRoot } from "../../src/runtime/orchestrator.js";
|
|
7
|
+
import { createRuntimeSummary, loadRuntimeSnapshot } from "../../src/runtime/runtime-state.js";
|
|
8
|
+
import {
|
|
9
|
+
loadRuntimeHooksAuditLog,
|
|
10
|
+
loadRuntimeHooksConfig,
|
|
11
|
+
} from "../../src/runtime/signal-hooks.js";
|
|
12
|
+
|
|
13
|
+
const traceResources = [
|
|
14
|
+
"trace://hooks/audit",
|
|
15
|
+
"trace://hooks/config",
|
|
16
|
+
"trace://runtime/summary",
|
|
17
|
+
"trace://manager/runs",
|
|
18
|
+
"trace://manager/active",
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
export function listTraceResources() {
|
|
22
|
+
return [...traceResources];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export async function readTraceResource(uri) {
|
|
26
|
+
if (uri === "trace://hooks/audit") {
|
|
27
|
+
return loadRuntimeHooksAuditLog();
|
|
28
|
+
}
|
|
29
|
+
if (uri === "trace://hooks/config") {
|
|
30
|
+
return loadRuntimeHooksConfig();
|
|
31
|
+
}
|
|
32
|
+
if (uri === "trace://runtime/summary") {
|
|
33
|
+
return createRuntimeSummary(await loadRuntimeSnapshot());
|
|
34
|
+
}
|
|
35
|
+
if (uri === "trace://manager/runs") {
|
|
36
|
+
return loadManagerRunRegistryOrDefault();
|
|
37
|
+
}
|
|
38
|
+
if (uri === "trace://manager/active") {
|
|
39
|
+
const registry = await loadManagerRunRegistryOrDefault();
|
|
40
|
+
return getActiveManagerRun(registry);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
throw new Error(`Unknown trace resource: ${uri}`);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export async function listTraceEvents() {
|
|
47
|
+
return fs.readdir(getTaskMailboxRoot());
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export async function checkTraceCapability() {
|
|
51
|
+
const [audit, summary, managerRuns] = await Promise.all([
|
|
52
|
+
readTraceResource("trace://hooks/audit"),
|
|
53
|
+
readTraceResource("trace://runtime/summary"),
|
|
54
|
+
readTraceResource("trace://manager/runs"),
|
|
55
|
+
]);
|
|
56
|
+
return {
|
|
57
|
+
ready: typeof audit === "string",
|
|
58
|
+
detail: `trace surfaces loaded; pending mailbox proposals=${summary.pendingMailboxCount}; manager runs=${managerRuns.runs.length}`,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "0.1.0",
|
|
3
|
+
"capabilities": [
|
|
4
|
+
{
|
|
5
|
+
"kind": "local-capability",
|
|
6
|
+
"capability": "_state",
|
|
7
|
+
"transport": "inproc",
|
|
8
|
+
"module": "./local/state.js",
|
|
9
|
+
"readinessCheck": "checkStateCapability",
|
|
10
|
+
"seededByBootstrap": true,
|
|
11
|
+
"authorityMode": "proposal-only-write-surface"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"kind": "local-capability",
|
|
15
|
+
"capability": "memory",
|
|
16
|
+
"transport": "inproc",
|
|
17
|
+
"module": "./local/memory.js",
|
|
18
|
+
"readinessCheck": "checkMemoryCapability",
|
|
19
|
+
"seededByBootstrap": true
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"kind": "local-capability",
|
|
23
|
+
"capability": "trace",
|
|
24
|
+
"transport": "inproc",
|
|
25
|
+
"module": "./local/trace.js",
|
|
26
|
+
"readinessCheck": "checkTraceCapability",
|
|
27
|
+
"seededByBootstrap": true,
|
|
28
|
+
"observability": ["runtime-summary", "manager-runs"]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"kind": "local-capability",
|
|
32
|
+
"capability": "team_run",
|
|
33
|
+
"transport": "inproc",
|
|
34
|
+
"module": "./local/team-run.js",
|
|
35
|
+
"readinessCheck": "checkTeamRunCapability",
|
|
36
|
+
"seededByBootstrap": true,
|
|
37
|
+
"authorityMode": "proposal-only-write-surface"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"kind": "local-capability",
|
|
41
|
+
"capability": "code_intel",
|
|
42
|
+
"transport": "inproc",
|
|
43
|
+
"module": "./local/code-intel.js",
|
|
44
|
+
"readinessCheck": "checkCodeIntelCapability",
|
|
45
|
+
"seededByBootstrap": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"kind": "local-capability",
|
|
49
|
+
"capability": "playbooks",
|
|
50
|
+
"transport": "inproc",
|
|
51
|
+
"module": "./local/playbooks.js",
|
|
52
|
+
"readinessCheck": "checkPlaybooksCapability",
|
|
53
|
+
"seededByBootstrap": true
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "0.1.0",
|
|
3
|
+
"packs": [
|
|
4
|
+
{
|
|
5
|
+
"id": "native-ingest-core",
|
|
6
|
+
"title": "Native Ingest Core",
|
|
7
|
+
"summary": "Read-only Meta-Architect playbook pack for support-bundle-aware runtime wiring and native packaging discipline.",
|
|
8
|
+
"readOnly": true,
|
|
9
|
+
"applicableSkills": ["maestro", "sage", "vet", "align", "diagnose", "tdd", "cleanup"],
|
|
10
|
+
"runtimeSurfaces": [
|
|
11
|
+
"mcp/native-playbooks.json",
|
|
12
|
+
"mcp/local/playbooks.js",
|
|
13
|
+
"mcp/local-capabilities.json",
|
|
14
|
+
"docs/installed-sdk.md",
|
|
15
|
+
"docs/mcp-setup.md"
|
|
16
|
+
],
|
|
17
|
+
"patterns": [
|
|
18
|
+
{
|
|
19
|
+
"id": "single-umbrella-routing",
|
|
20
|
+
"title": "Keep maestro singular",
|
|
21
|
+
"guidance": "Route native helper families through maestro while keeping the gated release sequence unchanged.",
|
|
22
|
+
"appliesTo": ["maestro"]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "read-only-local-capability",
|
|
26
|
+
"title": "Expose playbooks read-only",
|
|
27
|
+
"guidance": "Treat playbooks as a packaged local capability with allowlisted resource reads and no mutating local tools.",
|
|
28
|
+
"appliesTo": ["maestro", "align", "diagnose", "tdd", "cleanup"]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "bundle-first-support-assets",
|
|
32
|
+
"title": "Prefer packaged assets",
|
|
33
|
+
"guidance": "Use support-bundle-installed docs and packaged MCP assets instead of source-checkout-relative guessing.",
|
|
34
|
+
"appliesTo": ["maestro", "sage", "vet"]
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"references": [
|
|
38
|
+
{
|
|
39
|
+
"id": "installed-support-bundle",
|
|
40
|
+
"title": "Installed support bundle contract",
|
|
41
|
+
"path": "docs/installed-sdk.md",
|
|
42
|
+
"role": "support-bundle"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "mcp-setup",
|
|
46
|
+
"title": "MCP setup and GitMCP verification",
|
|
47
|
+
"path": "docs/mcp-setup.md",
|
|
48
|
+
"role": "mcp-setup"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "native-engineering-patterns",
|
|
52
|
+
"title": "Native engineering patterns",
|
|
53
|
+
"path": "docs/reference/native-engineering-patterns.md",
|
|
54
|
+
"role": "reference"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "native-style-and-deslop",
|
|
58
|
+
"title": "Native style and deslop",
|
|
59
|
+
"path": "docs/reference/native-style-and-deslop.md",
|
|
60
|
+
"role": "reference"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "native-security-playbooks",
|
|
64
|
+
"title": "Native security playbooks",
|
|
65
|
+
"path": "docs/reference/native-security-playbooks.md",
|
|
66
|
+
"role": "reference"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "native-source-selection",
|
|
70
|
+
"title": "Native source selection",
|
|
71
|
+
"path": "docs/reference/native-source-selection.md",
|
|
72
|
+
"role": "reference"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "maestro-native-ingest-map",
|
|
76
|
+
"title": "Maestro native ingest map",
|
|
77
|
+
"path": "skills/maestro/references/native-ingest-map.md",
|
|
78
|
+
"role": "skill-reference"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "sage-source-selection-pack",
|
|
82
|
+
"title": "Sage source selection pack",
|
|
83
|
+
"path": "skills/sage/references/source-selection.md",
|
|
84
|
+
"role": "skill-reference"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "vet-security-playbooks-pack",
|
|
88
|
+
"title": "Vet security playbooks pack",
|
|
89
|
+
"path": "skills/vet/references/security-playbooks.md",
|
|
90
|
+
"role": "skill-reference"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "align-shared-language-pack",
|
|
94
|
+
"title": "Align shared language pack",
|
|
95
|
+
"path": "skills/align/references/shared-language.md",
|
|
96
|
+
"role": "skill-reference"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "cleanup-style-and-deslop-pack",
|
|
100
|
+
"title": "Cleanup style and deslop pack",
|
|
101
|
+
"path": "skills/cleanup/references/style-and-deslop.md",
|
|
102
|
+
"role": "skill-reference"
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"provenance": [
|
|
106
|
+
{
|
|
107
|
+
"kind": "product-rule",
|
|
108
|
+
"note": "Repo-owned native curation only; do not expose upstream-branded catalogs as first-class product surfaces."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"kind": "release-scope",
|
|
112
|
+
"note": "Playbooks stay read-only in this release and extend the existing first-party local capability registry."
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
package/mcp/servers.json
CHANGED
|
@@ -2,54 +2,88 @@
|
|
|
2
2
|
"schemaVersion": "0.1.0",
|
|
3
3
|
"servers": [
|
|
4
4
|
{
|
|
5
|
+
"kind": "gitmcp-evidence",
|
|
5
6
|
"category": "meta-list",
|
|
6
7
|
"repo": "sindresorhus/awesome",
|
|
7
8
|
"endpoint": "https://gitmcp.io/sindresorhus/awesome"
|
|
8
9
|
},
|
|
9
10
|
{
|
|
11
|
+
"kind": "gitmcp-evidence",
|
|
10
12
|
"category": "typescript",
|
|
11
13
|
"repo": "dzharii/awesome-typescript",
|
|
12
14
|
"endpoint": "https://gitmcp.io/dzharii/awesome-typescript"
|
|
13
15
|
},
|
|
14
16
|
{
|
|
17
|
+
"kind": "gitmcp-evidence",
|
|
15
18
|
"category": "rust",
|
|
16
19
|
"repo": "rust-unofficial/awesome-rust",
|
|
17
20
|
"endpoint": "https://gitmcp.io/rust-unofficial/awesome-rust"
|
|
18
21
|
},
|
|
19
22
|
{
|
|
23
|
+
"kind": "gitmcp-evidence",
|
|
20
24
|
"category": "go",
|
|
21
25
|
"repo": "avelino/awesome-go",
|
|
22
26
|
"endpoint": "https://gitmcp.io/avelino/awesome-go"
|
|
23
27
|
},
|
|
24
28
|
{
|
|
29
|
+
"kind": "gitmcp-evidence",
|
|
25
30
|
"category": "python",
|
|
26
31
|
"repo": "vinta/awesome-python",
|
|
27
32
|
"endpoint": "https://gitmcp.io/vinta/awesome-python"
|
|
28
33
|
},
|
|
29
34
|
{
|
|
35
|
+
"kind": "gitmcp-evidence",
|
|
30
36
|
"category": "java",
|
|
31
37
|
"repo": "akullpp/awesome-java",
|
|
32
38
|
"endpoint": "https://gitmcp.io/akullpp/awesome-java"
|
|
33
39
|
},
|
|
34
40
|
{
|
|
41
|
+
"kind": "gitmcp-evidence",
|
|
35
42
|
"category": "dotnet",
|
|
36
43
|
"repo": "quozd/awesome-dotnet",
|
|
37
44
|
"endpoint": "https://gitmcp.io/quozd/awesome-dotnet"
|
|
38
45
|
},
|
|
39
46
|
{
|
|
47
|
+
"kind": "gitmcp-evidence",
|
|
40
48
|
"category": "security",
|
|
41
49
|
"repo": "sbilly/awesome-security",
|
|
42
50
|
"endpoint": "https://gitmcp.io/sbilly/awesome-security"
|
|
43
51
|
},
|
|
44
52
|
{
|
|
53
|
+
"kind": "gitmcp-evidence",
|
|
45
54
|
"category": "self-hosted",
|
|
46
55
|
"repo": "awesome-selfhosted/awesome-selfhosted",
|
|
47
56
|
"endpoint": "https://gitmcp.io/awesome-selfhosted/awesome-selfhosted"
|
|
48
57
|
},
|
|
49
58
|
{
|
|
59
|
+
"kind": "gitmcp-evidence",
|
|
50
60
|
"category": "system-design",
|
|
51
61
|
"repo": "checkcheckzz/system-design-interview",
|
|
52
62
|
"endpoint": "https://gitmcp.io/checkcheckzz/system-design-interview"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"kind": "gitmcp-evidence",
|
|
66
|
+
"category": "obsidian-api-docs",
|
|
67
|
+
"repo": "obsidianmd/obsidian-api",
|
|
68
|
+
"endpoint": "https://gitmcp.io/obsidianmd/obsidian-api"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"kind": "gitmcp-evidence",
|
|
72
|
+
"category": "obsidian-plugin-scaffold",
|
|
73
|
+
"repo": "obsidianmd/obsidian-sample-plugin",
|
|
74
|
+
"endpoint": "https://gitmcp.io/obsidianmd/obsidian-sample-plugin"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"kind": "gitmcp-evidence",
|
|
78
|
+
"category": "context-economy",
|
|
79
|
+
"repo": "JuliusBrussee/caveman",
|
|
80
|
+
"endpoint": "https://gitmcp.io/JuliusBrussee/caveman"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"kind": "gitmcp-evidence",
|
|
84
|
+
"category": "prompt-techniques",
|
|
85
|
+
"repo": "NirDiamant/Prompt_Engineering",
|
|
86
|
+
"endpoint": "https://gitmcp.io/NirDiamant/Prompt_Engineering"
|
|
53
87
|
}
|
|
54
88
|
]
|
|
55
89
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jstn-sdk/ma",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Codex-native skills system for architecture, evidence, review, and gated build guidance.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "JustineDevs",
|
|
@@ -41,9 +41,12 @@
|
|
|
41
41
|
"sprint/",
|
|
42
42
|
"skills/",
|
|
43
43
|
"docs/",
|
|
44
|
+
"data/",
|
|
44
45
|
"scripts/",
|
|
45
46
|
"index.js",
|
|
46
47
|
"README.md",
|
|
48
|
+
"DEMO.md",
|
|
49
|
+
"COVERAGE.md",
|
|
47
50
|
"LICENSE"
|
|
48
51
|
],
|
|
49
52
|
"exports": {
|
|
@@ -56,13 +59,16 @@
|
|
|
56
59
|
"scripts": {
|
|
57
60
|
"prepare": "husky",
|
|
58
61
|
"postinstall": "node ./scripts/postinstall.js",
|
|
59
|
-
"test": "node --test",
|
|
62
|
+
"test": "node --test --test-concurrency=1",
|
|
60
63
|
"status": "node ./bin/ma.js status",
|
|
64
|
+
"linux:packages:build": "node ./scripts/build-linux-packages.mjs",
|
|
65
|
+
"linux:packages:smoke": "node ./scripts/linux-package-smoke.mjs",
|
|
61
66
|
"build:gate": "node ./bin/ma.js run '$build'",
|
|
62
67
|
"release:meta": "node ./scripts/release-metadata.js",
|
|
63
68
|
"release:sync": "node ./scripts/release-sync.js",
|
|
64
69
|
"release:advance": "node ./scripts/release-sync.js --force --bump patch",
|
|
65
70
|
"release:verify": "node ./scripts/release-verify.js",
|
|
71
|
+
"release:assets": "node ./.github/scripts/validate-release-assets.js",
|
|
66
72
|
"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",
|
|
67
73
|
"skills:manifest": "node ./scripts/skills-manifest.js",
|
|
68
74
|
"skills:validate": "node ./scripts/skills-validate.js",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-architect",
|
|
3
3
|
"displayName": "Meta-Architect",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.13",
|
|
5
5
|
"description": "Programmatic architecture and verified engineering skills for Codex-native workflows.",
|
|
6
6
|
"entry": "./README.md",
|
|
7
7
|
"skillsDir": "./skills"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-architect",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Skills-first workflow layer for Codex with architecture, evidence, review, and gated build guidance.",
|
|
3
|
+
"version": "0.1.13",
|
|
4
|
+
"description": "Skills-first workflow layer for Codex with a bounded autonomous manager, architecture, evidence, review, and gated build guidance.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "JustineDevs",
|
|
7
7
|
"url": "https://github.com/JustineDevs"
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"apps": "./.app.json",
|
|
16
16
|
"interface": {
|
|
17
17
|
"displayName": "Meta-Architect",
|
|
18
|
-
"shortDescription": "Architecture-first skill bundle
|
|
19
|
-
"longDescription": "Meta-Architect packages reusable Codex skills plus plugin-scoped MCP and app metadata. The in-session skill workflow is primary. The ma helper command and
|
|
18
|
+
"shortDescription": "Architecture-first skill bundle with a bounded in-session autonomous manager.",
|
|
19
|
+
"longDescription": "Meta-Architect packages reusable Codex skills plus plugin-scoped MCP and app metadata. The in-session skill workflow is primary, with `$maestro` as the single bounded autonomous manager over the fixed gated sequence and the publishable non-gating helper skills. The `ma` helper command and `.ma` state only support setup, release gates, and optional local helper automation.",
|
|
20
20
|
"developerName": "JustineDevs",
|
|
21
21
|
"category": "Developer Tools"
|
|
22
22
|
}
|
|
@@ -9,6 +9,10 @@ This plugin bundle packages the Meta-Architect skill surfaces for consumers that
|
|
|
9
9
|
- `.app.json`
|
|
10
10
|
- `.mcp.json`
|
|
11
11
|
- bundled Meta-Architect skill surfaces under `skills/`
|
|
12
|
+
- one umbrella autonomous manager: `$maestro`
|
|
13
|
+
- fixed gated lanes: `$arch`, `$sage`, `$flow`, `$vet`, `$vibe`, `$build`
|
|
14
|
+
- non-gating helper skills: `$align`, `$diagnose`, `$tdd`, `$cleanup`
|
|
15
|
+
- packaged native reference files mirrored under the relevant skill folders
|
|
12
16
|
- a release-scoped version line aligned to the repo
|
|
13
17
|
|
|
14
18
|
## What the plugin does not contain
|
|
@@ -44,8 +48,35 @@ Use the core repo when you want to develop Meta-Architect itself. Use the plugin
|
|
|
44
48
|
|
|
45
49
|
The plugin-facing bundle should be consumed alongside the repository’s documented packaging/install flow.
|
|
46
50
|
|
|
51
|
+
Recommended CLI install for macOS, Linux, WSL, and Git-Bash:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
# One-line install (POSIX shells only; use WSL/Git-Bash on Windows)
|
|
55
|
+
curl -fsSL https://cdn.jsdelivr.net/gh/JustineDevs/meta-architect@main/scripts/install.sh | sh
|
|
56
|
+
```
|
|
57
|
+
|
|
47
58
|
Canonical package/runtime path:
|
|
48
59
|
|
|
60
|
+
Debian-family install:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
sudo apt install ./meta-architect_<version>_all.deb
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Arch-family install:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
sudo pacman -U ./meta-architect-<version>-1-any.pkg.tar.xz
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Fedora/openSUSE install:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
sudo dnf install ./meta-architect-<version>-1.noarch.rpm
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
npm fallback/default supported path:
|
|
79
|
+
|
|
49
80
|
```bash
|
|
50
81
|
# Install
|
|
51
82
|
npm i -g @openai/codex@latest @jstn-sdk/ma@latest
|
|
@@ -79,6 +110,8 @@ npm run skills:install -- --path ./dist/installed-skills
|
|
|
79
110
|
|
|
80
111
|
Consumer expectation:
|
|
81
112
|
- the plugin ships the same public skill contracts as the canonical `skills/` directory
|
|
113
|
+
- `$maestro` remains the only umbrella surface in the plugin bundle and acts as the bounded autonomous manager for the in-session workflow
|
|
114
|
+
- helper skills are installable mirrors, but they remain non-gating and do not create new release gates
|
|
82
115
|
- it does not define a looser or simplified product contract
|
|
83
116
|
|
|
84
117
|
## MCP wiring expectations
|
|
@@ -105,7 +138,7 @@ When consuming the plugin:
|
|
|
105
138
|
The plugin version should track the release scope of the core repo.
|
|
106
139
|
|
|
107
140
|
For this repository:
|
|
108
|
-
- plugin scope is aligned to Meta-Architect `v0.1.
|
|
141
|
+
- plugin scope is aligned to Meta-Architect `v0.1.13`
|
|
109
142
|
- any breaking contract change should be versioned intentionally
|
|
110
143
|
|
|
111
144
|
The plugin is one distribution surface of the same product, not a separate product line.
|