<?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: Yashneil</title>
    <description>The latest articles on DEV Community by Yashneil (@yashneil75).</description>
    <link>https://dev.to/yashneil75</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%2F4042898%2F7c3ce289-44cf-49e9-b51e-724fea83167e.png</url>
      <title>DEV Community: Yashneil</title>
      <link>https://dev.to/yashneil75</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yashneil75"/>
    <language>en</language>
    <item>
      <title>We turned agent conversations into git commits (and it's actually useful)</title>
      <dc:creator>Yashneil</dc:creator>
      <pubDate>Thu, 23 Jul 2026 02:43:45 +0000</pubDate>
      <link>https://dev.to/yashneil75/we-turned-agent-conversations-into-git-commits-and-its-actually-useful-183e</link>
      <guid>https://dev.to/yashneil75/we-turned-agent-conversations-into-git-commits-and-its-actually-useful-183e</guid>
      <description>&lt;p&gt;Ever wished your agent conversations were as trackable as your code? Gitlord makes it real.&lt;/p&gt;

&lt;p&gt;What it does:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Every agent turn becomes a git commit&lt;/li&gt;
&lt;li&gt;Branch out subagents without breaking your main flow&lt;/li&gt;
&lt;li&gt;Rewind to any point in your conversation history&lt;/li&gt;
&lt;li&gt;Connect tools via MCP (filesystem, search, browser, etc.)&lt;/li&gt;
&lt;li&gt;One interface, any AI provider (OpenAI, Anthropic, local models)&lt;/li&gt;
&lt;li&gt;Full CLI for managing sessions and branches&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why it matters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your agent history is navigable, forkable, and diffable, just like code&lt;/li&gt;
&lt;li&gt;Context management handles token budgets automatically&lt;/li&gt;
&lt;li&gt;Spawn child agents on isolated branches with their own history&lt;/li&gt;
&lt;li&gt;No lock-in: all components are modular and swappable&lt;/li&gt;
&lt;li&gt;Built-in integrations:&lt;/li&gt;
&lt;li&gt;MCP tools: Connect any MCP server (git, filesystem, browser, search). Tools flow to subagents automatically&lt;/li&gt;
&lt;li&gt;RAG: Vector search across your full agent history. ChromaDB-backed semantic queries built in&lt;/li&gt;
&lt;li&gt;Provider abstraction: Switch between any of the 170 providers and nearly 3,000 models, or local models with one line. Mix providers per agent&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Build an agent in 4 lines:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;from gitlord import Session, SessionConfig&lt;br&gt;
config = SessionConfig(model="claude-opus")&lt;br&gt;
session = Session.create("my-agent", config)&lt;br&gt;
session.add("user", "Refactor our OAuth to the new framework")&lt;br&gt;
Done. Gitlord handles the rest.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Performance improvements (v0.1.0):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Structured trailers eliminate JSON walks: metadata parsing is now O(1)&lt;/li&gt;
&lt;li&gt;Auto-index updates on every turn, cached at .gitlord/index.json&lt;/li&gt;
&lt;li&gt;New in-memory query layer for fast turn filtering and aggregation:&lt;/li&gt;
&lt;li&gt;Snapshot compression for long-running sessions: compress old turns into JSON, rebase from checkpoint&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/yashneil75/gitlord" rel="noopener noreferrer"&gt;https://github.com/yashneil75/gitlord&lt;/a&gt;&lt;br&gt;
Landing page: &lt;a href="https://yashneil75.github.io/gitlord/" rel="noopener noreferrer"&gt;https://yashneil75.github.io/gitlord/&lt;/a&gt;&lt;br&gt;
Docs: &lt;a href="https://github.com/yashneil75/gitlord/tree/master/docs" rel="noopener noreferrer"&gt;https://github.com/yashneil75/gitlord/tree/master/docs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm curious: what's one pain point with frameworks like LangChain and CrewAI that bugs you in the middle of the night?&lt;/p&gt;

&lt;p&gt;MIT licensed. Built for agents that ship.&lt;br&gt;
Starring helps more than you think!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>python</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
