Install
$ agentstack add skill-cuongtl1992-vibe-skills-conventional-commit ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Conventional Commits
Structured commit messages following the Conventional Commits 1.0.0 specification.
Format
():
[optional body]
[optional footer(s)]
Types
| Type | When | Example | | ---------- | --------------------------------------- | ------------------------------------------ | | feat | New feature | feat(auth): add OAuth2 login | | fix | Bug fix | fix(cart): correct total calculation | | refactor | Code restructuring (no behavior change) | refactor(api): extract error handler | | docs | Documentation only | docs(readme): update setup instructions | | test | Adding or updating tests | test(order): add unit tests for checkout | | chore | Build, config, tooling | chore(deps): update Angular to v18 | | style | Formatting, semicolons (no logic) | style(lint): apply prettier formatting | | perf | Performance improvement | perf(query): add database index | | build | Build system changes | build(ci): update Node.js to v20 | | ci | CI/CD configuration | ci(github): add deploy workflow | | revert | Revert a previous commit | revert: undo feat(auth) OAuth changes |
Rules
- Description: lowercase, imperative mood, no period at end, max 72 characters
- Scope: optional but recommended, lowercase (module, component, or area)
- Breaking changes: Add
!after type/scope:feat(api)!: remove deprecated endpoint - Body: Separated by blank line, explains "what" and "why" (not "how")
- Footer:
BREAKING CHANGE:orRefs: #123
Workflow
- Check status —
git statusto see what changed - Stage changes — Prefer
git addovergit add -A - Analyze changes — Determine type, scope, and description
- Compose message — Follow the format above
- Commit — Use HEREDOC for multi-line messages:
```bash git commit -m "$(cat <<'EOF' feat(auth): add OAuth2 login flow
Implements OAuth2 authorization code flow with PKCE. Adds login, callback, and token refresh endpoints.
Refs: #142 EOF )" ```
- Verify —
git log --oneline -1to confirm
For examples of good and bad commit messages, see [references/commit-examples.md](references/commit-examples.md).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: cuongtl1992
- Source: cuongtl1992/vibe-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.