skills/commit/SKILL.md
Create git commits with emoji conventional commit format. Handles staging, message formatting, and timestamp rules. Use when committing changes.
npx skillsauth add RonanCodes/ronan-skills 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.
Create well-formatted git commits with emoji conventional commit style.
/commit
/commit --amend
Every commit message MUST use this format:
<emoji> <type>: <description>
Single line. Lowercase description. No period at the end. Focus on the "why" not the "what".
| Emoji | Type | When to use | |-------|------|-------------| | ✨ | feat | New feature or capability | | 🐛 | fix | Bug fix | | 🧪 | test | Adding or fixing tests | | 📝 | docs | Documentation changes | | 🧹 | chore | Maintenance, config, tooling | | ♻️ | refactor | Code restructuring without behaviour change | | 🚀 | deploy | Deployment-related changes | | 🔧 | config | Configuration changes | | ⚡ | perf | Performance improvements | | 🔒 | security | Security fixes |
✨ feat: add vault search with fuzzy matching
🐛 fix: prevent duplicate wiki pages on re-ingest
♻️ refactor: extract frontmatter parser into shared util
📝 docs: add obsidian integration guide
🧹 chore: update dependencies and clean unused imports
Co-Authored-By lines✨ feat: thing not ✨ feat(scope): thingcommitlint commit-msg hook enforce header-max-length (default 100), and the whole subject line counts, including the leading emoji + type: prefix (about 8-12 chars). A long subject is rejected with header must not be longer than 100 characters and the commit never lands. Under 72 keeps you safely inside it. Put detail in the body, not the subject.git status and git diff to understand what changedgit log --oneline -5 to see recent commit stylegit add -A)GIT_AUTHOR_DATE and GIT_COMMITTER_DATEgit status--amendIf the user passes --amend, amend the previous commit instead of creating a new one. Preserve the original timestamp unless the user specifies otherwise.
development
--- name: worktree description: Coordinate multiple agents on one repo via a worktree-lock pool, so two agents never clobber each other's working tree. Acquire the first free slot (main, then beta/gamma… worktrees, created on demand), work there on your own branch, release when you've pushed. Use before modifying any repo that might be in use by another agent (factory, dataforce, etc.), or whenever you're told a repo is being worked on. Backed by `ro worktree`. category: development argument-hin
testing
--- name: ship description: Ship a feature branch the local-CI-first way — run the full local gate, push, open a PR, squash-merge, then deploy, without waiting on GitHub Actions. Use when a branch is ready for main and you want it merged and deployed now. Reads CI policy from `ro ci` (default skips remote CI because GitHub Actions billing keeps hitting limits). Sibling to /ro:gh-ship (waits on GitHub checks) and /ro:cf-ship (the deploy half). Triggers on "ship it", "ship this", "merge and deploy
testing
--- name: setup-logging description: Set up (or audit) the observability stack in a TanStack Start + Cloudflare Workers app so it is "diagnosable by default" — structured logging (logtape) with a request context carrying trace_id + userId + tenant/orgId, a trace_id propagated FE→BE→logs→Sentry→PostHog, Cloudflare Workers observability enabled, and Sentry + PostHog wired. Two modes: `setup` (wire it into an app) and `audit` (check an existing app + report gaps). Use when scaffolding a new app, wh
development
Manage credentials INSIDE the active ~/.claude/.env file — read which token/account to use for a given app (Simplicity vs Dataforce vs Ronan-personal), add or update a secret WITHOUT it passing through the chat (an interactive Terminal window prompts for it), and track secrets that were exposed in a transcript so they get rotated. Sibling to /ro:context (which switches WHICH env file is active). Use when the user wants to add an API key/token/secret, asks "which credential do I use for X", needs the env organized/labelled, or a secret was pasted into the chat and should be rotated.