소스 정보
- 저장소
- Jessinra/Lorekeeper
- 최근 소스 활동
- 2026년 7월 13일 04:32
- 감지된 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 github-pr-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | github-pr-workflow |
| description | GitHub PR lifecycle: branch, commit, open, CI, merge. |
| version | 1.1.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["GitHub","Pull-Requests","CI/CD","Git","Automation","Merge"],"related_skills":["github-auth","github-code-review"]}} |
Complete guide for managing the PR lifecycle. All sections show the gh way — for git + curl fallbacks, see references/curl-fallback.md.
git log --oneline origin/main..HEAD # local-only commits
git log --oneline HEAD..origin/main # remote-only commits
git add -A && git stash
git pull --rebase
git stash pop
Prefer --rebase over --no-rebase — keeps history linear.
if command -v gh &>/dev/null && gh auth status &>/dev/null; then
AUTH="gh"
else
AUTH="git"
fi
echo "Using: $AUTH"
REMOTE_URL=$(git remote get-url origin)
OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's|.*github\.com[:/]||; s|\.git$||')
OWNER=$(echo "$OWNER_REPO" | cut -d/ -f1)
REPO=$(echo "$OWNER_REPO" | cut -d/ -f2)
git fetch origin
git checkout main && git pull origin main
git checkout -b feat/add-user-authentication
Branch naming: feat/, fix/, refactor/, docs/, ci/ + description.
git add src/auth.py src/models/user.py
git commit -m "feat: add JWT-based user authentication
- Add login/register endpoints
- Add unit tests for auth flow"
Commit format: type(scope): short description. Types: feat, fix, refactor, docs, test, ci, chore, perf.
git push -u origin HEAD
gh pr create \
--title "feat: add JWT-based user authentication" \
--body "## Summary\nCloses #42"
Options: --draft, --reviewer user1,user2, --label "enhancement", --base develop
Pitfall — requesting a reviewer can fail the create: @copilot is not always a valid GitHub login. Create the PR first, then add reviewer separately:
gh pr edit <PR_NUMBER> --add-reviewer <reviewer-login>
For curl fallback, see references/curl-fallback.md.
gh pr checks
gh pr checks --watch # polls every 10s
gh run list --branch $(git branch --show-current) --limit 5
gh run view <RUN_ID> --log-failed
git add <fixed_files>
git commit -m "fix: resolve CI failure in <check_name>"
git push
patch/write_filegit add . && git commit -m "fix: ..." && git pushgit commit -m "fix: ..." + git push)PR_NUMBER=8
gh api repos/$OWNER/$REPO/pulls/$PR_NUMBER/comments \
--jq '.[] | {path, body, line, commit_id}'
git add <changed_files>
git commit -m "[TICKET-N] fix: address PR review feedback"
git push
gh pr view $PR_NUMBER --json state,headRefOid
# Squash merge + delete branch
gh pr merge --squash --delete-branch
# Enable auto-merge
gh pr merge --auto --squash --delete-branch
# 1. Start from clean main
git checkout main && git pull origin main
# 2. Branch
git checkout -b fix/login-redirect-bug
# 3. (Agent makes code changes with file tools)
# 4. Commit
git add src/auth/login.py tests/test_login.py
git commit -m "fix: correct redirect URL after login"
# 5. Push
git push -u origin HEAD
# 6. Create PR (see Section 3)
# 7. Monitor CI (see Section 4)
# 8. Merge when green (see Section 7)