From project-management
Review local docs and create a git commit. Use when the user wants to commit changes with proper documentation review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-management:gcThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A composite workflow that ensures documentation is up-to-date before committing changes.
A composite workflow that ensures documentation is up-to-date before committing changes.
Execute these steps in order:
Load and follow the updating-documentation-for-changes skill to review all relevant documentation for the staged changes.
After reviewing and updating documentation:
git add <updated-docs-only>
Important: Only stage documentation files that were actually modified. Do not blindly git add . as there may be unstaged files not ready for commit.
Load and follow the git-commit-helper skill to generate an appropriate commit message and create the commit.
npx claudepluginhub thurstonsand/ansiblonomicon --plugin project-managementGuides git commit workflow: analyzes staged files, generates conventional messages (feat/fix/etc.), updates README for features/setup changes, ignores unstaged.
Creates semantic git commits with conventional commit format, stages changes, and pushes to remote. Handles pre-commit hooks and writes meaningful commit messages.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.