What problem does it solve? Committing code without reviewing the staged diff or running verification often leads to broken builds, leaked secrets, and out-of-scope changes landing in the repository. This Skill enforces a disciplined pre-commit workflow so every Axentra commit is scoped, verified, and safe. ## Core Features & Use Cases - Staged-Diff Review: Inspects git status, diff stats, and the exact staged diff to block unrelated files, credentials, .env files, and build output from being committed. - Verification Gate: Runs the appropriate project gate (bun run complete-check, bun run fmt, or integration tests) before allowing the commit. - Conventional Commit Messages: Generates scoped messages like feat(documents): add upload API [BE-S1-02] with task IDs and an 80-character limit. - Use Case: After finishing a documents upload API task, ask the assistant to commit; it stages only the intended paths, runs the verification gate, and produces a compliant commit message with evidence. ## Quick Start Ask the assistant to commit the completed task changes using the git-commit skill and it will review, verify, and create a scoped commit.