Claude Code Plugins

Community-maintained marketplace

Feedback

commit-conventions

@amattas/agentic-coding
0
0

Commit message style and structure for this repository.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name commit-conventions
description Commit message style and structure for this repository.

Commit Message Conventions

Format

Use the following format:

<type>(<optional scope>): <short summary>

Examples:

  • feat(auth): add MFA to login flow
  • fix(api): handle null payloads in /v2/orders
  • chore(ci): speed up test pipeline

Types

  • feat – new user-facing feature
  • fix – bug fix
  • refactor – structural code changes without behavior change
  • chore – tooling, CI, non-runtime code
  • docs – documentation-only changes
  • perf – performance improvements
  • test – adding or adjusting tests

Body

  • Use when additional explanation is necessary.
  • Include:
    • Motivation for the change
    • Notable design decisions
    • Links to tickets or issues

Footer

  • Include breaking change notes:
    • BREAKING CHANGE: [description]
  • Include issue references:
    • Fixes #1234