Install
1
Run in your terminal$
npx claudepluginhub mickaelmamani/saas-toolkit --plugin saas-toolkitTool Access
This skill is limited to using the following tools:
BashReadGrepGlob
Skill Content
/commits — Conventional Commit Workflow
Create well-structured git commits following the Conventional Commits specification.
Process
-
Review changes — Run
git statusandgit diff --stagedto understand what's being committed. If nothing is staged, rungit diffto see unstaged changes and ask which files to stage. -
Determine commit type — Based on the changes:
feat— new feature or functionalityfix— bug fixrefactor— code restructuring without behavior changestyle— formatting, whitespace, missing semicolonsdocs— documentation onlytest— adding or updating testschore— build, tooling, dependencies, configperf— performance improvementci— CI/CD configuration
-
Determine scope — Identify the affected area (e.g.,
auth,billing,ui,api,db). Use the directory or feature name. -
Write commit message — Format:
type(scope): short description Longer body explaining what changed and why, if needed. -
Stage and commit — Stage the relevant files (prefer explicit file names over
git add .) and create the commit.
Rules
- Keep the subject line under 72 characters
- Use imperative mood ("add feature" not "added feature")
- Do not include file lists in the commit body — git tracks that
- Group related changes into a single commit
- Separate unrelated changes into multiple commits
- Never use
--no-verifyunless explicitly asked
Similar Skills
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitFeb 11, 2026