ワンクリックで
reddit-digest
Fetch and summarize top posts from your favorite subreddits using Reddit's public JSON API -- no API key or account required.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Fetch and summarize top posts from your favorite subreddits using Reddit's public JSON API -- no API key or account required.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Manage the Trinity AGI auth service and RBAC system -- database schema, role hierarchy, permission management, JWT flow, audit logging, and API endpoints.
Sync files between the host machine and the running Trinity Docker containers — config, agent files, skills, and extensions.
Develop the Trinity AGI Flutter Web Shell -- understand the architecture, A2UI renderer, WebSocket models, dual-client pattern, design tokens, and build workflow.
Operate the Trinity AGI Kubernetes infrastructure -- Helm charts, multi-tenant per-user OpenClaw pods, Vault Agent Injector secrets, minikube dev, and production deployment.
Operate the OpenClaw Gateway that powers Trinity AGI — configure providers, manage sessions, use the CLI, and understand the WebSocket protocol.
Manage the Trinity AGI Docker Compose stack — start, stop, logs, rebuild frontend, and full deploy.
| name | reddit-digest |
| description | Fetch and summarize top posts from your favorite subreddits using Reddit's public JSON API -- no API key or account required. |
| metadata | {"openclaw":{"emoji":"📰","requires":{"bins":["uv"]},"install":[{"id":"uv-brew","kind":"brew","formula":"uv","bins":["uv"],"label":"Install uv (brew)"}]}} |
Fetch top posts from any subreddit via Reddit's public JSON API. No API key, no account, no authentication required.
uv run {baseDir}/scripts/fetch_reddit.py --subreddits "python,machinelearning"
uv run {baseDir}/scripts/fetch_reddit.py -s "selfhosted,homelab,LocalLLaMA,singularity"
Top posts from the past week with at least 100 upvotes:
uv run {baseDir}/scripts/fetch_reddit.py -s "worldnews" --sort top --time week --min-score 100
Rising posts (good for catching trends early):
uv run {baseDir}/scripts/fetch_reddit.py -s "technology" --sort rising --limit 5
New posts:
uv run {baseDir}/scripts/fetch_reddit.py -s "programming" --sort new --limit 15
Fetch top 3 comments per post for richer context:
uv run {baseDir}/scripts/fetch_reddit.py -s "AskReddit" --limit 5 --include-comments
uv run {baseDir}/scripts/fetch_reddit.py -s "python" --sort top --time day --json
Daily morning digest at 7 AM:
cron add "0 7 * * *" "Fetch my Reddit digest from r/selfhosted, r/LocalLLaMA, r/machinelearning (top posts, last 24h, min 50 upvotes) and summarize the most interesting posts." --name "reddit-morning"
Weekly deep dive on Saturdays:
cron add "0 9 * * 6" "Fetch top posts from r/programming, r/python, r/golang for the past week (min 200 upvotes, include comments) and write a summary of key discussions." --name "reddit-weekly"
| Flag | Default | Description |
|---|---|---|
--subreddits, -s | (required) | Comma-separated subreddit list |
--sort | hot | hot, top, new, rising |
--time, -t | day | Time window for top: hour, day, week, month, year, all |
--limit, -l | 10 | Posts per subreddit |
--min-score | 0 | Minimum upvotes to include |
--include-comments, -c | off | Fetch top 3 comments per post |
--json | off | Raw JSON output |
.json endpoints (no OAuth, no API key).