用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/louisbranch/fracturing.space --skill testing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | testing |
| description | Meaningful testing strategy and coverage guardrails |
| user-invocable | true |
Testing guidance focused on durable behavior and maintainable feedback loops.
contains, state transitions, status, links) over absence assertions.// Invariant: ... rationale.Example:
foo."Invariant: protocol contract)."make cover and make cover-critical-domain only when you need focused
standalone coverage diagnostics outside the normal verification workflow.COVER_EXCLUDE_REGEX in Makefile so coverage reflects hand-written code.docs/running/verification.md:
make test during normal implementationmake smoke when runtime paths need quick feedbackmake check before pushing or updating a PRmake cover* in parallel with make check; make check already
generates the shared coverage artifacts..tmp/test-status/ instead of repeatedly re-running or blindly polling the
process..tmp/test-status/test/status.json for make test..tmp/test-status/smoke/status.json for overall make smoke stage
progress..tmp/test-status/smoke/integration/status.json and
.tmp/test-status/smoke/scenario/status.json for lane-specific make smoke
progress..tmp/test-status/check/status.json for make check stage progress.make check is in check-runtime, read
.tmp/test-status/check-runtime/scenario/status.json.make check is in check-coverage, read .tmp/test-status/cover/status.json
and the nested shard status files under .tmp/test-status/cover/.state, current_stage, current_package, current_test,
packages_completed, packages_running, updated_at_utc, and
last_event_at_utc as the primary fields for liveness and progress.Invariant: rationale.See docs/architecture/policy/testing-policy.md for constructor, dependency injection, and fake-oriented testability guidance.