Agent skill · Workflow & Productivity

ac-commit-manager

Manage git commits for autonomous coding. Use when committing feature implementations, creating descriptive commits, managing git workflow, or handling version control.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ac-commit-manager --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent/ac-commit-manager/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AC Commit Manager Manage git commits for completed feature implementations. ## Purpose Creates well-structured git commits after each feature completion, ensuring proper version control and clear project history. ## Quick Start ```python from scripts.commit_manager import CommitManager manager = CommitManager(project_dir) result = await manager.commit_feature("auth-001") ``` ## Commit Workflow ``` 1. VALIDATE → Ensure changes are safe to commit 2. STAGE → Stage relevant files 3. MESSAGE → Generate descriptive commit message 4. COMMIT → Create the commit 5. VERIFY → Verify commit was created 6. TAG → Optional: tag milestone commits ``` ## Commit Message Format ``` feat(auth): implement user registration (#auth-001) - Add registration endpoint with email/password - Implement password hashing with bcrypt - Add input validation for email format - Create user model and database migration Test: All 5 acceptance criteria passing Coverage: 92% Feature: auth-001 Status: passes ``` ## Commit Result ```json { "success": true, "commit_hash": "abc123def456", "feature_id": "auth-001", "message": "feat(auth): implement user registration", "files_changed": [ "src/auth/register.py", "src/models/u

What's inside
Steps it walks through
  1. Purpose
  2. Quick Start
  3. Commit Workflow
  4. Commit Message Format
  5. Commit Result
  6. Commit Categories
  7. Pre-Commit Checks
  8. Atomic Commits
  9. Configuration
  10. Rollback Support
  11. Integration
  12. API Reference
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the ac-commit-manager skill do?

Manage git commits for autonomous coding. Use when committing feature implementations, creating descriptive commits, managing git workflow, or handling version control.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill ac-commit-manager --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going