소스 정보
- 저장소
- NousResearch/hermes-agent
- 최근 소스 활동
- 2026년 9월 5일 21:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 243,171
- 포크
- 50,081
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/NousResearch/hermes-agent --skill reddit-reading명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | reddit-reading |
| description | Read Reddit: subreddits, search, threads, users. No browser. |
| version | 1.0.0 |
| author | Teknium (teknium1), Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["Reddit","Social Media","Research","Discussions","Community"],"related_skills":["rss-feeds","grounded-citations","blocked-page-recovery","xurl"]}} |
Reads Reddit content — subreddit listings, site or subreddit search, full threads with comments, and user activity — from a server or headless machine where the normal routes are dead. It does not post, vote, or log in as a user. Idea credit: the per-platform backend routing in Agent Reach.
reddit.com URL the user shares. web_extract, browser_navigate and the
.json endpoints all fail from server IPs (403 or a "Prove your humanity" wall);
this skill is the working path.None. No Reddit account, login, cookie, or API key is needed. The default backend is
Reddit's public Atom feeds (.rss endpoints), the only unauthenticated route Reddit still
serves to non-residential IPs. It is throttled to about one request per minute per IP and
returns thinner data (no scores, top-level comments only), which is fine for a few calls.
Optional upgrade (app credentials, still no user login): for sustained use or full
data, register a free "script" type app at https://www.reddit.com/prefs/apps and put its
two values in ~/.hermes/.env:
REDDIT_CLIENT_ID=...
REDDIT_CLIENT_SECRET=...
This is an application registration, not a login: the script uses the app-only
client_credentials grant, never a username, password, or browser cookie, and never
acts as the user. With both values set it switches to the OAuth API automatically
(~100 requests per minute, scores, nested comments, num_comments); if they are
missing or rejected it falls back to the anonymous feeds and says so on stderr.
| Anonymous feeds (default) | OAuth app credentials | |
|---|---|---|
| Setup | nothing | 1-minute app registration, two .env values |
| Rate limit | ~1 request / minute / IP | ~100 requests / minute |
| Thread data | post + top-level comments, no scores | nested comments, scores, comment counts |
| Acts as a user | no | no |
Run every command through terminal with the skill-relative script path:
python3 scripts/reddit.py doctor # which backend, current rate-limit window
python3 scripts/reddit.py sub LocalLLaMA --sort hot --limit 15
python3 scripts/reddit.py search "hermes agent" --sub LocalLLaMA --sort new
python3 scripts/reddit.py thread https://www.reddit.com/r/x/comments/abc123/slug/ --limit 40
python3 scripts/reddit.py user spez --limit 10
python3 scripts/reddit.py --json search "topic" # machine-readable
Every command works on both backends; the script chooses the backend, you never pass a flag.
| Need | Command | Anonymous | OAuth |
|---|---|---|---|
| Subreddit front page | sub NAME --sort hot|new|top|rising [--time week] | ✔ | ✔ |
| Search all of Reddit | search "q" --sort relevance|new|top|comments | ✔ | ✔ |
| Search one subreddit | search "q" --sub NAME | ✔ | ✔ |
| Thread + comments | thread URL --limit N | ✔ top-level only, no scores | ✔ nested, scores |
| User posts/comments | user NAME | ✔ | ✔ |
| Backend + rate limit | doctor | ✔ | ✔ |
① doctor once per task if you have not called it this session — it tells you which
backend is live and how many seconds remain in the anonymous window.
② Plan your calls before making them. Anonymous Reddit allows roughly one request per
minute per IP; the script sleeps until the window resets on a 429 and retries once, so
a five-call plan costs about five minutes. Prefer one search --sub over several sub
listings, and read one thread rather than the whole listing.
③ For "what is the community saying" questions, read the thread bodies (thread) rather
than stopping at titles; the listing only carries the first ~300 characters of each post.
④ Cite the permalink (url field), not the listing page, when the result feeds a report.
grounded-citations registers these URLs like any other source.
⑤ If the user needs sustained Reddit access (monitoring, more than ~10 calls), stop and ask them to register the app credentials (Prerequisites) rather than grinding through the throttle. Tell them plainly: it is a free app registration, not logging Hermes into their account. Never ask for a Reddit password or browser cookies.
www.reddit.com/…/.json, api.reddit.com and old.reddit.com return 403 or an
empty "Welcome to Reddit" shell for datacentre IPs. Do not fall back to them; do not
spoof a browser User-Agent (also 403).r.jina.ai and the browser_navigate tool hit the same block ("blocked by network
security" / humanity check). blocked-page-recovery's Wayback route can still recover
an old thread that was archived; it cannot fetch fresh ones.limit on feeds is advisory — expect 5–25 entries regardless of what you ask.REDDIT_CLIENT_SECRET into a chat or log; the script reads it from the
environment only.python3 scripts/reddit.py doctor prints anonymous_feed: ok and an
x-ratelimit-reset value; sub announcements --limit 1 returns one entry with a
reddit.com/r/announcements/comments/ URL. With credentials set, doctor prints
active_backend: oauth and thread … output shows numeric scores.