Skip to content

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.

SkillUse when…
reoclo-cli-usageoperating 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 we publish them.

Claude Code discovers skills under a .claude/skills/ directory. Pick whichever fits.

Terminal window
git clone https://github.com/reoclo/skills.git ~/.claude/skills

Add the repo as a submodule, then symlink the skills you want:

Terminal window
git submodule add https://github.com/reoclo/skills.git skills
git submodule update --init skills
mkdir -p .claude/skills
ln -sfn ../../skills/reoclo-cli-usage .claude/skills/reoclo-cli-usage

Each skill is a self-contained directory. Copy the one you need:

Terminal window
cp -R skills/reoclo-cli-usage /path/to/project/.claude/skills/

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.

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.