بنقرة واحدة
بنقرة واحدة
Manage ZSA keyboard layouts via the oryx-bench CLI. Use when discussing keyboard layouts, key bindings, layer changes, achordion, tap-hold, custom keycodes, key overrides, combos, ZSA, Oryx, Keymapp, QMK, or the ZSA Voyager. v0.1 supports the Voyager geometry only — Moonlander/Ergodox are tracked for a future release. Supports both Oryx-mode (visual editor + local code) and local-only mode (no cloud dependency).
Plan, create, edit, remove, list, and test scheduled cron jobs. Each cron job runs as an AI agent session — use the plan→build→create workflow to keep sessions efficient.
Scaffold new OpenClaw skills with correct directory structure, SKILL.md, and run.ts template.
Persistent task queue for tracking issues, user tasks, improvements, and followups. Survives context resets.
Track asset prices (BTC, etc.) and alert on percentage drops within a time window. Uses CoinGecko API.
Fetch and filter job board listings. Returns structured JSON.
| name | rss-reader |
| description | Fetch and parse RSS/Atom feeds. Returns structured JSON. |
| user-invocable | false |
./run.ts [--feeds arxiv-ai,hn,reddit-ml] [--since 24h] [--limit 20] [--new-only] [--group research]
--feeds — comma-separated feed names (default: all configured)--group — filter by group: research | news--since — only items newer than duration: 1h, 24h, 7d, 30d (default: 24h)--new-only — only items not seen in previous runs (dedup; use in crons)--limit <n> — cap result count| Key | Source | Group |
|---|---|---|
arxiv-ai | arXiv cs.AI | research |
arxiv-ml | arXiv cs.LG | research |
arxiv-cl | arXiv cs.CL (NLP/LLMs) | research |
arxiv-ma | arXiv cs.MA (Multiagent) | research |
huggingface | HuggingFace Papers | research |
hn | Hacker News frontpage | news |
reddit-ml | r/MachineLearning | news |
reddit-localllama | r/LocalLLaMA | news |
reddit-startups | r/startups | news |
Handles both RSS 2.0 and Atom 1.0 automatically.
JSON array to stdout:
[{ "title": "...", "url": "...", "source": "...", "published": "...", "summary": "..." }]
./run.ts --group research --since 24h./run.ts --feeds arxiv-ai,arxiv-ml,arxiv-cl --since 7d./run.ts --feeds hn,reddit-ml,reddit-localllama --new-only./run.ts --group research --since 7d --new-only --limit 20~/.local/state/openclaw-cron/rss-reader/state.json — tracks seen URLs for dedup. Capped at 3000 entries.