用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Jessinra/Lorekeeper --skill requesting-code-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Lorekeeper-specific BLOCKER patterns, severity tiers, and review checklist — used when reviewing any PR touching src/lorekeeper/
GitHub App bot authentication — setup, token rotation, and cron refresh for jessinra-megumi-dev[bot]
Marketing workflow for Lorekeeper — README copy, manifesto, positioning, and multi-agent A/B testing of copy variations. Load this when working on any user-facing content: README, docs/manifesto.md, positioning, comparison tables, or launch copy.
基于 SOC 职业分类
正在显示 SKILL.md
| name | requesting-code-review |
| description | Pre-commit review: security scan, quality gates, auto-fix. |
| version | v2.0.0 |
| author | Hermes Agent (adapted from obra/superpowers + MorAlekss) |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["code-review","security","verification","quality","pre-commit","auto-fix"],"related_skills":["subagent-driven-development","writing-plans","test-driven-development","github-code-review"]}} |
Automated verification pipeline before code lands. Static scans, baseline-aware quality gates, an independent reviewer subagent, and an auto-fix loop.
Core principle: No agent should verify its own work. Fresh context finds what you miss.
git commit or git pushSkip for: documentation-only changes, pure config tweaks, or when user says "skip verification".
This skill vs github-code-review: This skill verifies YOUR changes before committing. github-code-review reviews OTHER people's PRs on GitHub.
git diff --cached
If empty, try git diff then git diff HEAD~1 HEAD. If still empty, run git status.
If the diff exceeds 15,000 characters, split by file:
git diff --name-only
git diff HEAD -- specific_file.py
See references/scan-and-patterns.md for the full scan commands (hardcoded secrets, shell injection, eval/exec, unsafe deserialization, SQL injection).
See references/scan-and-patterns.md for test framework detection and linting commands (Python, Node, Rust, Go).
Baseline comparison: stash changes, run baseline, pop. Only NEW failures introduced by your changes block the commit.
gh pr create)len(x) > 200 or similar? Move to Settings with LORE_* env var.for item in items: store.update_something(item.id, ...) with per-call commit()? Replace with bulk SQL.id vs lore_id)?(configurable, default N via LORE_X).links=[{...None IDs...}] passed to svc.insert()? Remove it.git config --local user.name = correct agent identity.git log --oneline origin/main..HEAD shows only this PR's commits.See references/delegate-patterns.md for the full delegate_task code. The reviewer gets ONLY the diff and static scan results. Fail-closed: unparseable response = fail.
All passed: Proceed to Step 8 (commit).
Any failures: Report what failed, then proceed to Step 7 (auto-fix).
VERIFICATION FAILED
Security issues: [list]
Logic errors: [list]
Regressions: [new test failures vs baseline]
New lint errors: [details]
Suggestions: [list]
Maximum 2 fix-and-reverify cycles. See references/delegate-patterns.md for the fix agent delegate_task code.
git add -A && git commit -m "[verified] <description>"
The [verified] prefix indicates an independent reviewer approved this change.
git status, tell user nothing to verify