惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
B
Blog
N
Netflix TechBlog - Medium
量子位
月光博客
月光博客
博客园_首页
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
M
MIT News - Artificial intelligence
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
L
LangChain Blog
GbyAI
GbyAI
IT之家
IT之家
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Slax Reader CLI: a read-later library your AI agents can use
wulujia · 2026-05-20 · via Hacker News - Newest: "AI"

· 5 min read ·

  • reader
  • cli
  • ai-agents

A CLI that turns Slax Reader into a persistent reading store any AI agent — Claude Code, Codex, Gemini CLI, Cursor — can read from and write to.

We shipped a CLI for Slax Reader, our read-later app. The interesting bit isn’t the CLI itself — it’s that your reading library is now a first-class tool that AI agents can call. Bookmark, list, and pipe-into-prompt are all scriptable.

Repo: github.com/slax-lab/slax-reader-cli (MIT). Install and usage below.


Why a CLI

Most AI agents have nowhere to put things.

Ask Claude Code to “save this article for later” — it can’t. ChatGPT can summarize a URL but can’t write the link anywhere you’ll find tomorrow. A browser agent scanning your timeline has no persistent store. Every conversation is fenced inside the tool it happened in.

The CLI fills that gap. Slax Reader becomes a persistent reading store that any agent — Claude Code, Claude Desktop, Codex, Gemini CLI, OpenClaw, Cursor, Windsurf — can read from and write to.

Concretely:

  • Browser agent scanning your X timeline → reader-cli add saves the links.
  • Claude Code drafting a piece → calls reader-cli list --filter inbox to pull today’s saves as source material.
  • Your weekend script pulls reader-cli list --filter archive --json from the last 30 days and feeds it into your own pipeline.

The library stops being a passive bookmark pile. It becomes a corpus your agents can work with.


What you can do with it

1. Filter, don’t summarize

Most “AI reads long articles for you” tools default to summarization. We think filtering is more useful.

Tell Claude Code: “Take the long piece I saved this morning, give me the 3 most counterintuitive points and 1 point I’d probably disagree with.”

Under the hood the agent runs reader-cli list --filter inbox --json, picks the right bookmark, then reader-cli get <id> --markdown to pull the content. You never see the UUID.

You don’t need the article condensed. You need to know whether it’s worth your time, and which 5 minutes inside it matter.

2. Batch save by rule

reader-cli add takes URLs, but the interesting workflow is letting an agent do the picking:

  • “Scan the HN front page, save any post over 200 points in archive mode (full snapshot).”
  • “Watch my X timeline. Save links posted by the 8 accounts I save from most often.”
  • “Scan this Substack publication’s last 30 posts. Save anything with ‘agent’ in the title.”

This is scraping. The difference is you describe the rule in plain English instead of writing the scraper.

Traditional reader workflow:

  1. Subscribe to N feeds.
  2. RSS reader pulls everything.
  3. You scan headlines.
  4. You save things to read later.
  5. You actually read them.

Step 3 — “scan the headlines yourself” — is the part that should belong to AI now.

Inverted:

  1. Agent subscribes to feeds.
  2. Agent scans, sends you a digest.
  3. You point at the 3 worth reading.
  4. Agent saves them to Reader.

A concrete example I run:

  • Open-source LLM release tracking. Agent scans HuggingFace trending, the release pages for Anthropic / Mistral / Meta / Qwen / DeepSeek, r/LocalLLaMA, and arxiv-sanity. Saves any new model card or benchmark worth reading, tagged models. Weekly digest.

After setting this up I dropped most of my RSS subscriptions. Not because they’re bad — because the scanning step shouldn’t be mine anymore.

4. Querying past-you

Every writer reinvents wheels. You read something last month that explained an idea clearly. You can’t find it now.

Before starting a piece, ask Claude Code: “In my Slax Reader archive, find everything about agent design patterns from the last 90 days.” The agent calls reader-cli list --filter archive --json, filters in its context, and returns a research brief from past-you. No re-reading the whole archive yourself.

Advanced: any time you read something that contradicts a view you currently hold, save it with #self-challenge. Once a quarter, read them back. That’s your opinions evolving, made queryable.


A few things about the product

For the skeptical:

  • Open source, self-hostable. Slax Reader itself is Apache 2.0 (github.com/slax-lab/slax-reader). The CLI is MIT. Export anytime.
  • Our cash flow is stable and we’re committed to running this long-term. Pocket was discontinued by Mozilla in 2025 and left a lot of people with read-later abandonment trauma. We won’t put you through that.
  • Permanent backup is free. Bookmarks + full-text cache, free forever. Readwise, Instapaper Premium, Matter, and former Pocket all charge for this. We don’t.
  • Full-text search and highlights are free. Same reasoning.
  • We continuously invest in platform-specific parsers. X, Threads, and Substack are well-supported. On the Chinese side we have dedicated parsers for WeChat Official Accounts, Xiaohongshu, Weibo, and Zhihu.
  • iOS, Android, web, browser extension.

Install

# One step: installs the CLI and the AI agent skill
npx @slax-lab/reader-cli@latest install

# Authenticate (paste API key from reader.slax.com → Settings → API Keys)
reader-cli login

# Use it
reader-cli add https://example.com --tags "models,ai" --archive
reader-cli list --filter inbox
reader-cli get <bookmark-id> --markdown

Or just point your agent at the install guide and let it do the whole thing:

“Help me install and set up Slax Reader CLI: https://github.com/slax-lab/slax-reader-cli/blob/main/docs/ai-agent-installation-guide.md


Sign-up via my referral gets you a few months of Pro: r.slax.com/luca-reader. None of the workflows above require Pro — permanent backup, full-text search, and the CLI all work on free.