What problem does it solve?
When you delegate coding work to a CLI task agent like Claude Code, Codex, Gemini, or Aider, the child agent loses access to the parent Eliza runtime's context—character persona, originating room, memory, and active workspace state. This Skill bridges that gap with read-only loopback endpoints so the child can resolve references like "the project from yesterday" without receiving a full memory dump or the parent's API key.
Core Features & Use Cases
- Parent Context Endpoint: The child agent curls
GET /api/coding-agents/<sessionId>/parent-context to retrieve character, room, and model preference data injected by the orchestrator.
- Scoped Memory Search:
GET /api/coding-agents/<sessionId>/memory?q=<query>&limit=N lets the child query parent memory on demand instead of receiving an unfiltered dump.
- Active Workspace State:
GET /api/coding-agents/<sessionId>/active-workspaces reveals which workspaces the parent runtime currently has open.
- Use Case: You tell Eliza "have the coding agent apply the same markup as last time." The spawned agent queries the bridge memory endpoint to find what "last time" referred to, then completes the task with correct context.
Quick Start
Ask Eliza to delegate a coding task that references prior conversation context, and the spawned task agent will automatically use the bridge endpoints to resolve that context.