SDK-based Claude agent with full Task tool access. Use for executing handoff prompts or spawning nested sub-agents.
From agentic-coding-toolsnpx claudepluginhub thesylvester/agentic-coding-tools --plugin read-transcriptThis skill is limited to using the following tools:
scripts/super-agentSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
SDK-based Claude instance with full tool access including Task (can spawn its own sub-agents).
# Execute a prompt file
PROMPT_FILE=path/to/prompt.md .claude/skills/super-agent/scripts/super-agent
# Inline prompt
.claude/skills/super-agent/scripts/super-agent Use parallel sub-agents to research this repo
# Stdin
cat prompt.md | .claude/skills/super-agent/scripts/super-agent
If agent asks "should I proceed?" instead of implementing: Resume and confirm:
.claude/skills/super-agent/scripts/super-agent --resume <session-id> "Yes, proceed"
The session ID is always printed at the end of output as [session_id: ...].
| Flag / Variable | Description |
|---|---|
--no-chrome | Disable Chrome (enabled by default) |
--no-persist | Don't save session to disk |
--fork, -f | Fork from SESSION_ID context |
--resume, -r | Resume a previous session |
PROMPT_FILE | Read prompt from file |
BYPASS_PERMISSIONS=1 | Full autonomy mode |
SUPER_AGENT_DEBUG=1 | Print cost to stderr |
SUPER_AGENT_CHROME=0 | Disable Chrome (env var form) |
SESSION_ID | Session ID for --fork |
SUPER_AGENT_MODEL | Override model (e.g., claude-sonnet-4-5) |
Transcripts land in ~/.claude/projects/<cwd-slug>/. Use external transcript monitor for realtime visibility.