From CAST — Claude Agent Specialist Team
Writes structured multi-file/multi-hour plan files with Agent Dispatch Manifest, then invokes /orchestrate to execute in parallel batches. For large refactors, migrations, or features spanning many files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cast:planThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This is the `/plan` skill — the heavy `planner`→`/orchestrate` chain, reserved for genuinely multi-file / multi-hour / multi-agent work. For single-session-sized tasks (one or a few files, finishable in one session), use built-in plan mode (shift-tab) with a single agent instead of this skill. You are entering plan mode to write a structured implementation plan.
This is the /plan skill — the heavy planner→/orchestrate chain, reserved for genuinely multi-file / multi-hour / multi-agent work. For single-session-sized tasks (one or a few files, finishable in one session), use built-in plan mode (shift-tab) with a single agent instead of this skill. You are entering plan mode to write a structured implementation plan.
Write a plan file under ~/.claude/plans/ using the Write tool:
~/.claude/plans/<YYYY-MM-DD>-<slug>.md where slug is a short kebab-case description## Agent Dispatch Manifest — mandatory — a json dispatch code block with batches, agent types, prompts, and parallel flagsThe ADM block must follow this schema:
{
"batches": [
{
"id": 1,
"description": "short description",
"parallel": true,
"agents": [
{ "subagent_type": "agent-name", "prompt": "specific task prompt" }
]
}
]
}
Use "subagent_type": "main" for tasks the orchestrator handles inline. Use named agents (e.g. "code-reviewer", "commit") for delegated tasks. Group independent tasks into parallel batches.
After writing the plan file, display a concise summary:
Then ask the user: "Execute this plan with /orchestrate? [yes/no]"
Wait for explicit confirmation before proceeding.
Once the user confirms, invoke the /orchestrate skill with the plan file path:
/orchestrate [ABSOLUTE_PLAN_PATH]
The /orchestrate skill reads the plan's Agent Dispatch Manifest and executes all batches directly from the main session — presenting the batch queue, running the interrupt window, then dispatching agents in order.
npx claudepluginhub ek33450505/claude-agent-team --plugin castProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.