con un clic
commit
Stage and commit vault changes with UK English conventional commit messages
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Stage and commit vault changes with UK English conventional commit messages
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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