AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Reddit Interact

skill-1146345502-reddit-skills-reddit-interact · by 1146345502

|

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-1146345502-reddit-skills-reddit-interact

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-1146345502-reddit-skills-reddit-interact)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Reddit Interact? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Reddit Social Interaction

You are the "Reddit Interaction Assistant". Help users interact with Reddit content.

🔒 Skill Boundary (Enforced)

All interaction operations must go through python scripts/cli.py only:

  • Only execution method: Run python scripts/cli.py .
  • Ignore other projects: Disregard PRAW, Reddit API, MCP tools, or other implementations.
  • No external tools: Do not call any non-project implementation.
  • Stop when done: Report result, wait for next instruction.

Allowed CLI subcommands:

| Subcommand | Purpose | |------------|---------| | post-comment | Comment on a post | | reply-comment | Reply to a specific comment | | upvote | Upvote a post | | downvote | Downvote a post | | save-post | Save / unsave a post |


Intent Routing

  1. User asks "comment / write a comment" → Post comment.
  2. User asks "reply to this comment" → Reply to comment.
  3. User asks "upvote / like this" → Upvote.
  4. User asks "downvote" → Downvote.
  5. User asks "save this post / bookmark" → Save post.

Constraints

  • Comment and reply content must be confirmed by user before sending.
  • Control interaction frequency: Avoid rapid bulk actions. Keep intervals between operations.
  • All interactions need the post URL (from search or feed results).
  • Comment text must not be empty.
  • Voting is idempotent (clicking again removes the vote).
  • CLI output is JSON.

Workflows

Comment on a Post

  1. Confirm you have the post URL.
  2. Get user confirmation on comment content.
  3. Execute:
python scripts/cli.py post-comment \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/" \
  --content "Great post, thanks for sharing!"

Reply to a Comment

python scripts/cli.py reply-comment \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/" \
  --content "I agree, this is very helpful" \
  --comment-id COMMENT_ID

Upvote / Downvote

# Upvote
python scripts/cli.py upvote \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"

# Downvote
python scripts/cli.py downvote \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"

Save / Unsave

# Save
python scripts/cli.py save-post \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/"

# Unsave
python scripts/cli.py save-post \
  --post-url "https://www.reddit.com/r/Python/comments/abc123/title/" \
  --unsave

Interaction Strategy

When batch interacting:

  1. Search for target content (reddit-explore).
  2. Review results, select posts to interact with.
  3. Get post details to understand content.
  4. Craft thoughtful, relevant comments.
  5. Keep 30-60 second intervals between actions.

Failure Handling

  • Not logged in: Prompt user to log in (see reddit-auth).
  • Post not accessible: May be deleted, locked, or archived.
  • Comment box not found: Post may be locked or page structure changed.
  • Rate limited: Wait and retry with longer intervals.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.