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

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
The Cloudflare Blog
I
InfoQ
美团技术团队
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
L
LangChain Blog
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog

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 gave my AI a memory, and open-sourced the whole thing
Raffaele Zarrelli · 2026-06-21 · via DEV Community

Full disclosure up front: I am a founder, and this is about something I built and open-sourced. If that is not your thing, no hard feelings.

The problem was never the model

I run a small software company. Most of my day is a pile of small, different jobs: marketing, the website, a sales follow-up, a decision about a product. I started leaning on AI chat for all of it, and the model was genuinely good. That was never the problem.

The problem was that every new chat started from zero. I would re-explain the same context, the same positioning, the same constraints, over and over. Decisions I had made last week evaporated. The AI was smart, but it had amnesia, and I was the external hard drive.

Why I did not reach for an autonomous agent

The obvious 2026 answer is "use an agent." There is a whole wave of them now, the kind that go off and do things on their own. I looked, and honestly I did not trust handing over actions I could not see or verify. I did not want something acting on my company while I was not watching. I wanted to stay in the loop. I just wanted the thing to remember.

So I went the other way: not more autonomy, more memory.

The approach: a project that remembers

I use Claude Cowork, where a "project" is basically a workspace Claude can read and write. So I gave that workspace a structure and a habit.

The structure is just folders of Markdown: a context area for who we are and what we sell, working areas for marketing and the website, and a decisions folder with a decisions log and a list of open questions.

The habit is the important part. Every meaningful task ends with a Memory Update: before calling it done, the assistant checks whether anything changed (a decision, an assumption, an open question, a risk) and writes it back to the right file. The next session reads those first.

That is it. No app, no database, no dependencies. But the effect compounds: after a few weeks the project actually knows the business, and it gets a little sharper each week instead of forgetting.

What it turned into

I cleaned it up, stripped every private detail, added a sanitized real workspace as a reference, and put it on GitHub as cowork-os, an open-source operating system for Claude Cowork. MIT.

It has three modules I actually use: a LinkedIn content system, an outcome-driven "missions" workflow, and a set of recurring automations.

The part worth calling out for builders: it started as "copy this folder, paste this installer." That works, but it is friction. So I also packaged it as an installable plugin. Now you add the marketplace and install it, and you get an always-on skill (the operating rules plus the memory protocol) and a handful of slash commands, with no copying.

If you build plugins, run claude plugin validate before you ship. It caught a YAML bug in one of my command files: a stray colon in the frontmatter that silently dropped all the metadata. Two minutes to fix, but it would have failed review.

The honest limitations

It is a convention, not magic. It only works if you keep the habit. The plugin today ships the runnable core (the rules plus the commands) but not the full templates, so the guided setup leans on the repo for the high-fidelity version. And it is tied to one tool, Claude Cowork, though the method itself is portable.

Try it, or tell me where it breaks

Repo: https://github.com/yempik-ai/cowork-os

I am genuinely curious how other people handle memory and context across AI sessions, and where this approach falls apart at scale. If you try it, tell me what felt clunky. I am iterating in public.