dispatching-parallel-agents
Use when facing 3+ independent failures that can be investigated without shared state or dependencies. Dispatches multiple Claude agents to investigate and fix independent problems concurrently.
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=aiskillstore-marketplace-skills-doyajin174-dispatching-parallel-agents-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name dispatching-parallel-agents description Use when facing 3+ independent failures that can be investigated without shared state or dependencies. Dispatches multiple Claude agents to investigate and fix independent problems concurrently. allowed-tools Read, Glob, Grep, Task, Bash license MIT metadata {"author":"obra/superpowers","version":"1.0"} Dispatching Parallel Agents 여러 독립적인 문제를 병렬 에이전트로 동시에 해결하는 스킬입니다. Core Principle "Dispatch one agent per independent problem domain. Let them work concurrently." When to Use ✅ 적합한 상황 - 3개 이상의 독립적 실패 - 각 문제가 서로 관련 없음 - 공유 상태 없이 조사 가능 - 서로 다른 파일/서브시스템에서 발생 ❌ 피해야 할 상황 - 실패들이 연결되어 있음 (하나 해결 시 다른 것도 해결) - 전체 시스템 컨텍스트가 필요 - 에이전트들이 공유 리소스에 간섭 Execution Pattern 1. 독립적 문제 도메인 식별 ## 실패 분석 | 파일/영역 | 문제 | 독립성 | |-----------|------|--------| | auth.test.js | JWT 검증 실패 | ✅ 독립 | | api.test.js | 라우팅 오류 | ✅ 독립 | | db.test.js | 연결 타임아웃 | ✅ 독립 | 2. 에이전트 태스크 생성 ## Agent 1: Auth Module Scope: src/auth/, tests/auth/ Goal: JWT 검증 실패 원인 찾기 Constraint: auth 관련 파일만 수정 ## Agent 2: API Routes Scope: src/api/, tests/api/ Goal: 라우팅 오류 해결 Constraint: api 관련 파일만 수정 ## Agent 3: Database Scope: src/db/, tests/db/ Goal: 연결 타임아웃 해결 Constraint: db 관련 파일만 수정 3. 동시 디스패치 Task(Agent 1) || Task(Agent 2) || Task(Agent 3) 4. 결과 통합 ## Results ### Agent 1 (Auth) - 문제: 만료 시간 계산 오류 - 수정: auth/jwt.js:45 - 테스트: ✅ 통과 ### Agent 2 (API) - 문제: 미들웨어 순서 - 수정: api/routes.js:12 - 테스트: ✅ 통과 ### Agent 3 (DB) - 문제: 커넥션 풀 설정 - 수정: db/config.js:8 - 테스트: ✅ 통과 Agent Prompt Template ## Task [구체적인 문제 설명] ## Scope - 파일: [제한된 파일 목록] - 관련 테스트: [테스트 파일] ## Goal [명확한 목표] ## Constraints - 다른 영역 코드 수정 금지 - 프로덕션 코드 최소 변경 - 테스트 통과 필수 ## Expected Output 1. 근본 원인 분석 2. 수정 내용 요약 3. 테스트 결과 Common Pitfalls 문제 해결책 범위가 너무 넓음 구체적인 파일/디렉토리 지정 컨텍스트 누락 필요한 배경 정보 포함 제약 미정의 "~하지 마세요" 명시 출력 불명확 정확한 deliverable 지정 Demonstrated Results 6개 실패, 3개 파일 → 3개 병렬 에이전트 → 동시 완료 → 충돌 0건 → 순차 대비 ~3배 속도
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |