← Back to Skills Marketplace
tarasshyn

redreplier

by Taras Shynkarenko · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
48
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install redreplier
Description
Monitor Reddit for keyword mentions of a product or website using the RedReplier API. Use when the user wants to track Reddit mentions of their brand, find l...
README (SKILL.md)

RedReplier

Monitor Reddit for keyword mentions of your product, AI-scored 0-100 for relevance so you act on real leads instead of noise. SaaS — no self-hosting needed.

Setup

  1. Sign up at https://redreplier.com/signup
  2. Go to Settings → API Tokens → generate a dedicated, revocable API token for this agent — do not reuse a token also used by other tools or humans.
  3. Set the environment variable:
    export REDREPLIER_API_KEY="redreplier_your-token-here"
    

Base URL: https://ai.redreplier.com/ai-app/api/v1 Auth header: Authorization: Bearer $REDREPLIER_API_KEY

The account is determined by the token — you never pass an account or group ID.

Safety rules — read before any write call

Most RedReplier operations are safe and reversible (listing mentions, approving/rejecting). Two classes of action are not and need explicit confirmation:

  1. Billing — POST /keywords/activate-pending. Activating pending keywords promotes everything that fits the plan for free, then charges a real plan upgrade to cover the rest. Always call GET /keywords/activate-pending/preview first, show the user the immediateCharge / targetPlanName, and get an explicit "yes" before activating. Never activate in a loop.
  2. Deletion — DELETE /websites/{id}. This stops all monitoring for the website. Confirm with the user first; name the website (domain), not just the ID.

Other guidance:

  • Keyword edits are metered. PATCH /keywords/{id} counts against a monthly edit allowance (GET /keywords/change-usage). Adding and disabling are unlimited — prefer those. Don't spend edits on cosmetic changes.
  • Don't fight the grader. A SUSPENDED keyword was auto-judged too noisy. Fix the wording with an edit; don't try to force it back to ACTIVE.
  • Triage, don't fabricate. When approving/rejecting mentions, act on the AI relevanceScore/relevanceReason and the actual content — don't invent leads.

Core Workflow

1. List monitored websites (and their keywords)

curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  https://ai.redreplier.com/ai-app/api/v1/websites

Returns { "websites": [{ "id", "domain", "url", "name", "description", "keywords": [{ "id", "value", "status" }] }] }. Keyword status is one of PENDING, ACTIVE, DISABLED, SUSPENDED. Save website IDs and keyword IDs — you need them everywhere else.

2. Add a website to monitor

Omit description to let RedReplier scrape the site and AI-generate one (used as context for relevance scoring). Initial keywords are added as PENDING.

curl -X POST https://ai.redreplier.com/ai-app/api/v1/websites \
  -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "name": "Example",
    "keywords": ["example tool", "competitor name"]
  }'

To preview an AI description without creating anything:

curl -X POST https://ai.redreplier.com/ai-app/api/v1/websites/analyze-description \
  -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com" }'

3. Add keywords (and activate within plan)

Adding keywords auto-activates as many as fit the plan for free; the rest stay PENDING.

curl -X POST https://ai.redreplier.com/ai-app/api/v1/websites/WEBSITE_ID/keywords \
  -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "keywords": ["my product", "use case phrase"] }'

Preview what activating the remaining pending keywords would cost, then activate (paid upgrade possible — confirm first):

curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  https://ai.redreplier.com/ai-app/api/v1/keywords/activate-pending/preview

curl -X POST https://ai.redreplier.com/ai-app/api/v1/keywords/activate-pending \
  -H "Authorization: Bearer $REDREPLIER_API_KEY"

Other keyword actions: PATCH /keywords/{id} { "value": "new" } (edit, metered), POST /keywords/{id}/disable, POST /keywords/{id}/enable, DELETE /keywords/{id} (PENDING only).

4. List mentions (the leads)

curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  "https://ai.redreplier.com/ai-app/api/v1/mentions?sort=RELEVANCE&limit=20"

Returns { "mentions": [...], "total", "limit", "offset" }. Each mention has relevanceScore (0-100), relevanceReason, tags, keyword, title, contentText, url, author, subreddit, source, status.

Defaults: REJECTED mentions are excluded and anything scoring below 30 is hidden. Add &includeLowRelevance=true to see everything.

Useful filters (combine freely): websiteId, statuses (NEW/APPROVED/REJECTED), scoreBuckets (VERY_LOW/LOW/MEDIUM/HIGH/VERY_HIGH), keywords, sources (REDDIT_POST/REDDIT_COMMENT), sort (RELEVANCE/RECENT), from/to (ISO 8601 ingestion window), limit (1-500), offset. Repeat a key for arrays: ?statuses=NEW&statuses=APPROVED. See references/mention-filtering.md.

# This week's high-relevance, unreviewed leads for one site
curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  "https://ai.redreplier.com/ai-app/api/v1/mentions?websiteId=WEBSITE_ID&statuses=NEW&scoreBuckets=HIGH&scoreBuckets=VERY_HIGH&sort=RECENT"

Count only:

curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  "https://ai.redreplier.com/ai-app/api/v1/mentions/count?statuses=NEW"

5. Understand why a mention scored the way it did

curl -X POST https://ai.redreplier.com/ai-app/api/v1/mentions/MENTION_ID/explain \
  -H "Authorization: Bearer $REDREPLIER_API_KEY"

Returns the mention with relevanceReason and tags (lazily generated if missing).

6. Triage a mention (approve / reject / reset)

curl -X PATCH https://ai.redreplier.com/ai-app/api/v1/mentions/MENTION_ID/status \
  -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "status": "APPROVED" }'

APPROVED = real lead, REJECTED = noise (hidden from default lists), NEW = back to inbox. Reversible.

7. Email alerts

# Read current settings (includes plan's fastest allowed cadence)
curl -s -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  https://ai.redreplier.com/ai-app/api/v1/alert-settings

# Enable a 4-hour digest
curl -X PUT https://ai.redreplier.com/ai-app/api/v1/alert-settings \
  -H "Authorization: Bearer $REDREPLIER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "enabled": true, "cadenceMinutes": 240 }'

cadenceMinutes must be one of 60, 240, 720, 1440, and is clamped up to the plan's minIntervalMinutes. Returns the resolved settings (so you can confirm the cadence actually applied).

Keyword Lifecycle Cheat Sheet

Status Meaning What you can do
PENDING Proposed, not yet live/paid Activate (may upgrade), delete
ACTIVE Live, monitoring Reddit Disable, edit
DISABLED Stopped Enable (may need upgrade), edit
SUSPENDED Auto-rejected as too noisy Edit to fix (free re-grade)

Relevance Buckets

Bucket Score Typical meaning
VERY_HIGH 75-100 Strong buying intent / direct fit — review first
HIGH 50-74 Relevant discussion worth engaging
MEDIUM 30-49 Loosely related
LOW 10-29 Tangential (hidden by default)
VERY_LOW 0-9 Noise (hidden by default)

Tips for the Agent

  • Always list /websites first to get website + keyword IDs; nothing else takes an account parameter.
  • Lead-first triage: pull scoreBuckets=HIGH&scoreBuckets=VERY_HIGH&statuses=NEW, summarize each with its subreddit, relevanceScore, and a one-line relevanceReason, then ask the user which to approve.
  • Confirm before money or deletion (activate-pending upgrades, website deletion). Everything else is safe.
  • Prefer disabling over deleting keywords — only PENDING keywords can be deleted anyway.
  • Use RECENT sort for "what's new since yesterday", default RELEVANCE for "best leads".
  • Watch includeLowRelevance — leave it off unless the user explicitly wants the long tail; it floods results with noise.
  • For full request/response shapes, see references/api-reference.md.
Usage Guidance
Install if you are comfortable with the agent reading PDFs you point it at, writing output PDFs, and keeping a local pdf_jobs.json log with metadata and short text previews. Avoid highly sensitive PDFs unless you disable or remove that logging.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill describes PDF text extraction, table recognition, merging, splitting, metadata reading, and password-protected PDF support; the visible Python example stays within PDF processing and shows no unrelated network, credential collection, command execution, or destructive behavior.
Instruction Scope
The instructions are mostly purpose-scoped, but the Markdown has encoding corruption and the local pdf_jobs.json logging behavior is clearer in the code than in the short feature list.
Install Mechanism
The artifact consists of hub.json and SKILL.md only, with no executable installer, startup hook, bundled binary, or automatic dependency installation.
Credentials
Reading user-selected PDFs and writing merged or split PDFs is proportionate for this purpose; PyPDF2 is recommended as a dependency but is not auto-installed.
Persistence & Privilege
The example persists a local pdf_jobs.json file with operation history, PDF basenames, timestamps, metadata, and short text previews. This is local persistence rather than exfiltration, but it matters for sensitive documents.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install redreplier
  3. After installation, invoke the skill by name or use /redreplier
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Updated skill to focus on Reddit monitoring only; references to Hacker News support have been removed throughout. - Skill description, workflow steps, and table examples now mention only Reddit as the tracked source. - Onboarding link updated: directs users to https://redreplier.com/signup. - Minor wording and formatting updates for clarity.
v1.0.0
- Initial release of RedReplier skill for monitoring Reddit and Hacker News mentions. - Track and manage brand or product keywords, websites, and mentions using the RedReplier API. - Workflow includes adding sites/keywords, triaging AI-scored leads, and configuring email alerts. - Detailed safeguards for billing and deletion actions; explicit user confirmation required. - All operations are SaaS-based—no self-hosting needed.
Metadata
Slug redreplier
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is redreplier?

Monitor Reddit for keyword mentions of a product or website using the RedReplier API. Use when the user wants to track Reddit mentions of their brand, find l... It is an AI Agent Skill for Claude Code / OpenClaw, with 48 downloads so far.

How do I install redreplier?

Run "/install redreplier" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is redreplier free?

Yes, redreplier is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does redreplier support?

redreplier is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created redreplier?

It is built and maintained by Taras Shynkarenko (@tarasshyn); the current version is v1.0.1.

💬 Comments