AgentSkillsCN

commit

使用 chez_commit 创建常规提交。当用户请求提交更改时,请使用此技能。切勿随意使用。

SKILL.md
--- frontmatter
name: commit
description: Create a conventional commit using chez_commit. Use when the user asks to commit changes. Do not EVER use
without user request.

Create a commit using chez_commit, which stages the specified files and commits them.

Usage

chez_commit <tag> <message> <file>...

Valid Tags (in order of preference)

  1. feat - New feature, feature improvement, or feature removal
  2. fix - User-facing bug fix (not linting errors unless they caught a real bug)
  3. ref - Refactor/restructure production code without changing external behavior. IMPORTANT: Only use 'ref' when there are ZERO user-facing changes. If users would notice any difference in behavior, use 'feat' or 'fix' instead.
  4. chore - Other changes (build scripts, CI/CD, deps, linting, formatting, documentation) not modifying production code

Instructions

  1. Run chez_commit <tag> "<message>" <file>...
  2. The specified files will be staged automatically
  3. The message can contain newlines for multi-line commits
  4. NEVER mention "Claude" or "Claude Code" in commit messages - write as if a human authored the commit

Example

chez_commit feat "Add user authentication

This adds login and logout functionality." src/auth.py src/login.py