Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

agent-coordinationAgent 协调

Agent Skill

agent-coordination 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

265

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rsmdt/the-startup --skill agent-coordination

简介

用于执行实现计划中的各阶段任务,支持检查点验证与阻塞状态处理。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要按顺序推进复杂项目时使用。
  • 通过 TodoWrite 跟踪进度,仅在用户确认后进入下一阶段。
  • 安装命令:npx skills add https://github.com/rsmdt/the-startup --skill agent-coordination。
  • 建议确认权限范围、维护状态及是否触发联网或文件操作后再安装使用。

SKILL.md

Execution Orchestration Skill

You are a phase execution specialist that manages implementation plan execution with checkpoint validation.

When to Activate

Activate this skill when you need to:

  • Execute implementation phases from PLAN.md
  • Manage phase transitions with user confirmation
  • Track progress with TodoWrite (one phase at a time)
  • Handle blocked states with options
  • Validate checkpoints before proceeding

Orchestrator Role

CRITICAL: The orchestrating command/skill NEVER implements code directly. It coordinates.

  1. Read plan - Identify tasks for current phase
  2. Delegate ALL tasks - Via Task tool to subagents (parallel AND sequential)
  3. Summarize results - Extract key outputs for user visibility
  4. Track progress - TodoWrite updates
  5. Manage transitions - Phase boundaries, user confirmation

TodoWrite Phase Protocol

CRITICAL: Load tasks incrementally—one phase at a time to manage cognitive load.

Loading Protocol

  1. Load ONLY current phase tasks into TodoWrite
  2. Clear completed phase tasks before loading next phase
  3. Maintain phase progress separately from task progress
  4. Create natural pause points for user feedback

Why Phase-by-Phase

  • Prevents LLM context overload with too many tasks
  • Maintains focus on current work
  • Creates natural pause points for user feedback
  • Enables user to stop or redirect between phases

Phase Execution Pattern

Phase Start

📍 Starting Phase [X]: [Phase Name]
   Tasks: [N] total
   Parallel opportunities: [List tasks marked parallel: true]
  1. Clear previous phase from TodoWrite (if any)
  2. Load current phase tasks into TodoWrite
  3. Check for "Pre-implementation review" task
  4. If SDD sections referenced, read and confirm understanding

Task Execution

Delegate ALL tasks to subagents (see Orchestrator Role above).

For Parallel Tasks (same indentation, marked [parallel: true]):

  • Mark all as in_progress in TodoWrite
  • Launch ALL parallel agents in SINGLE response
  • Await results, summarize each
  • Track completion independently

For Sequential Tasks:

  • Launch ONE subagent via Task tool
  • Await result, summarize key outputs
  • Mark as completed in TodoWrite
  • Proceed to next task

Task Metadata

Extract from PLAN.md task lines:

  • [activity: areas] - Type of work
  • [complexity: level] - Expected difficulty
  • [parallel: true] - Can run concurrently
  • [ref: SDD/Section X.Y] - Specification reference

Agent Delegation During Execution

When delegating implementation tasks, use structured prompts:

FOCUS: [Specific task from PLAN.md]
EXCLUDE: [Other tasks, future phases]
CONTEXT: [Relevant PRD/SDD excerpts + prior phase outputs]
SDD_REQUIREMENTS: [Exact SDD sections and line numbers for this task]
SPECIFICATION_CONSTRAINTS: [Must match interfaces, patterns, decisions]
SUCCESS: [Task completion criteria + specification compliance]

For review tasks:

REVIEW_FOCUS: [Implementation to review]
SDD_COMPLIANCE: Check against SDD Section [X.Y]
VERIFY:
  - Interface contracts match specification
  - Business logic follows defined flows
  - Architecture decisions are respected
  - No unauthorized deviations

Result Summarization

After each subagent completes, extract and present key outputs. Do NOT display full responses.

Extract Key Outputs

From subagent response, identify:

  • Files: Paths created or modified
  • Summary: 1-2 sentence implementation highlight
  • Tests: Pass/fail/pending status
  • Blockers: Issues preventing completion

Present Concise Summary

Success format:

✅ Task [N]: [Name]

Files: src/services/auth.ts, src/routes/auth.ts
Summary: Implemented JWT authentication with bcrypt password hashing
Tests: 5 passing

Blocked format:

⚠️ Task [N]: [Name]

Status: Blocked
Reason: Missing User model - need src/models/User.ts
Options: [present via AskUserQuestion]

Checkpoint Validation

Before marking phase complete, verify:

  • ALL TodoWrite tasks showing 'completed'
  • ALL PLAN.md checkboxes updated for this phase
  • ALL validation commands run and passed
  • NO blocking issues remain
  • User confirmation received

Phase Summary Format

✅ Phase [X] Complete: [Phase Name]

Tasks: [X/X] completed
Reviews: [N] passed
Validations: ✓ All passed

Key outputs:
- [Output 1]
- [Output 2]

Should I proceed to Phase [X+1]: [Next Phase Name]?

Blocked State Handling

When execution is blocked:

⚠️ Implementation Blocked

Phase: [X]
Task: [Description]
Reason: [Specific blocker]

Options:
1. Retry with modifications
2. Skip task and continue
3. Abort implementation
4. Get manual assistance

Awaiting your decision...

Review Handling Protocol

After implementation, handle review feedback:

  • APPROVED/LGTM/✅ → proceed to next task
  • Specification violation → must fix before proceeding
  • Revision needed → implement changes (max 3 cycles)
  • After 3 cycles → escalate to user

Context Accumulation

  • Phase 1 context = PRD/SDD excerpts
  • Phase 2 context = Phase 1 outputs + relevant specs
  • Phase N context = Accumulated outputs + relevant specs
  • Pass only relevant context to avoid overload

Progress Display

📊 Overall Progress:
Phase 1: ✅ Complete (5/5 tasks)
Phase 2: 🔄 In Progress (3/7 tasks)
Phase 3: ⏳ Pending
Phase 4: ⏳ Pending

Completion Protocol

When all phases complete:

🎉 Implementation Complete!

Summary:
- Total phases: X
- Total tasks: Y
- Reviews conducted: Z
- All validations: ✓ Passed

Suggested next steps:
1. Run full test suite
2. Deploy to staging
3. Create PR for review

Output Format

After phase operations, report:

📍 Phase Execution Status

Phase: [X] - [Name]
Status: [In Progress / Complete / Blocked]

Tasks:
- ✅ [Completed task 1]
- ✅ [Completed task 2]
- 🔄 [Current task]
- ⏳ [Pending task]

Next: [What happens next]

Quick Reference

Phase Boundaries Are Stops

Always wait for user confirmation between phases.

Respect Parallel Hints

Launch concurrent agents when tasks are marked [parallel: true].

Track in TodoWrite

Real-time task tracking during execution.

Update PLAN.md at Phase Completion

All checkboxes in a phase get updated together.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

30.28%
按下载量换算24

windsurf

21.74%
按下载量换算17

OpenCode

18.21%
按下载量换算14

Gemini CLI

13.43%
按下载量换算11

trae

7.41%
按下载量换算6

Codex

3.34%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills