coordinator-response-mode

GitHub

该技能用于协调员在路由确定代理后,根据任务复杂度选择响应模式(Direct/Lightweight/Standard/Full)。包含决策表、示例提示词及升级规则,旨在优化工作流效率与资源分配。

.squad/templates/skills/coordinator-response-mode/SKILL.md microsoft/Generative-AI-for-beginners-dotnet

Trigger Scenarios

已确定处理代理但需选择响应级别 需要判断任务复杂度以决定调用层级

Install

npx skills add microsoft/Generative-AI-for-beginners-dotnet --skill coordinator-response-mode -g -y
More Options

Non-standard path

npx skills add https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/.squad/templates/skills/coordinator-response-mode -g -y

Use without installing

npx skills use microsoft/Generative-AI-for-beginners-dotnet@coordinator-response-mode

指定 Agent (Claude Code)

npx skills add microsoft/Generative-AI-for-beginners-dotnet --skill coordinator-response-mode -a claude-code -g -y

安装 repo 全部 skill

npx skills add microsoft/Generative-AI-for-beginners-dotnet --all -g -y

预览 repo 内 skill

npx skills add microsoft/Generative-AI-for-beginners-dotnet --list

SKILL.md

Frontmatter
{
    "name": "coordinator-response-mode",
    "domain": "squad-internals",
    "source": "Extracted from squad.agent.md as part of the slimming effort (bradygaster\/squad#1308). Behaviour unchanged — coordinator loads this satellite skill after Routing, before spawn.",
    "confidence": "high",
    "description": "Selecting WHO handles work is the Routing table; selecting HOW they handle it (Direct, Lightweight, Standard, Full) is Response Mode. This skill contains the complete decision table, exemplar prompts for each mode, the Lightweight spawn template, and the upgrade rules. Squad coordinator loads this on demand once routing has identified the agent — to pick the right ceremony level for the task.",
    "allowedTools": []
}

Load this skill when: you have routed work to an agent and need to pick the response mode (Direct / Lightweight / Standard / Full). The 1-line stub in squad.agent.md is for awareness; this skill is the full decision table + templates.

Response Mode Selection

After routing determines WHO handles work, select the response MODE based on task complexity. Bias toward upgrading — when uncertain, go one tier higher rather than risk under-serving.

Mode When How Target
Direct Status checks, factual questions the coordinator already knows, simple answers from context Coordinator answers directly — NO agent spawn ~2-3s
Lightweight Single-file edits, small fixes, follow-ups, simple scoped read-only queries Spawn ONE agent with minimal prompt (see Lightweight Spawn Template below). Use agent_type: "explore" for read-only queries ~8-12s
Standard Normal tasks, single-agent work requiring full context Spawn one agent with full ceremony — charter inline, history read, decisions read. This is the current default ~25-35s
Full Multi-agent work, complex tasks touching 3+ concerns, "Team" requests Parallel fan-out, full ceremony, Scribe included ~40-60s

Direct Mode exemplars

Coordinator answers instantly, no spawn:

  • "Where are we?" → Summarize current state from context: branch, recent work, what the team's been doing. A user favorite — make it instant.
  • "How many tests do we have?" → Run a quick command, answer directly.
  • "What branch are we on?"git branch --show-current, answer directly.
  • "Who's on the team?" → Answer from team.md already in context.
  • "What did we decide about X?" → Answer from decisions.md already in context.

Lightweight Mode exemplars

One agent, minimal prompt:

  • "Fix the typo in README" → Spawn one agent, no charter, no history read.
  • "Add a comment to line 42" → Small scoped edit, minimal context needed.
  • "What does this function do?"agent_type: "explore" (Haiku model, fast).
  • Follow-up edits after a Standard/Full response — context is fresh, skip ceremony.

Standard Mode exemplars

One agent, full ceremony:

  • "{AgentName}, add error handling to the export function"
  • "{AgentName}, review the prompt structure"
  • Any task requiring architectural judgment or multi-file awareness.

Full Mode exemplars

Multi-agent, parallel fan-out:

  • "Team, build the login page"
  • "Add OAuth support"
  • Any request that touches 3+ agent domains.

Mode upgrade rules

  • If a Lightweight task turns out to need history or decisions context → treat as Standard.
  • If uncertain between Direct and Lightweight → choose Lightweight.
  • If uncertain between Lightweight and Standard → choose Standard.
  • Never downgrade mid-task. If you started Standard, finish Standard.

Lightweight Spawn Template

Skip charter, history, and decisions reads — just the task:

agent_type: "general-purpose"
model: "{resolved_model}"
mode: "background"
name: "{name}"
description: "{emoji} {Name}: {brief task summary}"
prompt: |
  You are {Name}, the {Role} on this project.
  TEAM ROOT: {team_root}
  CURRENT_DATETIME: <resolved CURRENT_DATETIME literal>
  WORKTREE_PATH: {worktree_path}
  WORKTREE_MODE: {true|false}
  **Requested by:** {current user name}
  
  {% if WORKTREE_MODE %}
  **WORKTREE:** Working in `{WORKTREE_PATH}`. All operations relative to this path. Do NOT switch branches.
  {% endif %}

  TASK: {specific task description}
  TARGET FILE(S): {exact file path(s)}

  Do the work. Keep it focused.
  If you made a meaningful decision, persist it with `memory.write` (class: `decision`) when available, or fall back to `squad_decide` / `squad_state_write` to `decisions/inbox/{name}-{brief-slug}.md`. Do not run git notes, switch branches, or write mutable `.squad/` state by hand.

  ⚠️ OUTPUT: Report outcomes in human terms. Never expose tool internals or SQL.
  ⚠️ RESPONSE ORDER: After ALL tool calls, write a plain text summary as FINAL output.

For read-only queries, use the explore agent: agent_type: "explore" with "You are {Name}, the {Role}. CURRENT_DATETIME: <resolved CURRENT_DATETIME literal> — {question} TEAM ROOT: {team_root}"

Version History

  • bd4e082 Current 2026-08-20 14:05

Same Skill Collection

.github/skills/agent-collaboration/SKILL.md
.github/skills/coordinator-init-mode/SKILL.md
.github/skills/coordinator-response-mode/SKILL.md
.github/skills/coordinator-source-of-truth/SKILL.md
.github/skills/cross-squad-communication/SKILL.md
.github/skills/cross-squad/SKILL.md
.github/skills/error-recovery/SKILL.md
.github/skills/git-workflow/SKILL.md
.github/skills/iterative-retrieval/SKILL.md
.github/skills/reflect/SKILL.md
.github/skills/reviewer-protocol/SKILL.md
.github/skills/secret-handling/SKILL.md
.github/skills/session-recovery/SKILL.md
.github/skills/squad-conventions/SKILL.md
.github/skills/squad-help/SKILL.md
.github/skills/squad-version-check/SKILL.md
.github/skills/squad/SKILL.md
.github/skills/tiered-memory/SKILL.md
.squad/templates/skills/agent-collaboration/SKILL.md
.squad/templates/skills/agent-conduct/SKILL.md
.squad/templates/skills/architectural-proposals/SKILL.md
.squad/templates/skills/ci-validation-gates/SKILL.md
.squad/templates/skills/client-compatibility/SKILL.md
.squad/templates/skills/coordinator-init-mode/SKILL.md
.squad/templates/skills/coordinator-source-of-truth/SKILL.md
.squad/templates/skills/cross-machine-coordination/SKILL.md
.squad/templates/skills/cross-squad-communication/SKILL.md
.squad/templates/skills/cross-squad/SKILL.md
.squad/templates/skills/distributed-mesh/SKILL.md
.squad/templates/skills/docs-standards/SKILL.md
.squad/templates/skills/e2e-template-testing/SKILL.md
.squad/templates/skills/economy-mode/SKILL.md
.squad/templates/skills/error-recovery/SKILL.md
.squad/templates/skills/external-comms/SKILL.md
.squad/templates/skills/fact-checking/SKILL.md
.squad/templates/skills/gh-auth-isolation/SKILL.md
.squad/templates/skills/git-workflow/SKILL.md
.squad/templates/skills/github-multi-account/SKILL.md
.squad/templates/skills/history-hygiene/SKILL.md
.squad/templates/skills/humanizer/SKILL.md
.squad/templates/skills/init-mode/SKILL.md
.squad/templates/skills/iterative-retrieval/SKILL.md
.squad/templates/skills/model-selection/SKILL.md
.squad/templates/skills/nap/SKILL.md
.squad/templates/skills/notification-routing/SKILL.md
.squad/templates/skills/personal-squad/SKILL.md
.squad/templates/skills/pr-review-response/SKILL.md
.squad/templates/skills/pr-screenshots/SKILL.md
.squad/templates/skills/ralph-two-pass-scan/SKILL.md

Metadata

Files
0
Version
bd4e082
Hash
9e022fe0
Indexed
2026-08-20 14:05

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-25 09:52
浙ICP备14020137号-1 $방문자$