commit — community commit, claude-code-my-workflow, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

Perfect for Code Management Agents needing streamlined Git workflows and collaborative review processes. A ready-to-fork Claude Code template for academics using LaTeX/Beamer + R. Multi-agent review, quality gates, adversarial QA, and replication protocols.

pedrohcgs pedrohcgs
[765]
[1437]
更新于: 3/26/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

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

Perfect for Code Management Agents needing streamlined Git workflows and collaborative review processes. A ready-to-fork Claude Code template for academics using LaTeX/Beamer + R. Multi-agent review, quality gates, adversarial QA, and replication protocols.

核心价值

Empowers agents to efficiently manage code changes using Git, creating branches, staging files, and generating descriptive commit messages, while utilizing LaTeX/Beamer and R for academic collaborations, all within a secure and version-controlled environment using protocols like GitHub PRs.

适用 Agent 类型

Perfect for Code Management Agents needing streamlined Git workflows and collaborative review processes.

赋予的主要能力 · commit

Automating commit and PR creation for efficient code review
Generating descriptive commit messages for improved code readability
Streamlining branch management for collaborative development

! 使用限制与门槛

  • Requires Git installation and configuration
  • Excludes files containing secrets, such as settings.local.json
  • Limited to GitHub PRs for merge and review processes

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

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

commit 是什么?

Perfect for Code Management Agents needing streamlined Git workflows and collaborative review processes. A ready-to-fork Claude Code template for academics using LaTeX/Beamer + R. Multi-agent review, quality gates, adversarial QA, and replication protocols.

如何安装 commit?

运行命令:npx killer-skills add pedrohcgs/claude-code-my-workflow/commit。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

commit 适用于哪些场景?

典型场景包括:Automating commit and PR creation for efficient code review、Generating descriptive commit messages for improved code readability、Streamlining branch management for collaborative development。

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 有哪些限制?

Requires Git installation and configuration;Excludes files containing secrets, such as settings.local.json;Limited to GitHub PRs for merge and review processes。

安装步骤

  1. 1. 打开终端

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

  2. 2. 执行安装命令

    运行:npx killer-skills add pedrohcgs/claude-code-my-workflow/commit。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

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

! 参考页模式

此页面仍可作为安装与查阅参考,但 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

commit

安装 commit,这是一款面向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

Commit, PR, and Merge

Stage changes, verify quality gates, commit with a descriptive message, create a PR, and merge to main.

Steps

Step 0: Quality Gate (Pre-Commit)

Run before branching. For every changed .qmd, .tex, or .R file that has quality rubrics, run:

bash
1python3 scripts/quality_score.py <changed-file-paths>
  • If any file scores below 80, halt and report the findings. The user must either fix the issues or explicitly override with phrases like "commit anyway" or "skip quality gate".
  • If all files score 80+, continue.

Spawn the verifier agent (via Task with subagent_type=verifier) to run compilation/render checks on the changed files. Report pass/fail before committing.

Step 0b: Surface-Sync Gate (Pre-Commit)

Runs unconditionally. Enforces that count claims ("14 agents, 28 skills, 24 rules, 6 hooks" and siblings) across README.md, CLAUDE.md, the guide source + rendered HTML, the landing page, and the skill template all agree with the on-disk counts of .claude/{skills,agents,rules,hooks}:

bash
1./scripts/check-surface-sync.sh
  • Exit 0: all counts consistent — continue.
  • Exit 1: drift detected — print the diff and halt. Fix the stale counts, then re-run. Do NOT proceed past this gate on drift, even with "commit anyway" — the purpose is to catch the exact class of issue that produced PRs #70, #76, and #78.
  • Exit 2: script error (missing surface file, unreadable directory) — investigate before proceeding.

Step 1: Check current state

bash
1git status 2git diff --stat 3git log --oneline -5

Step 2: Create a branch

bash
1git checkout -b <short-descriptive-branch-name>

Step 3: Stage files

Add specific files (never use git add -A):

bash
1git add <file1> <file2> ...

Do NOT stage .claude/settings.local.json or any files containing secrets.

Step 4: Commit with a descriptive message

If $ARGUMENTS is provided, use it as the commit message. Otherwise, analyze the staged changes and write a message that explains why, not just what.

bash
1git commit -m "$(cat <<'EOF' 2<commit message here> 3EOF 4)"

Step 5: Push and create PR

bash
1git push -u origin <branch-name> 2gh pr create --title "<short title>" --body "$(cat <<'EOF' 3## Summary 4<1-3 bullet points> 5 6## Test plan 7<checklist> 8 9🤖 Generated with [Claude Code](https://claude.com/claude-code) 10EOF 11)"

Step 6: Merge and clean up

bash
1gh pr merge <pr-number> --merge --delete-branch 2git checkout main 3git pull

Step 7: Report

Report the PR URL and what was merged.

Important

  • Never skip Step 0. Quality gates catch broken compilation, bad citations, and hardcoded paths before they reach main. If the user insists on skipping, record their override reason in the commit message.
  • Always create a NEW branch — never commit directly to main.
  • Exclude settings.local.json and sensitive files from staging.
  • Use --merge (not --squash or --rebase) unless asked otherwise.
  • If the commit message from $ARGUMENTS is provided, use it exactly.

相关技能

寻找 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
开发者工具