一键导入
commit
Create git commits in spaces/[project]/ with conventional message format. Use for saving progress with quality checks and proper commit messages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create git commits in spaces/[project]/ with conventional message format. Use for saving progress with quality checks and proper commit messages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | commit |
| description | Create git commits in spaces/[project]/ with conventional message format. Use for saving progress with quality checks and proper commit messages. |
| model | claude-sonnet-4-20250514 |
| allowed-tools | Read, Glob, Grep, Bash |
Create git commits in spaces/[project]/ with quality checks and conventional message formatting.
/commit yourbench # Interactive commit
/commit yourbench "feat: add auth" # Direct with message
/commit coordinatr --amend # Amend last commit (safety checks)
/commit yourbench "fix: typo" --no-verify # Skip hooks
Meta-repo (ideas/): spaces/yourbench/
├── ideas/yourbench/ ├── src/
│ ├── specs/ ├── tests/
│ └── issues/ └── .git/ <- Project git
├── .claude/
└── .git/ <- Meta-repo git
Auto-detect behavior:
spaces/[project]/ changed -> commit in project repoideas/ or meta-repo changed -> commit in meta-repo# Check meta-repo
git status --porcelain ideas/ .claude/ shared/ resources/
# Check project repo
git -C spaces/[project] status --porcelain
npm test # or pytest, cargo test, etc.
npm run lint
git status
git diff --staged
Conventional commit format:
type(scope): description
[optional body]
Co-Authored-By: Claude <noreply@anthropic.com>
Types:
feat: New featurefix: Bug fixdocs: Documentationrefactor: Code refactoringtest: Adding/updating testschore: MaintenanceAuto-detect type from changes:
src/ -> featfix or refactortestdocsIf on feature branch like feature/001-auth:
feat(001): implement user authentication
Refs: TASK-001
cd spaces/yourbench
git add .
git commit -m "message..."
Safety checks before amending:
git log @{u}..HEADgit log -1 --format='%ae'| Branch | Commit Type |
|---|---|
feature/001-auth | feat(001): ... |
bugfix/002-login | fix(002): ... |
main / develop | No issue reference |
| Error | Resolution |
|---|---|
| Project not found | Check spaces/[project]/ exists |
| Not a git repo | Run git init in project |
| Tests failing | Fix tests before committing |
| Nothing to commit | No staged/unstaged changes |
| Amend pushed commit | Cannot amend, create new commit |
End-of-session reflection. Extracts memories, suggests updates to about-taylor.md and CLAUDE.md. Run before ending a long session or when context is getting full. Triggers on "debrief", "extract memories", "session summary".
Sync all git repos - my-life top repo and spaces/ projects
Morning routine check-in. Use at start of day to review yesterday, set up today's journal, and check learning reviews due. Triggers on "good morning", "morning", "start my day", "what's on for today".
Silently refresh AI context by reading project configuration and guidelines. Use when starting a new conversation, after context loss, or before major tasks.
Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".
Fetch and summarize latest videos from priority YouTube channels. Creates notes with transcripts summarized as bullet points. Use to catch up on subscriptions without watching everything. Triggers on "youtube catchup", "video catchup", "check youtube", "summarize videos".