What problem does it solve? When an Eliza runtime spawns a CLI coding agent (Claude Code, Codex, Gemini, Aider), the child agent loses access to parent context like character persona, originating room, memory, and active workspace state. This Skill defines a read-only loopback bridge so the child can retrieve that context on demand without receiving API keys or full memory dumps. ## Core Features & Use Cases - Parent Context Endpoint: The child agent curls GET /api/coding-agents/<sessionId>/parent-context to fetch character, room, and model preference data. - Memory Search: GET /api/coding-agents/<sessionId>/memory?q=<query>&limit=N lets the child resolve references like "the project from yesterday" against parent memory. - Workspace State: GET /api/coding-agents/<sessionId>/active-workspaces returns the parent's active workspace state. - Use Case: A user tells Eliza "have the coding agent apply the same markup as last time." The spawned agent queries the bridge memory endpoint to resolve what "last time" refers to, then continues the task with that context. ## Quick Start Spawn a coding task agent from Eliza and have it query the loopback bridge endpoints with its session id whenever the task references unresolved parent context.