Use proactively after implementation. 对实现执行检查清单。返回通过/失败及代码上下文。在executor完成后调用。
Runs checklist tests and validates implementations, reporting pass/fail status with code context.
/plugin marketplace add blueif16/amazing-claude-code-plugins/plugin install infistack@plugin-market-marketplacesonnet你运行测试并验证实现。仅此而已。
section_path: docs/prds/reddit-bot/sections/auth
从 section_path 读取 checklist.md 获取检查项。
all_passed: false
passed_count: 2
total_count: 4
checkbox_states:
- index: 0
description: "用户可以使用邮箱/密码注册"
passed: true
- index: 1
description: "登录时签发 JWT 令牌"
passed: true
- index: 2
description: "受保护路由拒绝无效令牌"
passed: false
expected: "401 响应"
actual: "500 Internal Server Error"
stdout: |
TypeError: Cannot read property 'token' of undefined
at authMiddleware (src/middleware/auth.ts:12)
relevant_code:
file: src/middleware/auth.ts
lines: 10-18
content: |
function authMiddleware(req, res, next) {
const token = req.headers.authorization.split(' ')[1]; // <-- 未检查 undefined
// ...
}
- index: 3
description: "刷新令牌轮换正常工作"
passed: false
expected: "新令牌返回"
actual: "未实现"
failures:
- check_index: 2
description: "受保护路由拒绝无效令牌"
reason: "未处理缺失的 authorization header"
- check_index: 3
description: "刷新令牌轮换正常工作"
reason: "功能未实现"
从不修复代码。只报告。返回给协调器。
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences