원클릭으로
commit
Git commit with enforced quality gates, proper message format, and safe push workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git commit with enforced quality gates, proper message format, and safe push workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Checkpoint episodes and create handoff packs for multi-agent session continuity
Configure, test, benchmark, and manage embedding providers for semantic search and vector operations
Create and traverse typed relationships between episodes for dependency tracking and knowledge graphs
Manage episode tags for organization, filtering, and retrieval across the memory system
Generate task playbooks and explain patterns using learned strategies from episodic memory
Record and analyze recommendation sessions and feedback to drive the self-learning loop
| name | commit |
| description | Git commit with enforced quality gates, proper message format, and safe push workflow |
Enforce code quality before every commit.
Quality Gates (BLOCKING - must pass)
./scripts/quality-gates.sh
.py or .sh files in repository root (forbidden)If quality gates FAIL: STOP. Fix issues before proceeding.
Check Status
git status
git diff --stat
Stage Changes
git add -p # Interactive staging for atomic commits
# OR
git add <specific-files>
Create Commit (use message format below)
git commit
Sync with Remote
git pull --rebase
Handle Conflicts (if any)
Push
git push
type(scope): Brief description (50 chars max)
- Why this change was necessary from user perspective
- What problem it solves or capability it enables
- Reference issue/ticket numbers if applicable
| Type | Purpose |
|---|---|
feat | New user-facing feature |
fix | Bug fix resolving user issue |
docs | Documentation changes |
refactor | Code restructure (no user-facing changes) |
perf | Performance improvement |
test | Test additions/changes |
chore | Build/dependency updates |
Good:
feat(search): Add filters to help users find documents faster
Users were spending too much time scrolling through results.
New filters reduce search time by 60% in user testing.
Fixes #123
Bad:
improved stuff
git add -p for partial stagingFor larger changes:
./scripts/check-doctests.sh
./scripts/check_performance_regression.sh