ソース情報
- リポジトリ
- Jessinra/Lorekeeper
- ソースの最終更新活動
- 2026年7月13日 06:04
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Jessinra/Lorekeeper --skill requesting-code-reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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 verifySOC 職業分類に基づく