Unnamed Skill

Quick reference for invoking CasareRPA agents via Task tool. AUTO-CHAIN ENABLED by default. Use when: invoking agents, running agent chains, task routing, choosing the right agent, understanding agent auto-chaining, Task tool usage.

$ 설치

git clone https://github.com/majiayu000/claude-skill-registry /tmp/claude-skill-registry && cp -r /tmp/claude-skill-registry/skills/data/agent-invoker ~/.claude/skills/claude-skill-registry

// tip: Run this command in your terminal to install the skill


name: agent-invoker description: Quick reference for invoking CasareRPA agents via Task tool. AUTO-CHAIN ENABLED by default. Use when: invoking agents, running agent chains, task routing, choosing the right agent, understanding agent auto-chaining, Task tool usage.

Agent Invoker

Reference for invoking CasareRPA agents. All agents now auto-chain by default.

For comprehensive task routing, see TASK_ROUTING.md

AUTO-CHAIN MODE (Default)

When you invoke an agent, it automatically runs the full chain with parallel execution:

AgentAuto-Chain Flow
architectEXPLORE×3 → ARCHITECT → BUILDER+UI+INTEGRATIONS → QUALITY+DOCS → REVIEWER
builderBUILDER → QUALITY → REVIEWER
refactorEXPLORE → REFACTOR → QUALITY → REVIEWER
uiEXPLORE → UI → QUALITY → REVIEWER
integrationsEXPLORE → INTEGRATIONS → QUALITY → REVIEWER

Agent Catalog

AgentSystem NamePurposeAuto-Chain
exploreexploreFast codebase searchNo (used in chains)
architectarchitectImplementation + designYes (full chain)
builderbuilderCode writingYes (quality+reviewer)
qualityqualityTesting + performanceNo (used in chains)
reviewerreviewerCode review gateNo (used in chains)
refactorrefactorCode cleanupYes (full chain)
researcherresearcherResearchNo (standalone)
docsdocsDocumentationNo (used in chains)
uiuiCanvas UI designYes (full chain)
integrationsintegrationsExternal APIsYes (full chain)

Usage Patterns

Default: Auto-Chain (Recommended)

# Architect runs FULL chain automatically
Task(subagent_type="architect", prompt="""
Implement HTTPRequestNode for browser automation.
- Location: src/casare_rpa/nodes/browser/
- Follow BaseNode pattern
""")

# This automatically runs:
# 1. EXPLORE ×3 (parallel)
# 2. ARCHITECT (plan)
# 3. BUILDER + UI + INTEGRATIONS (parallel)
# 4. QUALITY + DOCS (parallel)
# 5. REVIEWER (gate with loop on ISSUES)

Skip Auto-Chain (Single Agent Mode)

# Add single=true to run just this agent
Task(subagent_type="architect", prompt="""
single=true: Review this design only, don't run full chain.
""")

Manual Full Chain Control

For complete control, use the /chain command or parallel-exec skill:

# Via command
/chain implement "Add login feature" --parallel

# Via skill
Skill(skill="parallel-exec", args="Implement login feature with UI and tests")

Quick Lookup

TaskUse AgentAuto-Chain
Implement featurearchitectYes (full chain)
Fix bugbuilderYes (quality+reviewer)
Refactor coderefactorYes (full chain)
Design UIuiYes (full chain)
API integrationintegrationsYes (full chain)
Research onlyresearcherNo
Quick exploreexploreNo
Docs onlydocsNo

Parallel Execution Details

Phase 1: EXPLORE (Parallel ×3)

  • Codebase patterns search
  • Test patterns search
  • Rules/docs search

Phase 3: Implementation (Parallel)

  • builder - Core logic
  • ui - Presentation layer
  • integrations - External APIs

Phase 4: Validation (Parallel)

  • quality - Tests and linting
  • docs - Documentation updates

Reviewer Gate (With Loop Recovery)

  • If APPROVED → Chain complete
  • If ISSUES → Loop back to BUILDER (max 3 iterations)
  • If max exceeded → Escalation

Error Recovery Loop

Iteration 1/3
  ARCHITECT → Plan approved
  BUILDER → Implementation
  QUALITY → Tests pass
  REVIEWER → ISSUES (2 found)
    ↓ Loop back to BUILDER
  BUILDER → Fixes applied
  QUALITY → Tests pass
  REVIEWER → APPROVED
✓ Chain complete