modelscope.cn

git-commit-cn

Generate conventional Chinese git commit messages with emojis. Use when committing staged changes.

Installation

$ npx skills add https://modelscope.cn

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash
More metadata
category
development-tools
tags
["git","commit-message","conventional-commits","chinese"]

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 821 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

  1. Analyze changes via git diff --staged and git status.
  2. Determine commit type and emoji using [references/commit-types.md](references/commit-types.md) and $ARGUMENTS.
  3. Split changes into separate commits by module/type.
  4. Execute commit using HEREDOC: git commit -m "$(cat <<'EOF' \n <type>(<scope>): <emoji> <description> \n EOF)".
  5. Push changes to remote. Confirm before pushing to main or master.
  6. PROHIBITED: Never include Co-Author fields or attribution lines.