eliza

Guides spawned coding agents working inside the Eliza app repo and parent runtime.

1|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill eliza-solizardking
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eliza
Source: https://github.com/Solizardking/Solana-Robotics-Kit/tree/main/eliza/packages/skills/skills/eliza
Command: npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill eliza-solizardking

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Spawned coding agents working on the Eliza app often lack context about the repo layout, the running parent agent's capabilities, and how to request actions that live outside the local checkout, leading to duplicated work or unsafe assumptions. ## Core Features & Use Cases - Worker Protocol Guidance: Defines how spawned agents should use the provided CWD, read AGENTS.md/CLAUDE.md, and consult the SKILLS.md manifest before assuming capabilities are unavailable. - Parent Runtime Bridge: Explains the USE_SKILL parent-agent directive for asking the running Eliza agent to perform actions like calendar lookups, GitHub operations, or Cloud API calls. - Capability Mapping: Documents what Eliza can do through plugins, services, connectors, Cloud APIs, and LifeOps so workers request the right capability. - Use Case: A spawned coding agent needs to check the user's calendar before scheduling a deployment task; it emits a USE_SKILL parent-agent request and receives the result through the orchestrator bridge. ## Quick Start Ask the agent to read the eliza skill and then use USE_SKILL parent-agent to list available actions before requesting a calendar or GitHub operation.

Frequently Asked Questions about eliza

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do spawned coding agents communicate with the parent Eliza agent?

Spawned agents emit a standalone USE_SKILL parent-agent line with a JSON request describing the needed action. The orchestrator routes it through the parent's message pipeline and returns the result between response markers in the same worker session.

How do I list available actions in the Eliza parent runtime?

Emit USE_SKILL parent-agent with mode set to list-actions and an optional query filter such as calendar or github. The parent returns its registered actions so the worker can choose the right capability before making a request.

Can a worker agent call Eliza Cloud APIs directly?

Workers call Cloud APIs through the parent using mode cloud-command after inspecting available commands with list-cloud-commands. Paid, mutating, or destructive commands require parent or user confirmation and a confirmed:true flag.

What should a worker do when a task needs human input?

The worker prints a DECISION: line containing the exact question or blocker. The orchestrator watches for this pattern and surfaces it to the human, and the worker continues from the returned result.

When should a worker not ask the parent agent for help?

Workers should not ask the parent for ordinary local file reads, tests, or edits they can perform directly in the workspace. Parent requests are reserved for external state like calendars, connectors, Cloud account data, and paid operations.