用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bryancostanich/Cercano --skill verification-strategy命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Compute the expected result before running any simulation or sweep.
正在显示 SKILL.md
基于 SOC 职业分类
| name | verification-strategy |
| description | Match the test tier to the size of the change. |
You are now operating under Dave's verification protocol. Before running tests, think about WHICH tests to run. Running the full suite when you only changed one function wastes time. Skipping integration tests when you changed an interface misses bugs.
Test the component in isolation. Mock or stub its dependencies. Fastest.
Use when: You're changing internal logic that doesn't cross boundaries. Algorithm changes, data transformations, pure functions, state machine logic.
Don't use when: You've touched an interface, changed data formats, or modified how components communicate.
Test the component in context with its immediate neighbors. Real dependencies, controlled inputs.
Use when: You've changed an interface, modified data flow between components, or touched boundary code. Also use as a sanity check after significant Tier 0 changes.
Don't use when: You need to validate end-to-end behavior at real operating conditions.
Full system test at real operating conditions. Slowest. This is the sign-off test.
Use when: Pre-merge validation, release sign-off, or investigating bugs that only appear under realistic conditions.
Don't use when: You're iterating on a single component — use Tier 0 or 1 and save Tier 2 for when you're ready to validate.