From agn
This skill should be used when the user asks to "commit", "commit changes", "create a commit", "stage and commit", "git commit", or wants to save their work to version control. Guides Claude through staging files and writing a well-formed git commit message.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agn:code-commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide for creating a git commit with proper staging and a meaningful commit message.
Guide for creating a git commit with proper staging and a meaningful commit message.
Activate when the user wants to:
Before committing, always:
git status to see what files have changedgit diff (staged and unstaged) to review the changesgit log --oneline -5 to understand the commit message style in this repogit add -A or git add ..env, credentials, private keys)Follow these conventions:
git log --oneline -10)Verb guide:
Add — wholly new feature or fileUpdate — enhancement to existing functionalityFix — bug fixRemove — deleting functionality or filesRefactor — restructuring without behavior changeAlways pass the message via a heredoc to preserve formatting:
git commit -m "$(cat <<'EOF'
Short summary here
Optional longer explanation of why this change was made.
EOF
)"
--no-verify to skip hooks unless explicitly instructedmain/masterRun git status to confirm the commit succeeded and the working tree is clean.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub agenturehq/agenture-loop