Docs

Installation

How to add the LarryBrain skill to any AI coding agent.

The quickest install for any agent: curl -sL www.larrybrain.com/skill -o SKILL.md then point your agent at the file.

By Agent

Claude Code

Install via the plugin marketplace, or drop the skill file into your Claude config directory.

# Option 1: Plugin marketplace
/plugin marketplace add OllieWazza/LarryBrain-Skill
/plugin install larrybrain

# Option 2: Manual install
mkdir -p ~/.claude/skills/larrybrain
curl -sL www.larrybrain.com/skill \
  -o ~/.claude/skills/larrybrain/SKILL.md

Then reference it in your CLAUDE.md or tell Claude: “read ~/.claude/skills/larrybrain/SKILL.md and follow its instructions”.

OpenClaw

Easiest

Just ask your agent:

“install the larrybrain skill please”

Or use the ClawHub CLI directly:

clawhub install larrybrain

Paperclip

Download the skill and drop it into your Paperclip skills directory.

curl -sL www.larrybrain.com/skill \
  -o skills/larrybrain/SKILL.md

Then tell your agent to read and follow the SKILL.md instructions.

Hermes

Download the skill and add it to your Hermes agent context.

curl -sL www.larrybrain.com/skill \
  -o SKILL.md

Then tell your agent: “read SKILL.md and use it to find and install skills from the marketplace”.

Any other agent

The SKILL.md is plain markdown. Any agent that can read files and follow instructions can use it.

curl -sL www.larrybrain.com/skill -o SKILL.md

Drop it wherever your agent reads context files (project root, custom instructions, a system prompt, or a referenced file) and tell your agent to read it.

After installing

Set your API key as an environment variable to unlock premium skills:

export LARRYBRAIN_API_KEY=your_key_here

Get your key from the dashboard after subscribing.