一键导入
review-readiness
Review Readiness Checklist guidance for Fortress Rollback. Use when Before opening PRs, self-review, merge readiness checks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review Readiness Checklist guidance for Fortress Rollback. Use when Before opening PRs, self-review, merge readiness checks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Crate Publishing guidance for Fortress Rollback. Use when Publishing to crates.io, version bumps, release checklist.
Changelog Practices guidance for Fortress Rollback. Use when Writing CHANGELOG entries, deciding what to document.
Design Decision Log Pattern guidance for Fortress Rollback. Use when Architectural decisions, design alternatives, superseding prior choices.
Repository-wide engineering policy and project context for Fortress Rollback. Use when implementing, diagnosing, reviewing, testing, documenting, or releasing changes in this repository.
GitHub Actions Best Practices guidance for Fortress Rollback. Use when Writing GitHub Actions workflows, CI debugging, actionlint, caching.
Workspace Organization guidance for Fortress Rollback. Use when Organizing workspace, splitting crates, module structure decisions.
| name | review-readiness |
| description | Review Readiness Checklist guidance for Fortress Rollback. Use when Before opening PRs, self-review, merge readiness checks. |
Concrete gate between implementation and external review. Use this after dev-pipeline.md Phase 4 and before opening a PR.
cargo c && cargo t passesResult, no silent discard)python3 scripts/ci/agent-preflight.py --auto-fix)If two or more checks fail, return to design and reduce scope before requesting review.
# Build + tests
cargo c && cargo t
# Zero-panic scan (production code)
rg '\.unwrap\(\)|\.expect\(|panic!\(|todo!\(|unimplemented!\(' --type rust src/
# Determinism scan
rg 'HashMap|HashSet|Instant::now|SystemTime|thread_rng|random\(\)' --type rust src/
# Changed-file-aware preflight checks (version sync, Agent Skills, workflows)
python3 scripts/ci/agent-preflight.py --auto-fix
Use this in PR descriptions or self-review comments:
Review Readiness
- Build/tests: PASS|FAIL
- Zero-panic: PASS|FAIL
- Determinism: PASS|FAIL
- Agent preflight: PASS|FAIL
- Error handling: PASS|FAIL
- Tests breadth: PASS|FAIL
- Design log reviewed: YES|NO|N/A
- CHANGELOG reviewed: YES|NO|N/A