Agent Skills
Agent skills are reference guides that Claude Code (and other skill-aware agents) load on demand to apply proven techniques. Reoclo publishes a set of open-source skills you can drop into your own workflow.
They live in the public reoclo/skills repository — free to use, vendor, or extend.
Available skills
Section titled “Available skills”| Skill | Use when… |
|---|---|
reoclo-cli-usage | operating Reoclo from the terminal with the reoclo CLI — login, servers, apps, deploy, logs, exec/shell, tunnels, env, domains, and scripting. |
More skills will land here as they’re published.
Install
Section titled “Install”Claude Code discovers skills under a .claude/skills/ directory. Pick whichever fits.
Globally (all your sessions)
Section titled “Globally (all your sessions)”git clone https://github.com/reoclo/skills.git ~/.claude/skillsIn a single project
Section titled “In a single project”Add the repo as a submodule, then symlink the skills you want:
git submodule add https://github.com/reoclo/skills.git skillsgit submodule update --init skillsmkdir -p .claude/skillsln -sfn ../../skills/reoclo-cli-usage .claude/skills/reoclo-cli-usageCopy a single skill
Section titled “Copy a single skill”Each skill is a self-contained directory — copy the one you need:
cp -R skills/reoclo-cli-usage /path/to/project/.claude/skills/Using a skill
Section titled “Using a skill”Once installed, ask Claude Code to do something the skill covers — for example, “deploy my app with the reoclo CLI” — and it loads the matching skill automatically. You can also reference a skill by name.
Contributing
Section titled “Contributing”Skills are plain Markdown with a small YAML frontmatter (name + description). See the repository README for authoring conventions, and Anthropic’s skill-authoring guide for the full format.