Загрузка видео...

Не удалось загрузить видео

На главную

STOP TREATING YOUR OBSIDIAN VAULT AS AI MEMORY. WITHOUT ONE ROUTING FILE, CLAUDE IS BURNING TOKENS ON NOISE YOU FORGOT YOU SAVED. a folder full of markdown does not make Claude smart. what makes it smart is what your agent can find without rereading the whole vault. storage: write...

17,240 просмотров • 1 месяц назад •via X (Twitter)

Комментарии: 27

Фото профиля DeepRead.com
DeepRead.com1 месяц назад

The index doesn't just save tokens, it changes the epistemic mode: from search (probabilistic) to navigation (deterministic).

Фото профиля kocer
kocer1 месяц назад

I really like your system, can you tell me more about it?

Фото профиля shadow
shadow1 месяц назад

do not waste your time trying ot make a ai....... that will cost 1mil or more chill.

Фото профиля skynetter
skynetter1 месяц назад

A file based system (RAG, Obsidian) is inefficient for token use or speed. Claude has to read the file to discern correct content/context. reduces your context burden, with focused (zero token) sub-second (50ms), accurate retrieval.

Фото профиля Adel Bucetta
Adel Bucetta1 месяц назад

your obsidian vault is a dumping ground, not an ai's knowledge graph. stop trying to outsmart claude with folder organization

Фото профиля kocer
kocer1 месяц назад

wbu talk?

Фото профиля Saman Ahmed
Saman Ahmed1 месяц назад

The routing rules quietly determine whether the agent finds them.

Фото профиля Diam
Diam1 месяц назад

Rebuilding the whole vault three times would make me write the routing file too.

Фото профиля Fajar M Reza
Fajar M Reza1 месяц назад

AI memory improves when routing surfaces relevant notes instead of rereading archives.

Фото профиля kocer
kocer1 месяц назад

yes, re-reading archives kills any memory

Фото профиля Ranya DataMagician
Ranya DataMagician1 месяц назад

That's amazing! It'll bring more fruitful results in Automation & in any kind of AI Workflow. Best use case of token utilisation. How do you keep the routing file current?

Фото профиля Insomnia
Insomnia1 месяц назад

time to making this bots

Фото профиля nyk
nyk1 месяц назад

yeah, the routing file is the memory interface. How I run Claude agents on 1M Context without drift

Фото профиля Dezzy
Dezzy1 месяц назад

this makes so much sense bro

Фото профиля biektropic
biektropic1 месяц назад

memory starts with knowing where to look

Фото профиля Secta
Secta1 месяц назад

one line per folder is the index that stops whole vault rereads

Фото профиля kocer
kocer1 месяц назад

this also significantly reduces the use of your models tokens.

Фото профиля Secta
Secta1 месяц назад

fewer tokens keep spend on inference not the wrapper

Фото профиля 0xSlyth
0xSlyth1 месяц назад

thanks for sharin this

Фото профиля pavel maslov
pavel maslov1 месяц назад

use storage correctly

Фото профиля Tony Tong | Founder | Ancient Systems x AI
Tony Tong | Founder | Ancient Systems x AI1 месяц назад

Agreed, a pile of markdown isn't memory. What actually changed things for me was tagging and structuring my notes so Claude can pull the right slice fast, instead of rereading everything cold every time.

Фото профиля Gipp 🦅
Gipp 🦅1 месяц назад

Write → Tag → Graph → Agent is the best, honestly

Фото профиля kocer
kocer1 месяц назад

Yes, that's a fact.

Фото профиля Golden Hippie
Golden Hippie1 месяц назад

Congratulations, you invented RAG

Фото профиля Amir Mehrabi
Amir Mehrabi1 месяц назад

The routing file solves the first hop. It also becomes a memory system that can drift from the vault. Versioning it with folder changes and recording which route produced the answer would make stale descriptions visible before they silently steer retrieval away from the right note.

Фото профиля Nahid
Nahid1 месяц назад

tokens droped hard after i added it

Фото профиля Laff
Laff1 месяц назад

ouch, true.

Похожие видео

THIS GUY CONNECTED HIS AI AGENTS TO HIS OBSIDIAN AND BUILT A BRAIN THAT LEARNS ON ITS OWN. HERE'S HOW TO BUILD IT Obsidian is just markdown files sitting in a folder. That turns out to be the perfect memory for an AI agent, because an agent can read and write those files directly. He wired his agents into the vault so they pull context from it, do the work, and write what they learned back. The notes aren't the point. The loop is, and it gets sharper every cycle How to build it: 1. Point an agent at your vault. The fastest way, no plugins, no API keys: open a terminal and run npx obsidian-mcp /path/to/your/vault. That exposes your Obsidian folder to Claude as a tool it can read, search, and write to. Add it to your Claude Code or Cowork config and restart 2. Confirm it can see the brain. Ask it: "list the notes in my vault and summarize what's in them." If it reads them back, the connection is live. Now it starts every task with everything the vault already holds instead of from zero 3. Give each agent one job and a write-back rule. Tell it: "research this, then save what you found as a new note in /brain with links to related notes." One agent researches, one summarizes, one plans. Each writes its output back into the vault 4. Close the loop. Add one line to every agent's instructions: "read /brain before starting, write your result back when done." Now each task leaves the vault richer, and the next run reads that before it works. It compounds instead of resetting 5. You only steer. Review what the brain produces, point it at the next thing. The agents handle the reading, writing, and connecting The edge isn't better notes. It's a brain that feeds itself, so the work gets sharper every cycle instead of starting over Bookmark this

Yarchi

58,591 просмотров • 3 месяцев назад

THIS GUY BUILT AN AUTONOMOUS AI AGENT OUT OF CLAUDE CODE + OBSIDIAN and this is way more interesting than another “use AI to take notes” demo the trick is simple: Obsidian is not the writing app here. it becomes the agent’s memory, task board, and context folder. Claude Code is not just answering prompts. it reads the vault, edits files, follows instructions, and keeps moving through the work like a junior operator with a filesystem. the reusable setup looks like this: 1. create an Obsidian vault for one project 2. keep goals, rules, tasks, decisions, and references as markdown files 3. point Claude Code at the folder 4. give it a clear operating loop: read context → choose next task → execute → write back what changed 5. use the notes as persistent memory instead of re-explaining the project every chat that’s the part people miss. the “agent” is not magic. it’s the boring combination of: - local files - explicit rules - task state - write access - a model that can run through the repo/vault Obsidian makes the memory human-readable. Claude Code makes the memory executable. that combo is why the video worked: it turns a notes app into an operating surface for actual work. best use cases: - content systems - research vaults - coding projects - client ops docs - personal knowledge bases that need actions, not just storage the caveat: if your vault is messy, your agent becomes messy too. folders, naming, “done” criteria, and forbidden actions matter more than the prompt. but once the structure is clean, this is one of the easiest ways to build an agent that remembers what happened yesterday without paying for a full custom app.

kocer

30,403 просмотров • 3 месяцев назад

HERMES AGENT + OBSIDIAN IS A COMBINATION NOBODY IS TALKING ABOUT. Hermes ships with a bundled Obsidian skill. read, search, and create notes in your vault out of the box. why this combination is powerful: Hermes built-in memory is capped. MEMORY.md: 2,200 chars (~800 tokens). USER.md: 1,375 chars (~500 tokens). Obsidian vault has no cap. your agent writes research, session summaries, project context, and learned patterns as linked markdown notes. unlimited depth. the agent creates indexed notes by design. timestamps, backlinks, tags. every note connects to the knowledge graph. three ways to integrate: 1. BUNDLED OBSIDIAN SKILL (simplest) ships with Hermes. reads, searches, creates notes in your vault directly. hermes skills list | grep obsidian 2. OBSIDIAN MCP SERVER (deepest) 30+ tools: full-text search, tag lookup, note management, vault analysis, link analysis, orphan detection. add it via: hermes mcp 3. TELEGRAM + CRON → VAULT (always-on) set a cron job that writes daily summaries, research findings, or task reports directly into your Obsidian vault. your agent feeds the vault while you sleep. you review in Obsidian when you're ready. the unlock: Hermes memory handles what the agent needs to know per session (capped, injected). Obsidian handles everything the agent has ever learned (uncapped, searchable). short-term in Hermes. long-term in Obsidian. both accessible. both persistent. keep the vault scope narrow at first. start with one /Hermes folder. expand once you trust the workflow. 8 Loops Indise Hermes Agent👇

YanXbt

20,617 просмотров • 3 месяцев назад

Obsidian + Claude Code turned a 4,300-note vault into a second brain that answers back. Most people use Obsidian as a graveyard. You save 40 highlights a week, link nothing, and reread maybe 2% of it. The knowledge is there the retrieval is dead. Claude Code fixes the retrieval, because your vault is just a folder of markdown files and Claude Code lives in folders. The whole setup takes 20 minutes: Open a terminal inside your Obsidian folder and run Claude Code no plugins, no API glue, no export step. It reads all 4,300 files natively. Then drop a CLAUDE.md at the vault root explaining your structure: where daily notes live, how you tag, what your MOCs are. Now every session starts with context instead of chaos. From there you just talk to your vault: > "find every note where I mentioned churn and write a summary with backlinks" > "read my last 30 daily notes and list the 5 ideas I keep circling but never ship" > "build a MOC for everything tagged startup-ideas and link the orphan notes into it" It writes new notes straight into the vault with proper [[wikilinks]], and they show up in your graph view 10 seconds later. The boring layer automates too one command cleans broken links, one merges duplicates, one turns 6 months of meeting notes into a single decisions log. Work that used to eat a Sunday now runs while you make coffee. Before: 4,300 notes, 900 orphans, search by keyword and prayer. After: an agent that read everything you ever wrote and drafts in your own voice, from your own sources, with receipts. People pay $30/month for AI note apps with 10% of this. You already own the other 90%. Your notes stopped being storage. They started being staff.

Spike 1%

18,223 просмотров • 2 месяцев назад

A DEVELOPER CONNECTED CLAUDE CODE TO OBSIDIAN SO HIS AI AGENT WOULD STOP FORGETTING THE PROJECT EVERY MORNING. Every coding session used to start the same way. Claude would understand the repo, fix the bug, explain the architecture, and then the moment the session ended, all of that context disappeared. Same codebase. Same decisions. Same architecture. Same mistakes repeated again. So he added a memory layer. Instead of treating Claude Code like a smart terminal, he connected it to a local Obsidian vault through MCP. Now Claude can read the repo, open the vault, create notes, link concepts, and write important decisions back into the system. When it studies the codebase, it does not just answer once and forget. It creates notes for the major services, maps how the architecture works, links auth to the database, connects APIs to storage, and records why certain migrations or design choices exist. Obsidian becomes the project graph. Now when he asks why something was built a certain way, Claude does not guess from the current prompt. It reads the decision notes. When he starts a new branch, Claude checks the active context file. When the work is done, it updates what changed, what is blocked, and what the next agent needs to know before touching the repo. That is the real loop: read context, write code, capture decisions, update memory. Most people are still using AI coding tools like disposable chat windows. Ask, patch, close, forget. This setup turns Claude Code into infrastructure. The repo gets a memory layer that survives every session, and multiple AI agents can work from the same project map without stepping on each other. The unlock is not better prompting. The unlock is giving the agent somewhere to remember what it already learned.

DegenCalls

20,124 просмотров • 2 месяцев назад

Obsidian just became the most dangerous folder on your computer, and Andrej Karpathy predicted it with 1 markdown file. His method is called append-and-review. He described it years ago and almost nobody listened: 1 single note, every thought appended to the top, reviewed on random scrolls. No tags, no folders, no Notion dashboards with 40 linked databases. The problem was always the same the note remembers, but it can't act. That changed the moment people pointed Claude Code at an Obsidian vault. Here's the setup that's quietly spreading: Part 1 — The vault becomes a database. Obsidian stores everything as plain markdown on your disk, which means Claude Code can read it like a codebase. You open a terminal inside the vault folder and your 2,000 notes turn into queryable memory. Part 2 — The CLAUDEmd file becomes the brain stem. One file at the root tells the agent who you are, what you're building, and how your notes are structured. From that point every session starts with full context instead of a blank chat window. Part 3 — Karpathy append log becomes fuel. You dump raw thoughts all day ideas, links, half-sentences. Then 1 command at night: review today's appends, extract action items, draft the 3 posts hiding in there, link them to existing notes. The messy log goes in, structured output comes out, and the vault rewrites itself while you sleep. Part 4 — Agents start living in your notes. People are running weekly reviews, content calendars, even market research as scheduled Claude Code runs over their vault. Your second brain stops being a graveyard of highlights and starts shipping. The honest math: setup takes about 90 minutes, the first week feels like overkill, and by day 30 you're sitting on a system where every note you've written in 5 years is working for you instead of rotting in a folder. Notion needed a server, a subscription and your data on someone else's machine. Obsidian needed a text file and now the text file has an employee.

Spike 1%

58,428 просмотров • 2 месяцев назад

A GUY MAKING $100K/MONTH WITH AI JUST SHOWED HIS ENTIRE SETUP. IT'S ONE FOLDER OF NOTES AND NOTHING ELSE no framework. no $500 course. he opens his screen and it's just obsidian - a plain notes app - wired into claude here's what he did: -> he pulled claude's memory files out of their default folder and dumped them into one vault -> had claude rename and merge them: 107 messy files collapsed into 17 clean ones -> every folder gets one master note that links to all the others that last part is the whole trick the agent reads the master note, follows the links and by the time it's done it has read every file in the folder. one instruction, full context here's the part most people miss: everyone's trying to make the AI smarter. he made the AI's memory smaller fewer files, better organized, all linked. the agent isn't scanning hundreds of notes anymore - it walks a path you built that's why his agent actually finishes jobs instead of forgetting what it was doing halfway through then he goes one step further: at the end of every session, the agent writes its own daily note. what it did, when, indexed at the top so it can find it again in seconds so he never re-explains anything. the agent looks up what it already did now he types "create a campaign for this offer" and walks away. it reads the product notes, reads the process notes, and comes back with the campaign done you don't need any of the complicated agent tools people are selling you. you need structure and instructions save this. the people winning with AI aren't using better models. they're just the only ones who bothered to organize what it remembers

Paone

23,833 просмотров • 2 месяцев назад