원클릭으로
commit
Stage and commit vault changes with UK English conventional commit messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage and commit vault changes with UK English conventional commit messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate C4 architecture diagrams from system notes
Create and edit Obsidian Canvas files for architecture visualization
Visualize system dependencies and relationships
Analyse architecture diagrams and flowcharts
Generate architecture diagrams using Python diagrams library
Batch populate summary fields using content analysis
| name | commit |
| description | Stage and commit vault changes with UK English conventional commit messages |
| disable-model-invocation | true |
| tools | Bash |
Stage and commit changes to the vault with properly formatted UK English conventional commit messages.
/commit # Auto-detect changes and commit
/commit -m "message" # Commit with a specific message
/commit --amend # Amend the previous commit (use sparingly)
git status
git diff --stat
Stage specific files rather than using git add -A:
.env, credentials, .secrets.baseline (unless updated by detect-secrets)git add -u for modified/deleted files with Unicode filenames (avoids octal encoding issues)git lfs track first for large binary files (PPTX, PDF >100MB)Follow these conventions:
<type>: <subject>
<optional body>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Types:
| Type | When to Use |
|---|---|
Add | New notes, skills, scripts, templates |
Update | Enhancements to existing notes or config |
Fix | Bug fixes, broken links, frontmatter errors |
Refactor | Restructuring without changing meaning |
Archive | Moving notes to Archive/ |
Remove | Deleting deprecated content |
Docs | Documentation-only changes (CLAUDE.md, READMEs) |
The vault has pre-commit hooks that may:
detect-secrets (may need .secrets.baseline update)If the hook modifies files, re-stage with git add -u then commit again.
Run git status to verify the commit succeeded and working tree is clean.
--no-verify unless the user explicitly requests itgit commit fails with PermissionError on ~/.cache/pre-commit/, use dangerouslyDisableSandbox: true