.claude/skills/commit/SKILL.md
Generates commit messages and creates commits. Use when writing commit messages, committing changes, or reviewing staged changes.
npx skillsauth add deanmoses/tacocat-gallery-hosting-aws commitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use Conventional Commits format.
<type>(<scope>): <description>
[optional body]
feat: User-facing features or behavior changes (must change production code)fix: Bug fixes (must change production code)docs: Documentation onlystyle: Code style/formatting (no logic changes)refactor: Code restructuring without behavior changetest: Adding or updating testschore: CI/CD, tooling, dependency bumps, configs (no production code)Optional. Use when it adds clarity. Examples: cloudfront, s3, ci.
Use ! suffix: feat!: remove deprecated resource
feat(cloudfront): add immutable cache headers
fix: correct CloudFront Function ARN attribute
chore: add husky pre-commit hooks
docs: update architecture documentation
git diff --staged to see staged changesdevelopment
Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review.
tools
Creates git branches with proper naming. Use when creating branches, starting new work, or switching to feature branches.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------