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]
Updated: 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.

최적의 용도

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

실행 가능한 사용 사례 for 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 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.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is 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.

How do I install commit?

Run the command: npx killer-skills add pedrohcgs/claude-code-my-workflow/commit. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for commit?

Key use cases include: Automating commit and PR creation for efficient code review, Generating descriptive commit messages for improved code readability, Streamlining branch management for collaborative development.

Which IDEs are compatible with commit?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for commit?

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

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add pedrohcgs/claude-code-my-workflow/commit. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use commit immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

Install commit, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

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.

관련 스킬

Looking for an alternative to commit or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자