From manta
Idle protocol for daemon-mode clones between tasks. Load when entering IDLE state after completing a task.
How this skill is triggered — by the user, by Claude, or both
Slash command
/manta:manta-daemon-idleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Protocol for daemon-mode clones when they complete a task and wait for new work. Loaded when a clone transitions to IDLE state. Ensures the clone signals readiness, stays discoverable by the orchestrator, and does not start unauthorized work.
Protocol for daemon-mode clones when they complete a task and wait for new work. Loaded when a clone transitions to IDLE state. Ensures the clone signals readiness, stays discoverable by the orchestrator, and does not start unauthorized work.
manta.heartbeat({ clone_id: "<your-id>", state: "IDLE" }) to transition to IDLEmanta.request_task({ clone_id: "<your-id>" }) to signal readiness for new workmanta.read_broadcasts for feedback or coordination messages from siblingsmanta-graceful-death while IDLE — session continues until explicit shutdownmanta.suicide_intent or manta.report_death between tasks# After completing a task:
manta.heartbeat({ clone_id: "A", state: "IDLE" })
manta.request_task({ clone_id: "A" })
# Then wait. The orchestrator will resume your session with new work.
# If the orchestrator sends "graceful shutdown" or "session end":
# → Follow the normal manta-graceful-death sequence.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub tr00x/manta --plugin manta