commit

Inventory, classify, and commit related worktree changes with dependency tracing.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/zeveck/zskills --skill commit-zeveck
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: commit
Source: https://github.com/zeveck/zskills/tree/main/skills/commit
Command: npx skills add https://github.com/zeveck/zskills --skill commit-zeveck

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Safe commit workflows often become error-prone when multiple agents make changes without coordination. This Skill inventories all changes, classifies related vs. unrelated files, traces dependencies, protects other agents' work, and optionally pushes or lands worktree commits.

Core Features & Use Cases

  • Inventory and classify changes across a multi-agent workspace to ensure commits only include relevant work.
  • Trace dependencies to avoid missing files or broken builds when staging or landing changes.
  • Support optional push and land operations for distributed workflows using worktrees.

Quick Start

Describe the current changes to Claude and let it guide a safe, scope-guided commit following the multi-phase workflow.

Frequently Asked Questions about commit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I make safe git commits in a multi-agent worktree environment?

Safe git commits in a multi-agent worktree require inventorying all changes, classifying related files, and tracing dependencies to isolate your work. This prevents accidentally staging or committing unrelated changes from other agents operating in the same workspace.

What's the best way to isolate staged changes when multiple agents modify the same repository?

Isolating staged changes when multiple agents modify a repository involves scope-guided classification of modified files. By inventorying changes and tracing dependencies, you can stage only relevant files and apply safeguards to avoid touching unrelated work.

How does dependency tracing work when staging commits in version control?

Dependency tracing for version control commits identifies interconnected files across your workspace to prevent broken builds. It maps related changes so you can stage complete logical units without missing files or accidentally including unrelated modifications.

Can I automate push and land operations for worktree commits?

Yes, you can automate push and land operations for worktree commits in distributed workflows. After safely staging and reviewing scope-guided changes, the workflow can optionally handle push and land operations to integrate your isolated worktree commits.

Why do my git commits include unrelated changes from other agents?

Git commits include unrelated changes when multi-agent workspaces lack change coordination and scope classification. To fix this, inventory all workspace modifications, classify related versus unrelated files, and apply safeguards to protect other agents' work before staging.