<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Guy Weissman</title>
    <description>The latest articles on DEV Community by Guy Weissman (@guyweiss).</description>
    <link>https://dev.to/guyweiss</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4041901%2Ff88de108-1487-41f5-86e8-002427a0fccb.jpg</url>
      <title>DEV Community: Guy Weissman</title>
      <link>https://dev.to/guyweiss</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/guyweiss"/>
    <language>en</language>
    <item>
      <title>Git is for one agent. AgentStore is for agent teams.</title>
      <dc:creator>Guy Weissman</dc:creator>
      <pubDate>Wed, 22 Jul 2026 15:35:21 +0000</pubDate>
      <link>https://dev.to/guyweiss/git-is-for-one-agent-agentstore-is-for-agent-teams-502c</link>
      <guid>https://dev.to/guyweiss/git-is-for-one-agent-agentstore-is-for-agent-teams-502c</guid>
      <description>&lt;p&gt;Git has become the storage option of choice for many AI agent users, harnesses and knowledge frameworks. It made a lot of sense when chatbots were just getting started - users were looking for ways to manage their work. Chatbots forced us into linear workflows, but we needed a multi-dimensional workspace to track prompts, revisit artifacts, chain outputs and more.&lt;/p&gt;

&lt;p&gt;When users started managing prompts and skills Git became an even stronger fit for these code-like artifacts.&lt;/p&gt;

&lt;p&gt;The AI agent datastore use case plays to Git's strengths:&lt;/p&gt;

&lt;p&gt;Portable - we want to own our agents' memory especially with something as sticky as a personal agent&lt;br&gt;
Versioning and auditability - both to counter the probabilistic nature of agents and to manage skills and prompts&lt;br&gt;
Integration fit - easily connect with agents like Codex or Claude Cowork, which are built to live in folders, and are also well versed in using Git&lt;br&gt;
As we continue to push agents' capabilities we are starting to see new requirements. Git was built for human speed. Mixed multi-user/agent environments need finer grained permissions. Knowledge frameworks like GBrain (agent memory layer) want awareness of when things change to reduce stale knowledge.&lt;/p&gt;

&lt;p&gt;The challenges are:&lt;/p&gt;

&lt;p&gt;Repo-level permissions - Any agent with push access can read and write every file. You cannot give a research agent access to /customers/sanitized without also exposing /finance&lt;br&gt;
Write starvation - Even when two agents modify completely different files, the second to push must pull, merge, and retry — because Git conflict detection is repo-level, not file-level. Agents work much faster than humans, and as agent teams grow collisions will increase&lt;br&gt;
No live events - Git is a passive store. Knowledge systems that need to react to changes must poll&lt;br&gt;
Git isn't the only option, but all options today force a bad choice:&lt;/p&gt;

&lt;p&gt;Git and open comparables - portable, familiar, versioned — but repo-level permissions, no live events, designed for code&lt;br&gt;
Cloud drives and note apps (Google Drive / Box / Notion) - file permissions, real-time events — but proprietary, vendor lock-in, not agent-native&lt;br&gt;
Version-controlled data (Dolt, lakeFS) - versioned, branchable — but built to version data (SQL tables, data-lake objects), not files, which is where agents live&lt;br&gt;
Git's strengths are: portability + versioning + integration fit&lt;/p&gt;

&lt;p&gt;AgentStore adds: file-level access control + non-blocking writes + real-time events&lt;/p&gt;

&lt;p&gt;I built AgentStore as a datastore for the agents I use in my work.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/guyweissman" rel="noopener noreferrer"&gt;
        guyweissman
      &lt;/a&gt; / &lt;a href="https://github.com/guyweissman/agentstore" rel="noopener noreferrer"&gt;
        agentstore
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;AgentStore - a datastore for AI agents&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Git is for one agent. AgentStore is for agent teams.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Git has become the storage option of choice for many AI agent users, harnesses and knowledge frameworks. It made a lot of sense when chatbots were just getting started - users were looking for ways to manage their work. Chatbots forced us into linear workflows, but we needed a multi-dimensional workspace to track prompts, revisit artifacts, chain outputs and more.&lt;/p&gt;
&lt;p&gt;When users started managing prompts and skills Git became an even stronger fit for these code-like artifacts.&lt;/p&gt;
&lt;p&gt;The AI agent datastore use case plays to Git's strengths:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Portable&lt;/strong&gt; - we want to own our agents' memory especially with something as sticky as a personal agent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Versioning and auditability&lt;/strong&gt; - both to counter the probabilistic nature of agents and to manage skills and prompts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integration fit&lt;/strong&gt; - easily connect with agents like Codex or…&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/guyweissman/agentstore" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;Got any questions? Leave them in the comments&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>git</category>
    </item>
  </channel>
</rss>
