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

v1.0

关于此技能

非常适合需要标准化提交消息格式和 Git 操作管理的版本控制代理。 OpenSpecによる仕様駆動開発ハンズオン

ubnt-intrepid ubnt-intrepid
[0]
[0]
更新于: 3/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/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
8/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

非常适合需要标准化提交消息格式和 Git 操作管理的版本控制代理。 OpenSpecによる仕様駆動開発ハンズオン

核心价值

赋予代理维护一致且清晰的提交历史记录的能力,使用 Conventional Commits 格式,确保通过标准化类型注释(如 'feat' 和 'fix')进行高效的项目管理和协作。

适用 Agent 类型

非常适合需要标准化提交消息格式和 Git 操作管理的版本控制代理。

赋予的主要能力 · git-conventions

使用 Conventional Commits 语法标准化提交消息
自动化 Git 操作审计以确保遵守项目约定
根据类型和范围注释生成提交报告

! 使用限制与门槛

  • 需要遵守 Conventional Commits 规范
  • 仅限于 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.

实验室 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

git-conventions 是什么?

非常适合需要标准化提交消息格式和 Git 操作管理的版本控制代理。 OpenSpecによる仕様駆動開発ハンズオン

如何安装 git-conventions?

运行命令:npx killer-skills add ubnt-intrepid/openspec-example-moneylog。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

git-conventions 适用于哪些场景?

典型场景包括:使用 Conventional Commits 语法标准化提交消息、自动化 Git 操作审计以确保遵守项目约定、根据类型和范围注释生成提交报告。

git-conventions 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

git-conventions 有哪些限制?

需要遵守 Conventional Commits 规范;仅限于 Git 版本控制系统。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add ubnt-intrepid/openspec-example-moneylog。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    git-conventions 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

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

安装 git-conventions,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

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

相关技能

寻找 git-conventions 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具