commit — community commit, oxc-react-compiler, community, ide skills

v1.0

关于此技能

非常适合需要标准化 Git 提交消息格式的开发代理。 Conventional commit message formatting. Use when creating git commits to ensure messages follow the projects conventional commit style with proper type, scope, and description.

SarthakMishra SarthakMishra
[0]
[0]
更新于: 3/13/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
62
Canonical Locale
en
Detected Body Locale
en

非常适合需要标准化 Git 提交消息格式的开发代理。 Conventional commit message formatting. Use when creating git commits to ensure messages follow the projects conventional commit style with proper type, scope, and description.

核心价值

赋予代理人使用特定类型、范围和描述来强制执行标准的提交消息格式,确保 Git 提交的一致性和清晰度,使用诸如 Git 和 Conventional Commits 之类的协议。

适用 Agent 类型

非常适合需要标准化 Git 提交消息格式的开发代理。

赋予的主要能力 · commit

标准化团队项目的提交消息
自动化 CI/CD 流水线的提交消息验证
使用适当的类型、范围和描述生成提交消息

! 使用限制与门槛

  • 需要 Git 版本控制系统
  • 仅限于 Conventional Commits 格式

Why this page is reference-only

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

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

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

commit 是什么?

非常适合需要标准化 Git 提交消息格式的开发代理。 Conventional commit message formatting. Use when creating git commits to ensure messages follow the projects conventional commit style with proper type, scope, and description.

如何安装 commit?

运行命令:npx killer-skills add SarthakMishra/oxc-react-compiler/commit。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

commit 适用于哪些场景?

典型场景包括:标准化团队项目的提交消息、自动化 CI/CD 流水线的提交消息验证、使用适当的类型、范围和描述生成提交消息。

commit 支持哪些 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 一条命令通用安装。

commit 有哪些限制?

需要 Git 版本控制系统;仅限于 Conventional Commits 格式。

安装步骤

  1. 1. 打开终端

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

  2. 2. 执行安装命令

    运行:npx killer-skills add SarthakMishra/oxc-react-compiler/commit。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    commit 已启用,可立即在当前项目中调用。

! 参考页模式

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

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

commit

安装 commit,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Conventional Commits

Format

<type>(<scope>): <description>
                                        ← blank line
<body>
  • type: required, lowercase
  • scope: optional, in parentheses, lowercase
  • description: required, lowercase start, imperative mood, no period
  • body: optional, separated by blank line, free-form with bullet lists

Types

TypeWhen to use
featNew compiler pass, HIR type, lint rule, or feature
fixBug fix
choreTooling, config, deps, no production code change
docsDocumentation only
refactorCode change that neither fixes a bug nor adds a feature
depsDependency additions or updates
testAdding or updating tests
ciCI/CD pipeline changes
perfPerformance improvement
styleFormatting, whitespace (no logic change)

Scope

Derive from the primary area of change:

  • HIR: hir, build-hir, environment, globals, object-shape
  • SSA: ssa
  • Optimization: optimization, const-prop, dce, inline-iife
  • Inference: inference, infer-types, mutation-analysis, aliasing
  • Reactive Scopes: reactive-scopes, scope-inference, scope-alignment, codegen
  • Validation: validation, hooks, refs, effects
  • Pipeline: pipeline, program, options
  • Lint: lint, lint-rules
  • NAPI/Plugin: napi, vite-plugin
  • Utils: disjoint-set, utils
  • Omit scope for broad cross-cutting changes

Rules

  1. Use imperative mood: "add feature" not "added feature" or "adds feature"
  2. Keep the first line under 72 characters
  3. Start description lowercase
  4. No trailing period
  5. One commit per logical change — don't mix unrelated changes

Examples

One-liners (small, focused changes)

feat(hir): add InstructionValue enum with 40 variants
fix(ssa): handle redundant phi elimination for loop headers
chore(deps): update oxc crates to 0.50
feat(validation): implement validate_hooks_usage pass

With body (multi-file or multi-step changes)

feat(inference): implement infer_mutation_aliasing_effects pass

- Build abstract heap model with pointer graph and ValueKind per value
- Fixpoint iteration to propagate effects through aliases
- Compute candidate effects based on instruction kind and operand types
- Record final AliasingEffect annotations on each instruction
feat(reactive-scopes): implement scope inference and alignment

- DisjointSet-based scope grouping in infer_reactive_scope_variables
- Align scopes to block boundaries
- Merge overlapping scopes with shared reactive operands
- Build reactive scope terminals for codegen
feat(build-hir): implement OXC AST to HIR lowering

- Walk oxc_ast Statement/Expression nodes
- Flatten nested expressions into temporaries with Places
- Convert control flow to explicit BasicBlock edges
- Handle JSX, hooks, destructuring, and closures

Body style guidelines

  • Use bullet lists (-) for discrete changes
  • Use prose paragraphs for narrative summaries of larger features
  • Group related bullets under subheadings when mixing concerns (e.g. "Fixes:")
  • Keep body lines under 72 characters

相关技能

寻找 commit 的替代方案 (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
开发者工具