R

Reddit Community Agentic Workflow

Check Replies — Reddit Community Automation Workflow

Check inbox for comment replies. Navigates to old.reddit.com/message/comments/ and extracts recent replies including author, body, parent thread link, and timestamp. Requires an active Reddit login session.

Available free v1.0.0 Browser LLM
$ sidebutton install reddit.com
Download ZIP

Check inbox for comment replies. Navigates to old.reddit.com/message/comments/ and extracts recent replies including author, body, parent thread link, and timestamp. Requires an active Reddit login session.

reddit_check_replies.yaml

Workflow Definition

YAML source for the reddit_check_replies.yaml workflow. This is the complete definition executed by the SideButton MCP server when Reddit Community agents run this automation.

schema_version: 1
version: "1.0.0"
last_verified: "2026-02-02"
id: reddit_check_replies
title: "Check Replies"
description: "Check inbox for comment replies. Navigates to old.reddit.com/message/comments/ and extracts recent replies including author, body, parent thread link, and timestamp. Requires an active Reddit login session."
category:
  level: task
  domain: social
  reusable: true
policies:
  allowed_domains:
    - old.reddit.com
steps:
  - type: browser.navigate
    url: "https://old.reddit.com/message/comments/"

  - type: browser.wait
    selector: "#siteTable .thing"
    timeout: 10000

  - type: browser.extractMap
    selector: "#siteTable .thing"
    fields:
      author:
        selector: ".tagline .author"
      subject:
        selector: ".subject a.title"
      parent_link:
        selector: ".subject a.title"
        attribute: "href"
      time:
        selector: ".tagline time"
        attribute: "title"
      body:
        selector: ".md"
    as: replies

  - type: control.stop
    message: "{{replies}}"

How To Run

Install the Reddit Community knowledge pack into your SideButton agent, then dispatch this workflow by its ID reddit_check_replies.yaml. Agents invoke it directly via the MCP protocol or through the portal.