Two bundled fixes across the same nine skills, since both touch the same files. Issue #113: skill prose used rtk git and bare git inconsistently for the same operations, with no stated rule for which applied where. Executable instructed commands (a dispatch-table "Run" cell, a fenced code-block procedure, an imperative step) now consistently use rtk git; illustrative or referential mentions -- naming a flag's behavior, quoting a doc heading, warning against an anti-pattern -- stay bare git. Documented in the new plugins/git/README.md, scoped to this plugin only: gitea-* skills talk to the server over MCP tools and carry no git/rtk mentions at all. Also the git-plugin slice of #127: metadata.version added to the eight skills that lacked it. git-commits already had one and is untouched. Fixes: #113 Fixes: #127 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EeH8SCbcrCAQrtymkNuhKP
git-remotes
Manage git remote repositories — add/remove/configure remotes, push/pull with safety checks, fetch with pruning, and multi-remote workflows.
What it does
This skill handles remote operations within the git workflow suite. It manages remote configuration (add, remove, rename), fetch operations with pruning, push operations with force-push safety (--force-with-lease --force-if-includes), and pull strategies (fast-forward, rebase, merge). It returns structured results suitable for agent composition.
Usage
/git-remotes
Describe your remote operation: add a remote, push, pull, fetch, or configure tracking. The skill will handle the operation with appropriate safety checks and return results.
Files
| File | Purpose |
|---|---|
SKILL.md |
Skill instructions for agents — force-push gate, dispatch table, return format |
references/README.md |
Describes the references directory contents |
references/remote-config.md |
Read when adding, removing, renaming, inspecting or re-pointing a remote, or configuring tracking, mirroring, or set-url |
references/fetch.md |
Read when fetching or pruning remote-tracking refs, or doing a shallow or partial fetch |
references/push.md |
Read when pushing branches or tags, writing refspecs, or force-pushing |
references/pull.md |
Read when integrating remote changes into the current branch, including the divergence rule |
references/sources.md |
Research sources and provenance |
Composition
Callers that need submodule initialization after a --recurse-submodules pull hand off to
git-submodules; local-only work (commits, branches, history) belongs to git-commits,
git-branches, and git-history. The git-workflow skill routes humans here for any
remote-touching request.