From foldkit-skills
Creates a git commit in the Foldkit monorepo with changeset enforcement and Conventional Commits formatting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/foldkit-skills:commit-changesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a single local commit for Foldkit changes. Do not push.
Create a single local commit for Foldkit changes. Do not push.
git status --short, git diff HEAD, git branch --show-current, and git log --oneline -10.packages/foldkit/ -> foldkitpackages/ui/ -> @foldkit/uipackages/devtools/ -> @foldkit/devtoolspackages/create-foldkit-app/ -> create-foldkit-apppackages/vite-plugin-foldkit/ -> @foldkit/vite-pluginpackages/devtools-mcp/ -> @foldkit/devtools-mcppackages/oxlint-plugin-foldkit/ -> @foldkit/oxlint-plugin.changeset/*.md excluding README.md and config.json. Verify a changeset covers each changed package.---
'package-name': patch
---
Concise description of the change.
Use patch for bug fixes, docs, internal refactors, and metadata changes. Use minor for new features, non-breaking API additions, and breaking changes while the project is pre-1.0. Do not use major.
For breaking changes, include a brief migration note in the changeset description.
pnpm format. Inspect formatting changes and stage only files that belong to the requested commit.git add.git commit.git log -1 --format=%B. If any
body line is longer than 80 characters, amend the commit before stopping.
Re-check the subject, scope, author, and branch shape after every amend.AGENTS.md when one scope describes the commit's
primary intent. If no valid scope cleanly describes the whole change set,
omit the scope.git diff --cached --stat and git diff --cached --name-status. If amending an existing commit message, inspect git show --stat --name-status HEAD.AGENTS.md. Do not invent broad scopes such as tooling or infrastructure.! after the scope for breaking changes.Before stopping after a commit or amend, verify:
npx claudepluginhub foldkit/foldkit --plugin foldkit-skillsCreates git commits following repository style. Stages files explicitly and writes concise messages matching existing patterns.
Generates Conventional Commits messages for staged git changes and commits them. Follows v1.0.0 spec with types like feat, fix, refactor. Use for standardized commits or /commit invocation.
Creates semantic git commits with conventional commit format, stages changes, and pushes to remote. Handles pre-commit hooks and writes meaningful commit messages.