Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计未展示

ring%3adispatching-parallel-agentsRing%3a 正在调度并行 Agent

Agent Skill

ring%3adispatching-parallel-agents 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

599

周安装

25

GitHub Stars

180

下载量

1
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ring%3adispatching-parallel-agents(Ring%3a 正在调度并行 Agent)
来源仓库:https://github.com/lerianstudio/ring
仓库路径:skills/ring%3Adispatching-parallel-agents
安装命令:
npx skills add https://github.com/lerianstudio/ring --skill ring:dispatching-parallel-agents
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:dispatching-parallel-agents

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 GitHub 仓库获取技能定义,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • ring%3adispatching-parallel-agents 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dispatching Parallel Agents

Overview

When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel.

Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.

When to Use

Decision flow: Multiple failures? → Are they independent? (No → single agent) | Independent? → Can work in parallel? (No/shared state → sequential) | Yes → Parallel dispatch

Use when: 3+ test files with different root causes | Multiple subsystems broken independently | Each problem understood without others | No shared state

Don't use when: Failures related (fix one might fix others) | Need full system state | Agents would interfere

The Pattern

1. Identify Independent Domains: Group failures by what's broken (File A: approval flow, File B: batch behavior, File C: abort). Each domain independent.

2. Create Focused Agent Tasks: Each agent gets: specific scope (one file/subsystem), clear goal (make tests pass), constraints (don't change other code), expected output (summary of findings/fixes).

3. Dispatch in Parallel: Task("Fix agent-tool-abort.test.ts") + Task("Fix batch-completion.test.ts") + Task("Fix tool-approval-races.test.ts") - all concurrent.

4. Review and Integrate: Read summaries → verify no conflicts → run full test suite → integrate all changes.

Agent Prompt Structure

Good prompts are: Focused (one problem domain), Self-contained (all context included), Specific output (what to return).

Example: "Fix 3 failing tests in agent-tool-abort.test.ts: [list tests + expected behavior]. Timing/race issues. Read tests → identify root cause → fix (event-based waiting, not timeout increases). Return: Summary of findings and fixes."

Common Mistakes

❌ Bad✅ Good
Too broad: "Fix all tests"Specific: "Fix agent-tool-abort.test.ts"
No context: "Fix race condition"Context: Paste error messages + test names
No constraints: Agent refactors everythingConstraints: "Do NOT change production code"
Vague output: "Fix it"Specific: "Return summary of root cause and changes"

When NOT to Use

Related failures (fix one might fix others) | Need full context | Exploratory debugging | Shared state (same files/resources)

Real Example

Scenario: 6 failures across 3 files after refactoring. Decision: Independent domains → parallel dispatch. Results: Agent 1 (timeouts → events), Agent 2 (event structure bug), Agent 3 (async wait). All independent, no conflicts, suite green. 3 problems solved in time of 1.

Key Benefits

Parallelization (simultaneous) | Focus (narrow scope) | Independence (no interference) | Speed (3 → 1 time unit)

Verification

After agents return: Review summaries → check for conflicts → run full suite → spot check for systematic errors.

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Independence checkProblems share state or filesSTOP and use sequential investigation instead
Minimum thresholdFewer than 3 independent failuresSTOP and investigate directly without parallel dispatch
Conflict detectionAgent changes would overlapSTOP and re-partition domains
Context requirementsProblem requires full system contextSTOP and use single agent investigation

Cannot Be Overridden

The following requirements CANNOT be waived:

  • Problems MUST be verified independent before parallel dispatch - shared state means sequential
  • Minimum 3 failures REQUIRED for parallel dispatch - fewer means direct investigation
  • Each agent MUST have focused scope (one file/subsystem) - broad scope is FORBIDDEN
  • Agent prompts MUST include constraints about what NOT to change
  • Full test suite MUST run after integrating all agent changes

Severity Calibration

SeverityConditionRequired Action
CRITICALDispatched agents for related/connected failuresMUST stop and switch to sequential investigation
CRITICALAgent changes conflict with each otherMUST re-partition domains and re-dispatch
HIGHAgent prompt lacks scope constraintsMUST add specific "do NOT change" constraints
HIGHSkipped post-integration test suiteMUST run full test suite before completion
MEDIUMAgent prompt lacks expected output formatShould add specific output requirements
LOWCould optimize domain partitioningFix in next iteration

Pressure Resistance

User SaysYour Response
"Just dispatch agents for all failures, don't analyze""MUST verify independence first. Related failures need sequential investigation to avoid conflicts."
"Two failures is enough for parallel dispatch""CANNOT dispatch for fewer than 3 failures. Direct investigation is faster for 1-2 problems."
"Skip the verification step, agents finished successfully""MUST run full test suite after integration. Agent success doesn't guarantee no conflicts."
"Give agents broad scope to fix more issues""Focused scope prevents interference. MUST limit each agent to one file/subsystem."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"These failures look independent enough"Looking independent ≠ verified independent; check for shared stateMUST verify independence before dispatch
"Dispatching for 2 failures saves time"Overhead of parallel dispatch exceeds benefit for <3 failuresMUST investigate directly if fewer than 3
"Agents can figure out their own scope"Unclear scope causes agents to interfere with each otherMUST provide explicit scope and constraints
"Test suite passed for each agent"Individual success doesn't catch integration conflictsMUST run full suite after integration
"Re-partitioning is too much work"Conflicting changes create more work than re-partitioningMUST re-partition if domains overlap

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.53%
按下载量换算0

Claude

28.52%
按下载量换算0

Cursor

17.1%
按下载量换算0

Gemini CLI

9.45%
按下载量换算0

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills