Files
holocron/plugins/git/skills/pc-run
Defame1297 0239b00944 feat(git-plugin): add complete git workflow automation suite
## Why
The git plugin only covered a partial slice of common git workflows.
This adds the remaining skill set (branches, commits, history, remotes,
submodules, workflow, worktrees) plus a git-orchestrate agent so the
plugin can handle end-to-end git automation instead of a handful of
commands.

## Implementation Notes
Each new skill was validated against its research docs and org
conventions after initial authoring, which surfaced hallucinated
version pins, factual errors, and completeness gaps that were
corrected in the same pass rather than left for follow-up.

## Impact
Bumps the git plugin to 1.3.0.

Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-04 18:46:02 +00:00
..

pc-run

Runs, installs, updates, and maintains pre-commit hooks in a local git clone.

What it does

pc-run handles everything that happens after .pre-commit-config.yaml exists: wiring hooks into git, running them, bumping their versions, and maintaining the cache. When hooks fail, it identifies the cause and suggests a concrete fix — it does not auto-fix files or edit the config. For creating or editing .pre-commit-config.yaml, use pc-author instead.

Before you start

  • pre-commit must be installed and available on PATH
  • A .pre-commit-config.yaml must exist at the repo root (use pc-author to create one)

Usage

Common invocations:

  • /pc-run — run all hooks against all files (default)
  • /pc-run install — wire hooks into .git/hooks/
  • /pc-run autoupdate — bump all rev values to latest
  • /pc-run clean — wipe the pre-commit cache (requires confirmation)

Files

File Purpose
SKILL.md Skill instructions for agents
references/failure-patterns.md Hook failure causes and concrete fix suggestions
references/sources.md Provenance: research sources that informed this skill
references/README.md Directory index for references/