Work packages completed: - WP1: packages/forge — pipeline runner, stage adapter, board tasks, brief classifier, persona loader with project-level overrides. 89 tests, 95.62% coverage. - WP2: packages/macp — credential resolver, gate runner, event emitter, protocol types. 65 tests, 96.24% coverage. Full Python-to-TS port preserving all behavior. - WP3: plugins/mosaic-framework — OC rails injection plugin (before_agent_start + subagent_spawning hooks for Mosaic contract enforcement). - WP4: profiles/ (domains, tech-stacks, workflows), guides/ (17 docs), skills/ (5 universal skills), forge pipeline assets (48 markdown files). Board deliberation: docs/reviews/consolidation-board-memo.md Brief: briefs/monorepo-consolidation.md Consolidates mosaic/stack (forge, MACP, bootstrap framework) into mosaic/mosaic-stack. 154 new tests total. Zero Python — all TypeScript/ESM.
35 lines
1.4 KiB
JSON
35 lines
1.4 KiB
JSON
{
|
|
"id": "mosaic-framework",
|
|
"name": "Mosaic Framework",
|
|
"description": "Mechanically injects Mosaic rails and mission context into all agent sessions and ACP worker spawns. Ensures no worker starts without the framework contract.",
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"mosaicHome": {
|
|
"type": "string",
|
|
"description": "Path to the Mosaic config home (default: ~/.config/mosaic)"
|
|
},
|
|
"projectRoots": {
|
|
"type": "array",
|
|
"items": { "type": "string" },
|
|
"description": "List of project root paths to scan for active missions. Plugin checks each for .mosaic/orchestrator/mission.json."
|
|
},
|
|
"requireMission": {
|
|
"type": "boolean",
|
|
"description": "If true, ACP coding worker spawns are BLOCKED when no active Mosaic mission exists in any configured project root. Default: false."
|
|
},
|
|
"injectAgentIds": {
|
|
"type": "array",
|
|
"items": { "type": "string" },
|
|
"description": "Agent IDs that receive framework context via before_agent_start (appendSystemContext). Default: all agents."
|
|
},
|
|
"acpAgentIds": {
|
|
"type": "array",
|
|
"items": { "type": "string" },
|
|
"description": "ACP agent IDs that trigger runtime contract injection (subagent_spawning). Default: ['codex', 'claude']."
|
|
}
|
|
}
|
|
}
|
|
}
|