소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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