一键导入
eval
Run skill evaluations, generate golden test files, and promote learnings. Wraps the fotw eval CLI with interactive guidance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run skill evaluations, generate golden test files, and promote learnings. Wraps the fotw eval CLI with interactive guidance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Identify and remove AI slop from code comments, documentation, and prose. Use when cleaning up AI-generated output, reviewing for AI tells, or improving signal-to-noise ratio in any text.
Design review for front-end code changes using Playwright for live browser testing. Covers visual hierarchy, accessibility (WCAG AA+), responsive design, and interaction patterns. Use when reviewing UI/UX changes before merge.
Adversarial code review that assumes the worst. Finds failure modes, race conditions, blast radius, and edge cases that optimistic reviewers miss. Use when you want brutal honesty about code resilience.
Perform thorough code review on a PR using the Pragmatic Quality framework. Integrates with Jira to validate implementation matches ticket requirements. Use when reviewing pull requests or providing PR feedback.
Validate implementation plans for completeness, specificity, and actionability. Catches vague language, missing sections, and untestable outcomes.
Interactive PRD creation and iteration for non-technical users. Use this skill whenever the user wants to define product requirements, write a PRD, spec out a feature, describe what to build, or says "what should we build", "write requirements", "create a PRD", "define the product". Also use when updating an existing PRD based on stakeholder or engineering feedback. Guides through structured requirement definition using plain-language facilitation prompts with discovery questions upfront. Auto-validates with /prd-validator after completion.
| name | eval |
| description | Run skill evaluations, generate golden test files, and promote learnings. Wraps the fotw eval CLI with interactive guidance. |
| user-invocable | true |
| argument-hint | [<skill>|--all|generate-golden <skill>|promote <skill>] |
| allowed-tools | Bash(fotw:*), Bash(python:*), Read, Write, Grep, Glob |
| tags | ["meta","testing"] |
| tier | core |
Run golden test evaluations and manage skill quality.
Determine mode from the argument:
/eval code-review # Eval single skill
/eval --all # Eval all skills with golden tests
/eval --tier core # Eval core-tier skills only
Execute: ./bin/fotw eval <args>
Report results. If failures found, show the failing assertions and suggest fixes.
generate-golden <skill>)/eval generate-golden code-review
Generate candidate golden test cases for a skill:
references/demo-artifacts/, craft as inline diff inputsskills/<name>/tests/golden.jsonlAssertion guidelines:
contains for key findings the skill must identifynot-contains for false positives it must avoidregex for structural patterns (severity labels, section headers)output field for deterministic modepromote <skill>)/eval promote code-review
Review active learnings in skills/<name>/learnings.md and promote valuable ones:
learnings.md| File | Purpose |
|---|---|
references/demo-artifacts/ | Synthetic code samples for golden test generation |
references/golden-guidelines.md | Best practices for writing golden test assertions |