Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add trancong12102/agentskills --skill "commit"
Install specific skill from multi-skill repository
# Description
Generates Conventional Commits messages and can stage/commit changes. Use when asked to create git commit messages or perform a commit.
# SKILL.md
name: commit
description: Generates Conventional Commits messages and can stage/commit changes. Use when asked to create git commit messages or perform a commit.
Commit Message Generator (Conventional Commits)
Generate commit messages following Conventional Commits 1.0.0.
Execution Style
- Be concise and direct; avoid preambles or long plans.
- Use explicit formatting and exact output requirements.
- Infer type, scope, and breaking from the changes when possible; ask only if truly ambiguous.
- Prefer tool-driven git commands over manual edits.
Workflow
- Run
git statusandgit diff HEAD. - Stage only user-specified files; if user requests "all", use
git add -A. - Infer type/scope/breaking from the diff when possible; ask only if needed.
- Draft subject, body, and footers.
- Commit using HEREDOC:
```bash
git commit -m "$(cat <<'EOF'
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.