Token导航 LogoToken导航TokenDH.com
开发规范执行命令github未标认证来源可访问许可证需确认审计通过

odoo-commit-message-guidelinesodoo 提交消息指南

Agent Skill

odoo-commit-message-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

816

周安装

34

GitHub Stars

公开资料未说明

下载量

272
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:odoo-commit-message-guidelines(odoo 提交消息指南)
来源仓库:https://github.com/grupoyacck/gy-agent-skills
仓库路径:skills/odoo-commit-message-guidelines
安装命令:
npx skills add https://github.com/grupoyacck/gy-agent-skills --skill odoo-commit-message-guidelines
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/grupoyacck/gy-agent-skills --skill odoo-commit-message-guidelines

简介

odoo-commit-message-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于 Odoo 项目提交消息指南的开发规范支持,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写,确保符合实际使用需求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Odoo Commit Message Guidelines

Purpose

Use this skill to produce high-quality Odoo commit messages that are consistent, reviewable, and easy to revert.

Local References

  • references/git_guidelines.md — header heuristic and WHY-over-WHAT philosophy
  • references/CONTRIBUTING.md — OCA [MIG] tag extension and header truncation check

Consult these only for edge-case decisions or policy justification.

When To Use

Use this skill when the user asks to:

  • write a new commit message for Odoo code
  • rewrite or improve an existing commit message
  • validate whether a commit message follows Odoo rules
  • choose the correct Odoo tag

Required Inputs

Collect before drafting: module name (or various), change intent, WHY rationale, and any references (task-*, ticket-*, Fixes #, Closes #, opw-*) or CI directives ([NO CI]).

If inputs are missing, ask only the minimum concise follow-up questions.

Output Format

Use this structure:

[TAG] module: short summary (ideally < 50 chars)

WHY the change is needed.
WHAT changed and technical choices (only if useful).

task-123
ticket-12345
Fixes #123
Closes #456
opw-789

Rules:

  • English only.
  • Header: [TAG] module: imperative summary (~50 chars).
  • Tag must be uppercase, bracketed, and from Tag Selection Rules.
  • Body wrapped at 72 chars; plain text (lists with */-, no tables).
  • Imperative present voice: Fix, Remove, Add (not past/third-person).
  • Header must be meaningful — reject generic words like bugfix.
  • Prioritize WHY over WHAT in the body.
  • Tag must match change intent; one tag per header.
  • The header must not truncate with ellipsis in PR UI.
  • References (task-*, Fixes #, Closes #, opw-*) go at the end.
  • [MIG] is OCA-specific; use only when project convention supports it.

If any rule fails, rewrite the message before returning.

Tag Selection Rules

Choose exactly one main tag for the commit:

  • [FIX] bug fix
  • [REF] major refactor / heavy rewrite
  • [ADD] add a new module
  • [REM] remove dead code/resources/modules
  • [REV] revert an earlier commit
  • [MOV] move files/code while preserving history intent
  • [REL] release commit
  • [IMP] incremental improvement
  • [MERGE] merge / forward-port integration commit
  • [CLA] individual contributor license signature
  • [I18N] translation updates
  • [PERF] performance improvement
  • [CLN] cleanup
  • [LINT] linting pass
  • [MIG] module migration (only when the project convention supports it)

Decision guidance:

  • Prefer the tag that best captures intent, not file type.
  • If it is clearly a migration, use [MIG].
  • If it fixes a regression while migrating, split into two commits when possible.
  • Avoid stacking multiple tags in one header.

Module Naming Rules

  • Use technical module name, not marketing/functional display names.
  • If multiple modules are touched, list them briefly or use various.
  • Prefer one logical change per commit and avoid large cross-module commits.

Good Examples

[FIX] website: remove unused alert div

Fix the look of input-group-btn.
Bootstrap requires input-group-btn to be the first or last child.
An invisible alert node broke that structure and produced visual issues.

Fixes #22769
Closes #22793
[FIX] various: resolve rounding issues in currency conversions

Address inconsistent decimal rounding behavior across multiple reporting
and accounting modules. Instead of allowing components to do ad-hoc
rounding, enforce standard decimal precision in the core tools.

ticket-10928
[NO CI]
[IMP] web: add module system to web client

Introduce a module system for JavaScript code to improve isolation,
load order control, and maintainability as the client grows.
[MIG] stock_account: migrate valuation hooks to 19.0

Align valuation hook signatures with 19.0 API to preserve extension
compatibility and avoid runtime errors during upgrade.

task-8421

Anti-Patterns To Reject

Reject and rewrite messages with:

  • generic headers (bugfix, improvements)
  • missing module name
  • missing rationale
  • past tense or third-person verbs in header
  • oversized multi-topic commits in one message
  • truncated first line (...) caused by long header

Response Behavior

When asked to produce a commit message:

  1. Return only the raw commit message (no code fences) unless the user asks for explanation.
  2. If info is missing, ask only the minimum necessary clarifying questions.
  3. If user provides a draft, return a corrected Odoo-compliant version.
  4. Be strict: if the header does not begin with one uppercase bracketed tag from Tag Selection Rules, rewrite it before returning.
  5. For IDE Source Control usage, return a ready-to-use commit message suggestion that can be inserted directly in the Source Control commit box (no preamble, no labels, no markdown).
  6. Execution Offer: After providing the generated commit message, proactively offer to execute the commit on behalf of the user. Always ask for explicit user confirmation before running the commit. To execute safely, write the full commit message to a temporary file and run git commit --file=<tmpfile> (then delete the temp file). Never interpolate user-provided text into shell command arguments (-m) — this avoids shell metacharacter injection. Do not execute the commit automatically.

Usage Examples

  • New message: User provides module, intent, and context → draft [TAG] module: summary with WHY body and references.
  • Rewrite draft: User gives a bad message like fixed stuff → reject, ask minimum clarifying questions, return corrected version.
  • Tag choice: User unsure between [MIG] and [FIX] → recommend based on primary intent; suggest splitting if both apply.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.84%
按下载量换算95

Claude

31.83%
按下载量换算87

Cursor

19.52%
按下载量换算53

Gemini CLI

10.2%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/grupoyacck/gy-agent-skills --skill odoo-commit-message-guidelines 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills