mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
- Add workspace resolution helpers (isSubagentSession, parseParentAgentId, resolveAgentWorkspace) - Parent→Child seeding: inject parent CURRENT_STATE.md into subagent context at startup - Child→Parent recovery: new subagent_ended hook reads child unsurfaced results, merges into parent - Add subagentSeed and subagentRecovery config keys (both default: true) - Add /mc subagents command for cross-workspace state overview - Bump lifecycle plugin to v5.0.0, mc-plugin to v2.1.0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
716 B
JSON
24 lines
716 B
JSON
{
|
|
"id": "mc",
|
|
"name": "Memory Continuity Commands",
|
|
"description": "Slash commands for Memory Continuity — /mc state, /mc history, /mc search, /mc settings, etc.",
|
|
"version": "2.1.0",
|
|
"author": { "name": "dtzp555-max", "url": "https://github.com/dtzp555-max" },
|
|
"license": "MIT",
|
|
"category": "commands",
|
|
"tags": ["memory", "commands", "search", "recall"],
|
|
"icon": "terminal",
|
|
"requires": ["memory-continuity"],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"memoryDir": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Override memory directory path (auto-detected from workspace if empty)"
|
|
}
|
|
}
|
|
}
|
|
}
|