Skills Plugins MCP Prompt Model 博客 我的中心

parallel-agents

Dispatch multiple agents to work on independent problems concurrently. Use when facing 3+ independent failures or tasks.

DeepseekModel 官方收录技能 质量 优秀 · 78 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=aiskillstore-marketplace-skills-dmjgilbert-parallel-agents-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name parallel-agents description Dispatch multiple agents to work on independent problems concurrently. Use when facing 3+ independent failures or tasks. Dispatching Parallel Agents Assign separate agents to independent problem domains simultaneously for faster resolution. When to Use 3+ test failures across different files/subsystems Multiple independent tasks that don't share state Investigations that won't interfere with each other Failures from unrelated root causes When NOT to Use Failures are interconnected Tasks share state or create conflicts Agents would modify the same files You lack context to properly scope tasks Implementation Steps 1. Group by Domain Organize failures/tasks into independent categories: Group A: Authentication tests (3 failures) Group B: API endpoint tests (2 failures) Group C: UI component tests (4 failures) 2. Define Focused Tasks Each agent receives: Field Description Scope Specific files/tests to focus on Goal Clear success criteria Constraints What NOT to change Output Expected deliverable 3. Dispatch Concurrently IMPORTANT : Launch all tasks in a single message (no run_in_background ). Multiple Task calls in the same message automatically run in parallel, and Claude waits for all to complete. # All three tasks run in parallel automatically when in the same message Task(test-engineer, prompt="Fix auth test failures in src/auth/*.test.ts") Task(test-engineer, prompt="Fix API test failures in src/api/*.test.ts") Task(frontend-developer, prompt="Fix UI test failures in src/components/*.test.tsx") # Claude waits for all to complete, then continues Avoid run_in_background: true unless you need to do other work while waiting. Task IDs must be captured and used within the same response. 4. Integrate Results Review all agent outputs (available after parallel completion) Verify no conflicts between changes Run full test suite Merge changes Effective Agent Prompts Good prompt: Fix the 3 failing tests in src/auth/login.test.ts: - "should reject invalid email format" - "should require password min length" - "should handle network errors" Error messages attached. Identify root causes - don't just increase timeouts. Constraints: Don't modify src/api/* files. Output: Summary of fixes with test results. Bad prompt: Fix all the tests Prompt Template ## Task: [Specific description] **Scope:** [Files/tests to focus on] **Failures:** - [Test name]: [Error message] - [Test name]: [Error message] **Goal:** [What success looks like] **Constraints:** - Don't modify [files] - Preserve [behavior] **Output:** - Summary of root causes found - Changes made - Verification results Common Pitfalls Mistake Problem Solution Vague scope Agent changes wrong files Specify exact paths Missing context Agent can't diagnose Include error messages No constraints Conflicting changes Define boundaries Unclear output Can't verify success Specify deliverables Benefits Reduces investigation time through parallelization Each agent maintains narrow focus Minimizes cross-agent interference Solves multiple problems concurrently Background Execution For long-running tasks where you need to continue working, use run_in_background: true . Pattern: Background + Foreground # Long-running audit in background audit_task = Task(security-auditor, prompt="Full security audit", run_in_background: true) # Continue with implementation work Task(frontend-developer, prompt="Build login form") # Later, get audit results TaskOutput(audit_task.id, block: true) Pattern: Multiple Background Tasks # Launch multiple background tasks task1 = Task(test-engineer, prompt="...", run_in_background: true) task2 = Task(code-reviewer, prompt="...", run_in_background: true) # Do other work... # Collect all results result1 = TaskOutput(task1.id, block: true) result2 = TaskOutput(task2.id, block: true) When to Use Background vs Foreground Scenario Mode Why Quick tasks (< 1 min) Foreground Simpler, immediate results Long audit/analysis Background Continue working Multiple independent tasks Foreground (parallel) Auto-waits for all Security + Implementation Background + Foreground Overlap work Important Notes Task IDs are only valid within the same response Always use block: true when retrieving results with TaskOutput Prefer foreground parallel (single message, multiple Tasks) when possible Background tasks should be collected before the response ends
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 / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。