一键导入
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