원클릭으로
multi-agent-scan
// This skill should be used when the user asks to "scan the codebase", "analyze multiple patterns", "parallel agent workflow", or "multi-agent research". Spawns multiple agents in parallel for comprehensive codebase analysis.
// This skill should be used when the user asks to "scan the codebase", "analyze multiple patterns", "parallel agent workflow", or "multi-agent research". Spawns multiple agents in parallel for comprehensive codebase analysis.
Creates detailed implementation plans after requirements are clarified. Use when user says "plan this", "how should I implement", or after requirements-clarifier skill has gathered context. Breaks down work into steps with dependencies and complexity estimates.
Activates during planning stage to clarify user requirements, constraints, and preferences. Use when user requests are vague, ambiguous, or need deeper understanding before implementation. Helps prevent rework by ensuring shared understanding.
| name | multi-agent-scan |
| description | This skill should be used when the user asks to "scan the codebase", "analyze multiple patterns", "parallel agent workflow", or "multi-agent research". Spawns multiple agents in parallel for comprehensive codebase analysis. |
| version | 1.0.0 |
Orchestrates multiple agents in parallel to perform comprehensive codebase analysis across different dimensions simultaneously.
Invoke this skill when the user requests:
Fire multiple agents simultaneously to explore different aspects. All agents start in parallel when launched in a single message:
# Scan for different code patterns in parallel
Task(subagent_type="tutorial-workflow:file-scanner", model="haiku", prompt="Find all TypeScript files with TODO comments")
Task(subagent_type="tutorial-workflow:file-scanner", model="haiku", prompt="Find all files using deprecated APIs")
Task(subagent_type="tutorial-workflow:file-scanner", model="haiku", prompt="Find all large files (>500 lines)")
After results arrive, perform deeper analysis:
Task(
subagent_type="tutorial-workflow:code-analyzer",
model="opus",
prompt=f"""Analyze these findings and provide recommendations:
TODOs: {todo_results}
Deprecated APIs: {deprecated_results}
Large files: {large_files}
Provide refactoring recommendations prioritized by impact."""
)
Run parallel research while analysis happens:
Task(subagent_type="tutorial-workflow:web-researcher", model="sonnet", prompt="Search for TypeScript best practices for code organization")
Task(subagent_type="tutorial-workflow:web-researcher", model="sonnet", prompt="Find latest recommendations for handling deprecated APIs")
run_in_background: true for builds, installs, testsUser: "Scan my codebase using the multi-agent workflow"
Claude:
1. Spawns 3 file-scanner agents in parallel (TODOs, deprecated APIs, large files)
2. Collects results from all agents
3. Spawns code-analyzer for deep analysis
4. Spawns web-researcher agents for best practices research
5. Provides comprehensive report with prioritized recommendations