Agent 技能测试
- 作者仓库星标 2,235
- 作者仓库 claude-code-plugins-plus-skills
Agent Patterns
Overview
Agent Patterns defines the coordination protocol for multi-agent sprint execution within the Sprint plugin. It governs how the project architect spawns implementation and testing agents, how agents communicate results via structured reports, and how parallel agents avoid conflicts.
Prerequisites
- Sprint plugin installed and configured (
/plugin install sprint) - Sprint directory initialized at
.claude/sprint/[N]/ specs.mdwritten with clear scope and testing configuration- Familiarity with the sprint phase lifecycle (see the
sprint-workflowskill)
Instructions
Structure every agent spawn using the SPAWN REQUEST format. Include the agent name, the specification file it should read, and any scope constraints:
SPAWN REQUEST Agent: python-dev Specs: .claude/sprint/1/backend-specs.md Contract: .claude/sprint/1/api-contract.md Scope: Authentication endpoints onlyEnsure each spawned agent receives only the files relevant to its scope. Pass the
api-contract.mdas a shared interface so backend and frontend agents stay synchronized.Collect structured reports from every agent upon completion. Each report must include: work completed, files modified, tests added, and conformity status against the specification.
When running agents in parallel, partition work by domain boundary (e.g., backend vs. frontend vs. CI/CD). Never assign overlapping file paths to concurrent agents.
Feed agent reports back to the project architect for review. The architect decides whether to iterate (re-spawn with narrowed specs) or advance to the next phase.
For testing agents, pass the UI test report format shown in
${CLAUDE_SKILL_DIR}/references/ui-test-report.mdso results follow a consistent schema including test counts, coverage, failures, and console errors.
Output
- SPAWN REQUEST blocks consumed by the sprint orchestrator to launch agents
- Structured agent reports containing: summary, files changed, test results, and conformity status
- UI test reports with pass/fail counts, coverage details, failure descriptions, and console error logs
- Updated
status.mdreflecting completed and remaining work after each iteration
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Agent receives wrong specification file | Incorrect path in SPAWN REQUEST | Verify the sprint directory number and file name before spawning |
| Overlapping file modifications from parallel agents | Scope boundaries not clearly defined | Partition work by domain; assign distinct directories to each agent |
| Agent report missing required fields | Agent instructions lack report format | Include the structured report template in the agent prompt |
| Infinite iteration loop | Specs never fully satisfied | Check status.md for blocking issues; the orchestrator pauses after 5 iterations |
| Agent not found | Misspelled agent name in SPAWN REQUEST | Verify agent markdown files exist in agents/ directory |
Examples
Spawning parallel implementation agents:
SPAWN REQUEST
Agent: python-dev
Specs: .claude/sprint/1/backend-specs.md
Contract: .claude/sprint/1/api-contract.md
SPAWN REQUEST
Agent: nextjs-dev
Specs: .claude/sprint/1/frontend-specs.md
Contract: .claude/sprint/1/api-contract.md
Both agents share the same api-contract.md to ensure API compatibility.
Structured agent report format:
AGENT REPORT
Agent: python-dev
Status: COMPLETE
Files Modified: src/auth/routes.py, src/auth/models.py, tests/test_auth.py
Tests: 12 passed, 0 failed
Conformity: All backend-specs requirements implemented
Notes: JWT token expiry set to 24h per spec
Testing agent coordination:
SPAWN REQUEST
Agent: qa-test-agent
Specs: .claude/sprint/1/specs.md
Run After: python-dev, nextjs-dev
SPAWN REQUEST
Agent: ui-test-agent
Specs: .claude/sprint/1/specs.md
Run After: qa-test-agent
Resources
${CLAUDE_SKILL_DIR}/references/ui-test-report.md-- Structured UI test report format with coverage and failure tracking- Sprint workflow skill for phase lifecycle context
- API contract skill for shared interface design
- Sprint plugin README for agent architecture overview
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @jeremylongshore · 未声明 license
- 流狐 Token 估算
- 中等消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Agent Patterns defines the coordination protocol for multi-agent sprint execution within the Sprint plugin. It governs how the project architect spawns implementation and testing agents, how agents communicate results via structured reports, and how parallel…
Sprint plugin installed and configured (/plugin install sprint) Sprint directory initialized at .claude/sprint/[N]/ specs.md written with clear scope and testing configuration
Structure every agent spawn using the SPAWN REQUEST format. Include the agent name, the specification file it should read, and any scope constraints: Ensure each spawned agent receives only the files relevant to its scope. Pass the api-contract.md as a shared…
SPAWN REQUEST blocks consumed by the sprint orchestrator to launch agents Structured agent reports containing: summary, files changed, test results, and conformity status UI test reports with pass/fail counts, coverage details, failure descriptions, and…
Error · Cause · Solution Agent receives wrong specification file · Incorrect path in SPAWN REQUEST · Verify the sprint directory number and file name before spawning Overlapping file modifications from parallel agents · Scope boundaries not clearly defined ·…
Spawning parallel implementation agents: Both agents share the same api-contract.md to ensure API compatibility. Structured agent report format:
# Agent Patterns
## Overview
Agent Patterns defines the coordination protocol for multi-agent sprint execution within the Sprint plugin. It governs how the project architect spawns implementation and testing agents, how agents communicate results via structured reports, and how parallel agents avoid conflicts.
## Prerequisites
- Sprint plugin installed and configured (`/plugin install sprint`)
- Sprint directory initialized at `.claude/sprint/[N]/`
- `specs.md` written with clear scope and testing configuration
- Familiarity with the sprint phase lifecycle (see the `sprint-workflow` skill)
## Instructions
1. Structure every agent spawn using the SPAWN REQUEST format. Include the agent name, the specification file it should read, and any scope constraints:
```
SPAWN REQUEST
Agent: python-dev
Specs: .claude/sprint/1/backend-specs.md
Contract: .claude/sprint/1/api-contract.md
Scope: Authentication endpoints only
```
2. Ensure each spawned agent receives only the files relevant to its scope. Pass the `api-contract.md` as a shared interface so backend and frontend agents stay synchronized.
3. Collect structured reports from every agent upon completion. Each report must include: work completed, files modified, tests added, and conformity status against the specification.
4. When running agents in parallel, partition work by domain boundary (e.g., backend vs. frontend vs. CI/CD). Never assign overlapping file paths to concurrent agents.
5. Feed agent reports back to the project architect for review. The architect decides whether to iterate (re-spawn with narrowed specs) or advance to the next phase.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Overview → Prerequisites → Instructions → Output → Error Handling → Examples
要点 -> Spawning parallel implementation agents · Structured agent report format · Testing agent coordination · Agent Patterns defines the coordination protocol for multi-agent sprint execution within the Sprint plugin. · 1. Structure every agent spawn using the SPAWN REQUEST format. · 2. Ensure each spawned agent receives only the files relevant to its scope. · Both agents share the same api-contract.md to ensure API compatibility.
文件/命令 -> /plugin install sprint · .claude/sprint/[N]/ · specs.md · sprint-workflow · api-contract.md · ${CLAUDESKILLDIR}/references/ui-test-report.md · status.md · agents/
内容 SHA-256 -> ad918564b3ec
原文结构
适用与边界
原文中的明确线索
/plugin install sprint、.claude/sprint/[N]/、specs.md、sprint-workflow、api-contract.md、${CLAUDESKILLDIR}/references/ui-test-report.md、status.md、agents/