git-conventions — community git-conventions, openspec-example-moneylog, community, ide skills, Claude Code, Cursor, Windsurf

v1.0

Acerca de este Skill

Perfecto para agentes de control de versiones que necesitan un formato de mensaje de confirmación estandarizado y gestión de operaciones de Git. OpenSpecによる仕様駆動開発ハンズオン

ubnt-intrepid ubnt-intrepid
[0]
[0]
Updated: 3/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Perfecto para agentes de control de versiones que necesitan un formato de mensaje de confirmación estandarizado y gestión de operaciones de Git. OpenSpecによる仕様駆動開発ハンズオン

¿Por qué usar esta habilidad?

Habilita a los agentes a mantener historias de confirmación consistentes y claras utilizando el formato Conventional Commits, garantizando una gestión de proyectos eficiente y una colaboración a través de anotaciones de tipo estandarizadas como 'feat' y 'fix'.

Mejor para

Perfecto para agentes de control de versiones que necesitan un formato de mensaje de confirmación estandarizado y gestión de operaciones de Git.

Casos de uso accionables for git-conventions

Establecer un estándar para los mensajes de confirmación con la sintaxis Conventional Commits
Automatizar auditorías de operaciones de Git para garantizar el cumplimiento de las convenciones del proyecto
Generar informes de confirmación en función de las anotaciones de tipo y alcance

! Seguridad y limitaciones

  • Requiere adherencia a la especificación Conventional Commits
  • Limitado al sistema de control de versiones Git

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is git-conventions?

Perfecto para agentes de control de versiones que necesitan un formato de mensaje de confirmación estandarizado y gestión de operaciones de Git. OpenSpecによる仕様駆動開発ハンズオン

How do I install git-conventions?

Run the command: npx killer-skills add ubnt-intrepid/openspec-example-moneylog/git-conventions. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for git-conventions?

Key use cases include: Establecer un estándar para los mensajes de confirmación con la sintaxis Conventional Commits, Automatizar auditorías de operaciones de Git para garantizar el cumplimiento de las convenciones del proyecto, Generar informes de confirmación en función de las anotaciones de tipo y alcance.

Which IDEs are compatible with git-conventions?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for git-conventions?

Requiere adherencia a la especificación Conventional Commits. Limitado al sistema de control de versiones Git.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ubnt-intrepid/openspec-example-moneylog/git-conventions. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use git-conventions immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

git-conventions

Install git-conventions, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Git Conventions

These conventions MUST be followed when performing any Git operations in this project.


Commit Messages

Use Conventional Commits format:

<type>(<optional scope>): <description>

[optional body]

[optional footer(s)]

Types

TypeWhen to use
featA new feature
fixA bug fix
docsDocumentation only changes
styleFormatting, missing semicolons, etc (no logic)
refactorCode change that neither fixes a bug nor adds a feature
testAdding or updating tests
choreBuild process, dependencies, tooling changes
ciCI/CD configuration changes
perfPerformance improvements

Rules

  • Write commit messages in English
  • Use the imperative mood in the description (e.g., "add feature" not "added feature")
  • Keep the first line under 72 characters
  • Minimize use of the optional body — most commits should be a single subject line
  • When a body is used, describe only why the change was made, not what was changed. The "what" is already visible in the diff — do not repeat it
  • When an AI agent authors or co-authors the commit, include a Co-Authored-By footer with the agent's name and model identifier (e.g., Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>)

Command

Stage specific files and commit using a HEREDOC for the message:

bash
1git add <file1> <file2> ... 2git commit -m "$(cat <<'EOF' 3<type>(<optional scope>): <description> 4 5[optional body] 6 7Co-Authored-By: <Agent Name> <email> 8EOF 9)"

Examples

feat: add monthly expense summary view

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fix: handle empty input gracefully

Co-Authored-By: GPT-4o <noreply@openai.com>
fix: correct date parsing for transaction import
refactor: extract validation logic into shared module

Previous approach duplicated validation across three endpoints,
making it easy to introduce inconsistent behavior when rules change.

Branch Naming

Use the format: <type>/<description>

  • Use kebab-case for the description
  • Keep it concise but descriptive
  • Use the same type prefixes as commit messages

Examples

feat/add-expense-categories
fix/date-parsing-error
docs/update-api-reference
chore/upgrade-dependencies
refactor/simplify-transaction-model

Pull Requests

Merge Strategy

Use merge commits (not squash or rebase). This preserves the full commit history of the branch.

PR Guidelines

  • PR title should follow Conventional Commits format
  • PR description should summarize what changed and why
  • Keep PRs focused on a single concern
  • Do not include information that is already visible elsewhere on the PR or that becomes stale when the branch is updated. Specifically:
    • CI-verifiable facts (e.g., "all tests pass", "no clippy warnings") — visible in CI status checks
    • Lists of changed files — visible in the "Files changed" tab
    • Task checklists or test plans — tracked in CI

Command

Push and create PR using gh:

bash
1git push -u origin <branch-name> 2gh pr create --title "<type>(<optional scope>): <description>" --body "$(cat <<'EOF' 3<summary of what changed and why> 4 5🤖 Generated with <agent name and link> 6EOF 7)"

Protected Operations

  • NEVER force push (git push --force or --force-with-lease) to main or master
  • NEVER use git reset --hard on shared branches
  • Always confirm with the user before performing destructive Git operations

References

Habilidades relacionadas

Looking for an alternative to git-conventions or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador