Home / Projects / Second Brain

Second Brain

A note-taking system you already know how to use, because it lives where you already live: Telegram. Forward anything — voice, photo, link, half-written thought — and Claude organises it, tags it, and gives it back to you when you actually need it.

Category  AI · Knowledge management Stack  Python · Postgres · pgvector LLM  Anthropic Claude Status  In final testing

The problem

Note-taking apps fail at the capture step, not the storage step. The friction of opening Notion, choosing a database, picking a template, and typing a title is the reason most thoughts evaporate. Meanwhile, everyone with a phone has a chat window already open. We wanted a knowledge base that started with the chat window and let everything else happen quietly in the background.

What we’re building

Second Brain is a Telegram bot you forward things to. Voice notes get transcribed; photos get OCR’d; links get fetched and summarised; plain messages get filed. Claude reads each capture, decides what kind of thing it is (idea, task, reference, memory, contact), tags it, and links it to anything related you’ve already saved. Storage is Postgres with pgvector for semantic search.

Recall is the other half. You ask the bot in plain English — “what was that book a friend recommended in March about negotiation?” — and Second Brain searches embeddings, ranks candidates, and returns the original capture with the surrounding context. No app to open, no folder to remember, no tag to have created.

The AI angle

Three Claude calls per capture. The first decides the type. The second writes a one-line summary and a set of tags. The third looks at recent captures and proposes links (“this looks like a follow-up to the Tuesday note about onboarding”) for you to confirm or ignore. Recall uses embeddings first, then Claude to re-rank the top candidates against the query — the combination is what makes “the book about negotiation from March” actually find the right note.

How it’ll be used

  • Founders who think in voice notes between meetings.
  • Researchers who collect snippets faster than they can file them.
  • Anyone with a chat-first workflow who’s tried — and abandoned — three other note apps.

Where we are

Capture, transcription, OCR, and tagging are working. Semantic recall is in private testing. The next milestone is the link-suggestion layer and a small web view for browsing the corpus. Expect a public beta in the second half of 2026.