Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

subagent-orchestrator子 Agent 协调器

Agent Skill

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

总安装

636

周安装

26

GitHub Stars

16

下载量

206
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:subagent-orchestrator(子 Agent 协调器)
来源仓库:https://github.com/flc1125/skills
仓库路径:skills/subagent-orchestrator
安装命令:
npx skills add https://github.com/flc1125/skills --skill subagent-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/flc1125/skills --skill subagent-orchestrator

简介

subagent-orchestrator 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Subagent Orchestrator

Assemble a temporary team of subagents for a user-requested task. Keep the main thread focused on scope, decisions, and synthesis while delegated agents handle bounded work.

Operating Mode

  • Use this skill when the user explicitly asks for subagents, delegation, parallel work, or a temporary team.
  • Treat explicit invocation of $subagent-orchestrator as permission to use subagents.
  • Treat team assembly as a planning problem first and an execution problem second.
  • Prefer role-based delegation with explicit ownership over ad hoc spawning.
  • Keep noisy intermediate work off the main thread and return summaries instead of raw agent chatter.

Resource Map

Read references/roles-index.md first. Then load only the role and pattern files that match the task.

- references/role-lead.md - references/role-planner.md - references/role-explorer.md - references/role-implementer.md - references/role-reviewer.md - references/role-tester.md - references/role-integrator.md

Team Modes

Choose one mode before assembling the team:

  • assemble-only: Build the roster, ownership map, and execution order without starting work.
  • assemble-and-run: Build the team and execute immediately. Use this by default when the user asks to do the task now.
  • reuse-team: Continue with live subagents that still own relevant context. If no suitable live team exists, fall back to assemble-and-run.

Orchestration Workflow

Follow this sequence unless the user asks for a narrower deliverable.

1. Frame the task

Extract and restate:

  • user objective
  • required deliverable
  • constraints, approvals, and safety boundaries
  • relevant codebase, files, or artifacts
  • time sensitivity
  • desired team mode

If the request did not clearly ask for subagents and the skill was not explicitly invoked, do not spawn subagents. Ask or continue in a single-agent path.

2. Classify the execution shape

Use one label for the whole task or one label per slice:

  • read-only: exploration, review, summarization, log analysis, test triage, architecture mapping
  • disjoint-write: multiple owned slices with low overlap, such as separate modules or test files
  • overlap-write: shared interfaces, hotspot files, schema changes, routing layers, central types, or config that multiple agents would otherwise touch

If uncertain, choose the stricter label.

3. Assemble the team

Read references/roles-index.md and references/team-patterns.md as needed.

Apply these rules:

  • Choose exactly one lead.
  • Add a planner when the request is ambiguous, under-scoped, or likely to require contract freezing before implementation.
  • Add one or more explorer roles for discovery-heavy work.
  • Add implementer roles only when each writer can own a clear slice.
  • Add a reviewer and a tester for validation when behavior can change.
  • Add an integrator whenever multiple writers would touch shared surfaces or when overlap risk is nontrivial.

Prefer preset roles from the registry. If no preset role fits, synthesize a temporary role brief by following references/role-contract.md. Keep temporary roles task-local and do not persist them unless the user explicitly asks.

4. Declare ownership and handoffs

For each subagent, define:

  • mission
  • scope
  • owned files, modules, or analysis slice
  • forbidden areas
  • required tools or artifacts
  • expected deliverable
  • expert standard: act as the most senior expert in the assigned domain, stay diligent, rigorous, and principled within the owned scope, and refuse sloppy or boundary-breaking work
  • stop conditions
  • wait strategy

For write work:

  • Assign exactly one designated writer for each hotspot or shared contract.
  • Freeze shared interfaces before parallel implementation when possible.
  • Convert risky overlap into a two-phase flow: parallel proposals first, implementation second.

5. Choose the execution pattern

Use the classification from Step 2:

  • read-only: parallelize discovery, review, or summarization, then synthesize.
  • disjoint-write: parallelize by owned slice, then integrate and validate.
  • overlap-write: run a proposal-first phase, then route shared implementation through a single designated writer or an integrator.

After implementation, reopen parallelism for validation whenever it is safe:

  • reviewer for bugs and regressions
  • tester for commands and edge-case coverage
  • explorer for missed call sites or dependency fallout

6. Execute with bounded prompts

Give each subagent the minimum task-local context needed to succeed.

Include:

  • the task slice
  • owned scope
  • expected output
  • constraints and forbidden areas
  • the expert standard: behave like the most senior expert for that slice and remain diligent, rigorous, and principled within the role boundary
  • whether to wait or continue independently

Do not leak intended answers or hidden diagnoses unless the task specifically requires them.

7. Synthesize on the main thread

Keep the main thread concise.

Return:

  • the final roster
  • execution class and chosen pattern
  • ownership map
  • key findings or implementation results
  • unresolved risks and next steps

Use summaries from subagents instead of copying raw logs into the main thread.

Write Safety Rules

Apply these rules whenever code changes are involved:

  • Never let multiple writers edit the same hotspot file at the same time.
  • Separate proposal work from write work when conflict risk is real.
  • Route schema changes, shared types, public API contracts, migrations, central config, and routing through one designated writer.
  • Use an integrator when multiple patches must land coherently.
  • Re-parallelize only after shared-write risk has been reduced.
  • Prefer a slower but controlled merge path over fast conflicting edits.

Output Structure

When the user asks for a team plan or when the orchestration needs to be summarized, use this structure:

# Team Plan

## Objective
- <goal>

## Team Mode
- <assemble-only | assemble-and-run | reuse-team>

## Execution Class
- <read-only | disjoint-write | overlap-write>

## Roster
- <role>: <mission and owned scope>

## Handoffs
- <who waits on whom and why>

## Risks
- <conflict, ambiguity, or approval risks>

When reporting completed work, replace Handoffs with Results.

Extending the Role Library

Use the role registry as a plug-in system.

To add a new permanent role:

  1. Create a new references/role-<name>.md file by following references/role-contract.md.
  2. Register the role in references/roles-index.md.
  3. Update references/team-patterns.md only if the new role introduces a reusable team slot or a new common pattern.
  4. Keep capability tags stable so old selection logic still works.

Prefer selecting roles by capability tags and write policy rather than hardcoding exact role names into the main workflow.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

34.54%
按下载量换算71

Claude

31.59%
按下载量换算65

Cursor

20.51%
按下载量换算42

Gemini CLI

10.41%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/flc1125/skills --skill subagent-orchestrator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills