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

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
B
Blog
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built Threadbase to give AI coding tools a shared memor...
Aniket Rode · 2026-05-17 · via DEV Community

Aniket Rode

The biggest problem I kept running into with AI coding tools was not code generation.

It was memory.

I would explain the repo to one agent, switch tools, and then have to explain the same project all over again.

Claude.
Codex.
Cursor.
Copilot.
Gemini.

Each tool was useful on its own, but the project context kept getting fragmented across sessions and agents.

That felt like the real bottleneck.

So I built Threadbase.

What Threadbase does

Threadbase makes the repository itself the shared memory layer for AI-assisted development.

It stores project context in plain Markdown inside the repo, so agents are not depending only on chat history or tool-specific memory.

That means:

  • different agents can work from the same memory
  • teammates working on the same project can use the same context
  • anyone can pick up from anywhere without starting from zero
  • the memory stays in Git with the rest of the project

Instead of asking, "Which AI tool remembers this project best?"

the better model is:

the repo remembers, and the agents read from it.

Why that matters

A lot of current AI coding workflows are tool-specific.

You build up useful context in one tool, but the moment you switch agents or start a fresh session, continuity breaks.

That creates a few recurring problems:

  • repeated prompting
  • inconsistent decisions
  • context getting lost between sessions
  • teammates and agents working from slightly different understandings of the project

Threadbase is my attempt to solve that in the simplest possible way.

Not with a hosted memory layer.
Not with another dashboard.
Not with lock-in to one agent.

Just a small repo-native convention that lives alongside the code.

How it works

Threadbase creates a .ai/ folder in your repo with a few key pieces:

  • .ai/memory/ for durable project memory
  • .ai/generated/context.md for the current working context
  • agent instruction files like AGENTS.md, CLAUDE.md, GEMINI.md, and others that point agents to the same shared memory

So the flow becomes:

  1. Initialize Threadbase once.
  2. The agent reads the shared project memory before starting work.
  3. As work happens, the memory gets updated inside the repo.
  4. Another agent or teammate can pick up from the same context later.

No manual copy-pasting between tools.
No separate sync step every time.
The workflow itself keeps the shared memory in motion.

The part I care about most

Threadbase is intentionally:

  • repo-native
  • git-native
  • agent-agnostic
  • markdown-first

I did not want this to be "memory for one AI tool."

I wanted it to work across tools.

If I want to switch from Claude to Codex to Cursor, I should not have to re-explain the project every time.

If someone else on the team opens the repo, they should be able to use the same project memory too.

That is the real value.

Quick start


bash
npm install -g threadbase
threadbase init
Run that in the project repo or agent workspace root.

Why I’m sharing it
I think AI-assisted development needs better shared context primitives.

Right now, a lot of workflows are still too session-bound and tool-bound.

My bet is that project memory should live closer to the repo, be readable by humans, and be usable by any agent.

That is what Threadbase is trying to do.

If you are experimenting with multi-agent workflows, AI coding tools, or shared context in development, I’d love to hear what breaks, what feels right, and what should exist next.

GitHub: https://github.com/ani3198/threadbase
npm: https://www.npmjs.com/package/threadbase

Enter fullscreen mode Exit fullscreen mode