从验收标准创建检查清单,编排executor→validator循环并带重试逻辑。当子协调器开始实现或收到验证失败时使用。
/plugin marketplace add blueif16/amazing-claude-code-plugins/plugin install blueif16-infistack-infistack@blueif16/amazing-claude-code-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
所有者: 仅子协调器
从验收标准生成:
checklist:
- id: check-1
description: "用户注册创建账户"
command: "npm test -- --grep 'registration'"
expected: "exit 0, 用户在数据库中"
- id: check-2
description: "无效邮箱被拒绝"
command: "npm test -- --grep 'validation'"
expected: "exit 0, 400响应"
attempt = 0
max_attempts = 3
while attempt < max_attempts:
if attempt == 0:
call executor(task: "implement", prd: mini_prd)
else:
call executor(task: "fix", failures: last_failures, previous_attempts: history)
result = call validator(checklist: checklist)
if result.passed:
return SUCCESS
history.append({
attempt: attempt,
failures: result.failures,
executor_notes: executor.notes,
code_snippets: result.relevant_code
})
attempt++
return ESCALATE(error_report: history)
error_report:
section_id: "auth-module"
attempts: 3
final_failures:
- check_id: check-2
expected: "400响应"
actual: "500响应"
code_snippet: |
// src/auth/validate.ts:45-62
function validateEmail(email) { ... }
tested_methods:
- validateEmail()
- UserService.create()
- AuthController.register()
history:
- attempt: 1
approach: "初始实现"
failures: [...]
- attempt: 2
approach: "添加try-catch"
failures: [...]
- attempt: 3
approach: "重构验证"
failures: [...]
将error_report交给escalation-router。
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.