Summary
변경사항 커밋, 푸시, PR 생성을 한 번에 수행하는 워크플로우. 트리거: "커밋", "PR 만들어", "푸시해", "PR 생성", "commit and push", "커밋하고 푸시", "PR 올려" 안티-트리거: "코드 리뷰", "git log 확인", "diff 보여줘", "브랜치…
jh941213/codex-lattice · Archived
변경사항 커밋, 푸시, PR 생성을 한 번에 수행하는 워크플로우. 트리거: "커밋", "PR 만들어", "푸시해", "PR 생성", "commit and push", "커밋하고 푸시", "PR 올려" 안티-트리거: "코드 리뷰", "git log 확인", "diff 보여줘", "브랜치 목록"
npx skills add jh941213/codex-lattice --skill commit-push-pr
변경사항 커밋, 푸시, PR 생성을 한 번에 수행하는 워크플로우. 트리거: "커밋", "PR 만들어", "푸시해", "PR 생성", "commit and push", "커밋하고 푸시", "PR 올려" 안티-트리거: "코드 리뷰", "git log 확인", "diff 보여줘", "브랜치…
This repository is archived — consider an actively maintained alternative.
프로덕션 수준의 FastAPI 프로젝트 생성 및 설정 가이드. async 패턴, DI, 에러 핸들링 포함. 트리거:…
1 installs에이전트 하네스 12원칙 기반 자가 진단 및 개선 제안. Triggers on: 하네스 진단, audit, 환경 점검,…
1 installsRelease readiness workflow for Codex. Use before PR, merge, deploy, version bump, rollout, or p…
1 installsREST 및 GraphQL API 설계 원칙 가이드. 새로운 API 설계, API 스펙 리뷰, API 설계 표준 수립 시 활…
1 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Execute git commit with conventional commit message analysis, intelligent staging, and message …
44.5K installsPrompt and workflow for generating conventional commit messages using a structured XML format. …
16.1K installsUse for every request to commit changes or draft a commit message. Creates Sentry-style convent…
4.2K installsCreate a git commit for the current changes. Use when asked to commit changes, make a commit, g…
48 installsWrite a Conventional Commits message compressed to intent only. Use for "write a commit", "comm…
344.3K installsSet up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the curr…
324.3K installsOther skills from jh941213/codex-lattice · top by installs.
npx skills add jh941213/codex-lattice
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Bash, ReadFiles included with this skill beyond the listing page.
SKILL.md
1,945 B
SUMMARY.md
310 B
현재 변경사항을 커밋하고 푸시한 후 PR을 생성합니다.
# 현재 브랜치 확인 — main/master면 STOP
BRANCH=$(git branch --show-current)
if [ "$BRANCH" = "main" ] || [ "$BRANCH" = "master" ]; then
echo "BLOCKED: main/master 브랜치에서 직접 커밋 금지"
exit 1
fi
# 상태 확인
git status
git diff --stat
git log --oneline -5
# 민감한 파일이 staged 되었는지 검사
git diff --cached --name-only | grep -E '\.(env|pem|key|credentials)' && echo "WARNING: 민감 파일 포함!"
# 변경 파일 선택적 staging (git add -A 지양)
git add [specific-files]
# 커밋 메시지 작성
git commit -m "$(cat <<'EOF'
[타입] 제목 (50자 이내)
본문 (선택 — 무엇이 아닌 왜를 설명)
Co-Authored-By: Codex <[email protected]>
EOF
)"
Codex 기본 attribution을 쓰는 경우:
Co-Authored-By: Codex <[email protected]>
~/.codex/config.toml의 commit_attribution을 설정했다면 그 값을 따른다.
타입: feat, fix, docs, style, refactor, test, chore
# 원격 브랜치 설정 + 푸시
git push -u origin $(git branch --show-current)
gh pr create --title "[타입] 제목" --body "$(cat <<'EOF'
## 요약
- 변경 내용 1
- 변경 내용 2
## 테스트
- [ ] typecheck 통과
- [ ] lint 통과
- [ ] test 통과
EOF
)"
완료 시 PR URL을 반환합니다.