Matter

2K posts

Matter banner
Matter

Matter

@matter

On a quest to build the perfect reader. Get the app: https://t.co/5x36uYwVah https://t.co/s0KVjxkVhs

Katılım Şubat 2020
0 Takip Edilen12.4K Takipçiler
Sabitlenmiş Tweet
Matter
Matter@matter·
Pocket is shutting down. All respect to the pioneer of read-later apps. 🫡 We're here for the long haul and welcome displaced Pocket users seeking a new home. 1. Matter's core read-later service is FREE forever. 2. Pocket users get 50% off 1-yr Premium. 3. Matter is iOS-focused (no Android). Email ben@getmatter.com for discount link.
English
21
14
186
166.5K
Matter retweetledi
Cate Hall
Cate Hall@catehall·
I really had fun revisiting my favorite-ever short writing for Words That Matter -- ft. the Goddess of Everything Else, Cat's Cradle, Bukowski, Kurzgesagt, and the Avett Brothers
Ben Springwater@benspringwater

My whole life I’ve been a sucker for self-help. The genre has a bad rep because there’s so much crap, but the best of it changes lives. In the year 2026, no one is doing better work here than @catehall, who writes with a crazy level of precision, pulse, and power. I’m thrilled to feature Cate as guest curator in this week’s issue of Words That Matter. @benspringwater/note/c-245483278?r=hze6&utm_medium=ios&utm_source=notes-share-action" target="_blank" rel="nofollow noopener">substack.com/@benspringwate

English
0
2
29
5.1K
Matter retweetledi
Ben Springwater
Ben Springwater@benspringwater·
My whole life I’ve been a sucker for self-help. The genre has a bad rep because there’s so much crap, but the best of it changes lives. In the year 2026, no one is doing better work here than @catehall, who writes with a crazy level of precision, pulse, and power. I’m thrilled to feature Cate as guest curator in this week’s issue of Words That Matter. @benspringwater/note/c-245483278?r=hze6&utm_medium=ios&utm_source=notes-share-action" target="_blank" rel="nofollow noopener">substack.com/@benspringwate
English
0
2
36
8.5K
Matter retweetledi
Ben Springwater
Ben Springwater@benspringwater·
We're working on a major overhaul of the Discover experience in @matter. Soon, you'll be able to tune your feed across: Surprise <--> Personalization Timelessness <--> News Deep dives <--> Quick reads
Ben Springwater tweet media
English
1
2
39
1.9K
Matter retweetledi
Anna Gát 🧭
Anna Gát 🧭@TheAnnaGat·
A few days ago, I created a “best of” reading list for the reading platform @matter — was my second time being invited. I wanted to pick dangerous readings this time because I think truth — and so, subsequently, good writing — is always at least a little dangerous: words.getmatter.com/p/anna-gat-bye…
English
0
6
24
2.4K
Matter retweetledi
denos.ai
denos.ai@denowashuman·
Most AI assistants can't touch your personal reading queue. Matter just gave them access. New CLI lets your agents digest your inbox, pull highlights on any topic, and auto-tag articles. Works in Claude Code, Codex, or any agent runtime.
Matter@matter

Introducing the Matter CLI. Now your agents can access Matter on your behalf. > Write me a digest of this week’s news from my inbox. > Find articles about Iran and add ‘iran’ tag. > Pull all my highlights about parenthood. Try it in Claude Code, Codex, or wherever your agents work.

English
0
1
3
766
Matter retweetledi
Sky Lan
Sky Lan@tianskylan·
This is an incredible way to let your agents know about you. What you actually finish reading & take notes on say a lot about what you care about. I asked the classic question "based on my reading & annotation history, tell me something I may not know about myself" in Claude Code. It suggests a contradiction I've been grappling with for a while now - "letting go of outcomes" vs "agency and high expectations". Equanimity is naturally where I gravitate. But I do wonder if you can overdo it sometimes.
Sky Lan tweet media
Matter@matter

Introducing the Matter CLI. Now your agents can access Matter on your behalf. > Write me a digest of this week’s news from my inbox. > Find articles about Iran and add ‘iran’ tag. > Pull all my highlights about parenthood. Try it in Claude Code, Codex, or wherever your agents work.

English
0
1
2
835
Harikesh Kalyanpur
Harikesh Kalyanpur@hakalyanpur·
@matter Especially to build something like this. x.com/karpathy/statu… Just this weekend sent multiple import/export emails to matter to build this and now with this it will be seamless. Thank you! @matter
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
1
0
1
19
Matter
Matter@matter·
Introducing the Matter CLI. Now your agents can access Matter on your behalf. > Write me a digest of this week’s news from my inbox. > Find articles about Iran and add ‘iran’ tag. > Pull all my highlights about parenthood. Try it in Claude Code, Codex, or wherever your agents work.
English
6
2
78
14.8K
buggles
buggles@_buggles·
@matter Been reverse engineering this glad we have support now
English
1
0
1
134
Adam Thede
Adam Thede@AdamThede·
Finally! I've been hoping Matter would release an API for a while now. I have a personal reading archive project where I enrich and analyze everything I've read - this is exactly the missing piece. Can't wait to take it for a spin!
Matter@matter

Introducing the Matter CLI. Now your agents can access Matter on your behalf. > Write me a digest of this week’s news from my inbox. > Find articles about Iran and add ‘iran’ tag. > Pull all my highlights about parenthood. Try it in Claude Code, Codex, or wherever your agents work.

English
1
0
2
191
Matter
Matter@matter·
@feynon_ Post some cool uses cases when you get your hands dirty.
English
0
0
1
94
Sunil
Sunil@widepipe·
@matter This is AWESOME!
English
1
0
1
164
Matter
Matter@matter·
To get started: 1. Install the CLI curl -fsSL cli.getmatter.com/install.sh | sh 2. Authenticate matter login 3. Open Claude Code/Codex Tell it to use the Matter CLI and ask a question. Read our documentation for more detail: docs.getmatter.com/cli
English
1
0
5
796
Matter retweetledi
Anna Gát 🧭
Anna Gát 🧭@TheAnnaGat·
This weekend, I returned to share my reading recommendations with the readers of @matter 📖 “The more unique and personalized the books you read, the more original a thinker you will become." Here's what to read: words.getmatter.com/p/anna-gat-bye…
English
2
9
44
8.6K
Matter
Matter@matter·
@ffesseler Hi Florian, this isn't a known issue - can you send an email to hello@getmatter.app so we can investigate your account?
English
1
0
0
21
Florian Fesseler
Florian Fesseler@ffesseler·
@matter Hi, my inbox feed hasn't refreshed in a few days (on both the mobile app and the web interface). Is there a known issue with this feature?
English
1
0
1
37