ReddGrowReddGrow Docs
Integrations

Claude Code Plugin

Install the ReddGrow skill and plugin for Claude Code — manage campaigns, drafts, brand monitoring, and AEO visibility directly from your terminal

The ReddGrow Claude Code plugin teaches Claude to drive the reddgrow CLI from your terminal. Once installed, Claude can manage campaigns, subreddits, advocates, drafts, brand mentions, and AEO visibility — and browse live Reddit data — without leaving your editor.


Prerequisites


Install

Option A — Skill only (fastest)

Installs the reddgrow skill into ~/.claude/skills/reddgrow/. No CLI required upfront.

npx @reddgrow/cli skill install

The skill auto-activates when you ask Claude about campaigns, drafts, brand monitoring, or Reddit data.

Option B — Skill + slash commands

Installs the skill and three ready-made slash commands (/reddgrow-setup, /reddgrow-campaign, /reddgrow-monitor).

First install the CLI globally, then run:

npm install -g @reddgrow/cli
reddgrow skill install
reddgrow commands install

To update commands after a new CLI release: reddgrow commands install --force


Authenticate

Install the CLI globally and save your API key:

npm install -g @reddgrow/cli
reddgrow auth login rg_your_api_key_here

Or set the environment variable instead:

export REDDGROW_API_KEY=rg_your_api_key_here

Example prompts

Once the skill is installed, talk to Claude naturally:

"List my pending drafts and approve the ones with a relevance score above 80."

"Add r/startups to my SaaS campaign and check if our URL has been posted there before."

"Show me new brand mentions from the last 24 hours with negative sentiment."

"Create a campaign for acme.com targeting productivity subreddits."

"What's my AEO visibility score for my main brand this week?"

"Research r/webdev — rules, recent top posts, subscriber count."


Keeping the skill up to date

The skill file is bundled inside @reddgrow/cli. To update it after a new CLI release:

npx @reddgrow/cli skill install --force

Uninstall

# Remove the skill
reddgrow skill uninstall

# Remove slash commands (if installed via Option B)
reddgrow commands uninstall

# npx variants (no global install required)
npx @reddgrow/cli skill uninstall
npx @reddgrow/cli commands uninstall

Troubleshooting

"No API key configured"

Run reddgrow auth login rg_... or set REDDGROW_API_KEY in your environment.

Skill not activating automatically

Check that ~/.claude/skills/reddgrow/SKILL.md exists: reddgrow skill path. If missing, re-run reddgrow skill install.

Commands show ANSI color codes in output

Pass --mode agent to suppress color and spinners: reddgrow campaigns list --mode agent. The slash commands do this automatically.