rrt skill
Install bundled rrt user workflow skills.
Overview
rrt skill manages installation of the packaged user-facing rrt skills into
tool-specific skill directories. The only implemented subcommand is install.
This repository bundles ten user workflow skills:
rrt-user-bootstraprrt-user-versioningrrt-user-release-flowrrt-user-branch-strategyrrt-user-commit-qualityrrt-user-changelog-automationrrt-user-docs-consistencyrrt-user-config-safetyrrt-user-ci-readinessrrt-user-migration-uvx-to-installed
Target surfaces
The install command can write to local or global skill roots for:
- Claude:
.claude/skills - Codex:
.codex/skills - Copilot:
.github/skills(local),~/.copilot/skills(global) - Gemini:
.gemini/skills
Each target receives one directory per bundled skill, each containing a
SKILL.md.
Behavior
- Accepts one or more
--targetvalues; duplicates are ignored after first use. - Resolves local targets relative to the current working directory and global targets relative to the home directory.
- Refuses to overwrite an existing skill directory unless
--forceis provided. - Supports
--dry-runpreviews that show the resolved destination paths without writing files.
Examples
rrt skill install --target copilot-localrrt skill install --target claude-local --target codex-localrrt skill install --target gemini-localrrt skill install --target copilot-global --force --dry-run
Caveats
rrt skillrequires a subcommand; userrt skill install ....- Without
--target, the command prints available destinations in dry-run mode and otherwise fails. - Existing symlinks, files, or directories at the destination are replaced
only when
--forceis used.