Guidelines for writing conventional commit messages that follow project standards and trigger automated releases
This skill provides comprehensive guidance on writing conventional commit messages for the uspark project. All commits must follow the Conventional Commits format to ensure consistent history and enable automated versioning via release-please.
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
feat: not Feat: or FEAT:add feature not Add featurefix user login not fix user login.add not added or adds| Type | Purpose | Release? |
|------|---------|----------|
| feat: | New feature | ✅ Minor bump |
| fix: | Bug fix | ✅ Patch bump |
| docs: | Documentation | ❌ No release |
| refactor: | Code refactoring | ❌ No release |
| test: | Tests | ❌ No release |
| chore: | Build/tools | ❌ No release |
Pro tip: If you want a refactor to trigger a release, use fix: refactor ... instead.
types.mdrelease-triggers.mdexamples.mdBefore committing, verify:
❌ Fix: Resolve database connection timeout. (capitalized type, has period)
❌ added user auth (missing type, wrong tense)
❌ feat: Add user authentication system with OAuth2... (capitalized description, too long)
✅ fix: resolve database connection timeout
✅ feat: add user authentication
✅ docs(api): update endpoint documentation
This skill should be triggered whenever:
The commit message should focus on why the change was made, not what was changed (git diff shows the what).
npx skills add uspark-hq/Conventional Commits下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer