From yato
Plan a project by gathering requirements, analyzing codebase, generating PRD and team config
How this skill is triggered — by the user, by Claude, or both
Slash command
/yato:orchestrator-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are the orchestrator planning a new project. Follow this workflow to gather requirements, understand the codebase (if existing), generate a PRD, and create a dynamic team configuration.
You are the orchestrator planning a new project. Follow this workflow to gather requirements, understand the codebase (if existing), generate a PRD, and create a dynamic team configuration.
First, check if this is a new or existing project:
ls -la $ARGUMENTS 2>/dev/null | head -20
Based on the result:
Ask the user these questions (adapt based on project type):
IMPORTANT: Do NOT proceed until you have clear answers. Ask follow-up questions if anything is ambiguous.
If this is an existing project, analyze it:
# Check project type
ls $ARGUMENTS/package.json $ARGUMENTS/requirements.txt $ARGUMENTS/go.mod $ARGUMENTS/Cargo.toml 2>/dev/null
# Check directory structure
ls -la $ARGUMENTS/
# Check for framework indicators
cat $ARGUMENTS/package.json 2>/dev/null | head -30
Identify:
Based on gathered requirements, create a PRD file.
Read the team suggestion templates from ${CLAUDE_PLUGIN_ROOT}/templates/team-suggestions/ to pick the appropriate team composition:
ls ${CLAUDE_PLUGIN_ROOT}/templates/team-suggestions/
cat ${CLAUDE_PLUGIN_ROOT}/templates/team-suggestions/*.yml
Each template defines a team for a specific use case (e.g., development, bug fix). Choose the template that best matches the project's needs based on the PRD. The PM is always included automatically.
For complex projects requiring multiple developers, start from the matching template and add additional developer agents as needed.
Once user approves:
YATO_PATH="${CLAUDE_PLUGIN_ROOT}"
# Get session name from path
SESSION_NAME=$(basename $ARGUMENTS)
# Deploy the team with the config
uv run --directory $YATO_PATH python $YATO_PATH/lib/orchestrator.py deploy $SESSION_NAME -p $ARGUMENTS -c $ARGUMENTS/team-config.json
# Start Claude and brief all agents
uv run --directory $YATO_PATH python $YATO_PATH/lib/orchestrator.py start
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, 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.
npx claudepluginhub marcospmail/claude-code-plugins --plugin yato