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

推荐订阅源

H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
L
LangChain Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
Your AI coding agent forgets everything every session. I ...
Michael Boiman · 2026-06-23 · via DEV Community

Every time I opened a fresh session with my coding agent, it started from zero. Which repos am I working across? Which client is this for? Where did we leave off yesterday? I'd re-explain the same context, the agent would occasionally load the wrong project, and nothing I decided last week survived into this one. A "re-explain myself" tax on every single session.

I tried the obvious fix first — a better prompt, a longer system message. It didn't hold. Context that has to persist can't live inside the chat; the chat is the thing that resets.

What actually worked: give the agent a place outside the chat to read and write — and make it the most boring, durable thing I could. Plain files in a git repo.

The substrate: markdown + YAML the agent reads at session start

open-bridge is a plain git repo of markdown and YAML. At the start of every session the agent reads it, so it begins already knowing my world. No database, no SaaS, no daemon, nothing to host — the substrate itself runs nothing. It's just files the agent reads.

That "just files" choice is the whole point:

  • Agents can read a file but can't hold an API key. What I write today, the agent still reads in six months — no migration, no second app, no vendor lock-in.
  • It's auditable. Clone it and cat anything the agent reads. No black box.
  • It's model- and tool-agnostic. Plain text is something every agent runtime can read.

A tiny slice of what that looks like (from the repo's examples/agency setup — fictional "Acme Dev"):

# ecosystem.yaml — the repos/clients the agent should know about
projects:
  bigcorp:    { display_name: "BigCorp E-Commerce", repos: [bigcorp-api, bigcorp-frontend] }
  startupxyz: { display_name: "StartupXYZ MVP",     repos: [startupxyz-app] }

# work/board.md — generated from the task dirs, read every session
## Doing
| bigcorp-api-payment-retry | incident | P1 | Stripe webhook retries failing |
| startupxyz-onboarding     | feature  | P2 | guided signup flow             |

So when I say "good morning, briefing", the agent doesn't ask "GitHub or Jira?" or load the wrong client. It already knows.

Two things this gives you

I lean on two ideas — both honestly just names for behaviours the files enable:

Context that's always there. The agent reads a persistent, structured layer every session: your repos, your clients, your conventions, what you did yesterday. A third side beside the model and the tool. It stops asking, stops guessing, stops reloading the wrong thing.

Structure instead of a pile. Most of my AI work used to be a bare My-Documents folder — every conversation a fresh heap. open-bridge ships a plain-text work system: a board, a daily log, and per-task status (backlog → doing → review → done). Decisions and findings get filed as you go, in text the agent reads back later. Unstructured sessions become a filed, compounding record.

One convention, several agents

Because it's plain text, it isn't tied to one tool. A single skills/ tree is discovered by Claude Code, Codex, and Copilot CLI through the standard skill symlinks. The substrate stays the same; the agent on top is swappable.

Honest about where this is

The part I want to be straight about: it's one self-hosted instance — mine (built at BKS-Lab), with no external users yet. I'm sharing the method and the substrate, not an adoption story. The README is upfront about what's proven, what's a bet, and what isn't built yet. If you try it, I genuinely want to hear where it breaks.

Try it

It's markdown and YAML. That's the entire trick — and kind of the point.