원클릭으로
agents
Dynamic agent composition and management system. USE WHEN you need specialized agents, parallel work, or custom expertise combinations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Dynamic agent composition and management system. USE WHEN you need specialized agents, parallel work, or custom expertise combinations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create detailed implementation plans through interactive research and iteration
Start a systematic debugging session with structured diagnostic protocol
Universal execution engine using scientific method to achieve ideal state. USE WHEN complex tasks, multi-step work, "run the algorithm", "use the algorithm", OR any non-trivial request that benefits from structured execution with ISC (Ideal State Criteria) tracking.
| name | Agents |
| description | Dynamic agent composition and management system. USE WHEN you need specialized agents, parallel work, or custom expertise combinations. |
The Agents skill manages agent composition and orchestration:
| Type | Definition | Best For |
|---|---|---|
| Named Agents | Pre-configured specialists (Engineer, Architect, QATester) | Recurring work, specialized expertise |
| Dynamic Agents | Task-specific agents composed from traits | One-off tasks, novel combinations |
Task({
subagent_type: "Engineer",
prompt: "Implement the user authentication feature...",
model: "sonnet"
})
Available Agents:
Engineer - TDD implementation, battle-tested patternsArchitect - System design, trade-off analysisQATester - Browser validation, quality gatesbackend-agent - API design, servicesfrontend-agent - UI components, statesecurity-agent - AppSec, OWASP Top 10data-agent - Database design, migrationssre-agent - Infrastructure, reliabilityWhen you need a specific expertise combination:
Traits Available:
Expertise (domain knowledge):
Personality (behavior style):
Approach (work style):
Example Compositions:
| Need | Traits |
|---|---|
| Security architecture review | security, skeptical, thorough, adversarial |
| Legal contract review | legal, cautious, meticulous, systematic |
| Creative content development | creative, enthusiastic, exploratory |
| Red team critique | contrarian, skeptical, adversarial, bold |
| Quick business assessment | business, pragmatic, rapid, comparative |
| Task Type | Model | Speed |
|---|---|---|
| Grunt work, verification | haiku | 10-20x faster |
| Standard implementation | sonnet | Balanced |
| Deep reasoning, architecture | opus | Maximum intelligence |
Rule: Parallel agents especially benefit from haiku for speed.
Spawn multiple agents in ONE message for parallel work:
// All run simultaneously
Task({ subagent_type: "Intern", prompt: "Research company A...", model: "haiku" })
Task({ subagent_type: "Intern", prompt: "Research company B...", model: "haiku" })
Task({ subagent_type: "Intern", prompt: "Research company C...", model: "haiku" })
Spotcheck Pattern: Always launch a spotcheck agent after parallel work to verify consistency.
When delegating, ALWAYS include:
Task({
subagent_type: "Engineer",
prompt: `
## Context
We're adding dark mode. Users have requested this feature.
## Current State
Theme is in src/theme/, uses CSS variables.
## Task
1. Add dark mode toggle to settings page
2. Persist preference to localStorage
3. Apply theme on page load
## Success Criteria
- Toggle works in browser
- Theme persists across refresh
- No flash of wrong theme on load
`,
model: "sonnet"
})