Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

rdt-cliRDT CLI 搜索

Agent Skill

rdt-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,054

周安装

126

GitHub Stars

349

下载量

998
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rdt-cli(RDT CLI 搜索)
来源仓库:https://github.com/jackwener/rdt-cli
仓库路径:skills/rdt-cli
安装命令:
npx skills add https://github.com/jackwener/rdt-cli --skill rdt-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jackwener/rdt-cli --skill rdt-cli

简介

用于根据关键词查找和筛选相关信息。rdt-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在多种宿主环境中快速定位候选结果。
  • 使用时可结合仓库 README 核验具体用法和参数。
  • 安装前建议确认是否触发联网或文件读写操作。
  • 需注意维护状态和权限范围,避免不必要的系统访问。

SKILL.md

rdt-cli — Reddit CLI Tool

Binary: rdt Credentials: browser cookies (auto-extracted via browser-cookie3)

Setup

# Install (requires Python 3.10+)
uv tool install rdt-cli
# Or: pip install rdt-cli

# Upgrade
uv tool upgrade rdt-cli

Authentication

IMPORTANT FOR AGENTS: Before executing ANY rdt command that requires auth, check if credentials exist.

Step 0: Check if already authenticated

rdt status --json 2>/dev/null | jq -r '.data.authenticated' | grep -q true && echo "AUTH_OK" || echo "AUTH_NEEDED"

If AUTH_OK, skip to Command Reference. If AUTH_NEEDED, proceed to Step 1.

Step 1: Guide user to authenticate

Ensure user is logged into reddit.com in a supported browser (Chrome, Firefox, Edge, Brave, Arc, Chromium, Opera, Vivaldi, Safari, LibreWolf). Then:

rdt login

Verify with:

rdt status
rdt whoami --json | jq '.data.name // .data._session.username'

Step 2: Handle common auth issues

SymptomAgent action
No Reddit cookies foundGuide user to login to reddit.com in browser
Session expiredRun rdt logout && rdt login
database is lockedClose browser, then retry

Agent Defaults

All machine-readable output uses the envelope documented in SCHEMA.md. Payloads live under .data.

  • Non-TTY stdout → auto YAML
  • --json / --yaml → explicit format
  • --compact → fewer fields (agent token-efficient)
  • --output file.json → save structured output to file
  • Rich output → stderr (safe for pipes: rdt search X --json | jq.data)
  • Most read commands work without auth (public Reddit JSON API)
  • Write actions (upvote, save, subscribe) require auth + built-in 1.5-4s delay

Command Reference

Browsing

CommandDescriptionExample
rdt feedBrowse home feed (requires login)rdt feed -n 10 --json
rdt feed --subs-onlySubscriptions-only feed (no algorithm, sorted by time)rdt feed --subs-only -n 5 --json
rdt popularBrowse /r/popularrdt popular -n 5 --json
rdt allBrowse /r/allrdt all -n 10 --compact --json
rdt sub <name>Browse a subredditrdt sub python -s top -t week
rdt sub-info <name>View subreddit infordt sub-info rust --json
rdt user <name>View user profilerdt user spez --json
rdt user-posts <name>View user's postsrdt user-posts spez -n 5 --json
rdt user-comments <name>View user's commentsrdt user-comments spez -n 5 --json
rdt savedView your saved itemsrdt saved -n 10 --json
rdt upvotedView your upvoted postsrdt upvoted -n 10 --json
rdt open <id_or_index>Open post in browserrdt open 3

Reading

CommandDescriptionExample
rdt read <post_id>Read a post + commentsrdt read 1abc123 --json
rdt read <post_id> --expand-moreExpand top-level more commentsrdt read 1abc123 --expand-more --json
rdt show <index>Read by short-indexrdt show 3
rdt show <index> --expand-moreExpand more comments from cached resultrdt show 3 --expand-more --json
rdt whoamiView your profile (karma, age)rdt whoami --json

Search & Export

CommandDescriptionExample
rdt search <query>Search postsrdt search "python async" -s top -t year
rdt search <query> -r <sub>Search in subredditrdt search "error" -r rust --json
rdt search <query> -o f.jsonSearch + save to filerdt search "ML" -n 50 -o results.json
rdt export <query>Export to CSV/JSONrdt export "ML" -n 50 -o results.csv

Interactions (require auth)

CommandDescriptionExample
rdt upvote <id_or_index>Upvoterdt upvote 3
rdt upvote <id> --downDownvoterdt upvote 3 --down
rdt upvote <id> --undoRemove voterdt upvote 3 --undo
rdt save <id_or_index>Save postrdt save 3
rdt save <id> --undoUnsaverdt save 3 --undo
rdt subscribe <sub>Subscriberdt subscribe python
rdt subscribe <sub> --undoUnsubscriberdt subscribe python --undo
rdt comment <id> <text>Post a commentrdt comment 3 "Great post!"

Account

CommandDescription
rdt loginExtract cookies from browser
rdt logoutClear cached cookies
rdt statusCheck authentication status
rdt whoamiView detailed profile info

Listing Options

All listing commands (feed, popular, all, sub, user-posts, user-comments, saved, upvoted, search) support:

FlagDescription
--jsonJSON output (with SCHEMA envelope)
--yamlYAML output (with SCHEMA envelope)
-o, --output FILESave structured output to file
--full-textShow full title without truncation
-c, --compactAgent-friendly compact output (fewer fields)

Feed-specific Options

FlagDescription
--subs-onlyShow only posts from subscribed subreddits (sorted by time, no algorithm)
--max-subs NMax subscriptions to fetch (default: 20)

Agent Workflow Examples

Browse → Read → Upvote pipeline

rdt sub python -s top -t week -n 5
rdt show 1 --expand-more
rdt upvote 1

Search → Export pipeline (structured)

rdt search "machine learning" -s top --compact --json | jq '.data'
rdt export "machine learning" -n 100 -o ml_posts.csv

Search → Save to file

rdt search "rust async" -n 50 -o results.json
rdt search "python tips" -n 20 --compact -o tips.json

User research

rdt user spez --json | jq '.data | {name, link_karma, comment_karma}'
rdt user-posts spez -n 10 --compact --json
rdt user-comments spez -n 10 --compact --json

Saved / Upvoted review

rdt saved -n 20 --compact --json
rdt upvoted -n 20 --compact --json

Subscriptions-only monitoring

rdt feed --subs-only -n 5 --compact --json
rdt feed --subs-only --max-subs 10 -o subs_feed.json

Subreddit discovery

rdt sub-info python --json | jq '.data | {subscribers, accounts_active}'
rdt sub python -s top -t month -n 5 --full-text

Sort Options

  • Listing sort: hot, new, top, rising, controversial, best
  • Search sort: relevance, hot, top, new, comments
  • Time filter (for top/controversial): hour, day, week, month, year, all
  • Comment sort: best, top, new, controversial, old, qa

Error Codes

Structured error codes returned in the error.code field (see SCHEMA.md):

  • not_authenticated — cookies expired or missing
  • rate_limited — too many requests
  • not_found — subreddit/user/post does not exist
  • forbidden — private subreddit or blocked user
  • api_error — upstream Reddit API error
  • unknown_error — unexpected error

Limitations

  • No DMs — cannot access private messages
  • No live/streaming — live features not supported
  • No media download — cannot download images/videos
  • Single account — one set of cookies at a time
  • Rate limited — built-in Gaussian jitter (~1s) between requests
  • Public API only — uses.json suffix API, not OAuth endpoints

Anti-Detection Notes for Agents

  • Do NOT parallelize requests — the built-in rate-limit delay is for account safety
  • Write operation delay: 1.5-4s random delay after each write (upvote/save/subscribe/comment)
  • Batch operations: add delays between CLI calls when doing bulk work
  • Chrome 133 fingerprint: all requests use consistent browser identity
  • Exponential backoff: 429/5xx errors are auto-retried with backoff

Safety Notes

  • Do not ask users to share raw cookie values in chat logs
  • Prefer browser cookie extraction over manual secret copy/paste
  • If auth fails, ask the user to re-login via rdt login
  • Built-in rate-limit delay protects accounts; do not bypass it

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.48%
按下载量换算354

Claude

32.57%
按下载量换算325

Cursor

19.82%
按下载量换算198

Gemini CLI

8.92%
按下载量换算89

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills