<?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: Rahul Kewalramani</title>
    <description>The latest articles on DEV Community by Rahul Kewalramani (@rahul_kewalramani).</description>
    <link>https://dev.to/rahul_kewalramani</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%2F1725540%2F1cf4da88-f03b-448c-89e7-17b99bc1d578.jpg</url>
      <title>DEV Community: Rahul Kewalramani</title>
      <link>https://dev.to/rahul_kewalramani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rahul_kewalramani"/>
    <language>en</language>
    <item>
      <title>Stop Asking "Why Did We Build This?": Notarizing Architectural Intent with AnchorGit</title>
      <dc:creator>Rahul Kewalramani</dc:creator>
      <pubDate>Tue, 15 Sep 2026 05:39:31 +0000</pubDate>
      <link>https://dev.to/rahul_kewalramani/stop-asking-why-did-we-build-this-notarizing-architectural-intent-with-anchorgit-3jl4</link>
      <guid>https://dev.to/rahul_kewalramani/stop-asking-why-did-we-build-this-notarizing-architectural-intent-with-anchorgit-3jl4</guid>
      <description>&lt;p&gt;AI coding assistants write code at lightspeed. But standard Git commits only record what changed in your codebase, rarely why.&lt;/p&gt;

&lt;p&gt;When an engineer, security auditor, or code reviewer encounters a breaking schema migration or an AI-generated query override 6 months from now, they need immediate context on the architectural trade-offs that drove that decision.&lt;/p&gt;

&lt;p&gt;That is why I created AnchorGit CLI (anchorgit-cli).&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚓ What is AnchorGit?
&lt;/h2&gt;

&lt;p&gt;AnchorGit is an open-source, local-first decision notary for Git workflows. It attaches human intent, architectural trade-off rationale, and hardware-bound HMAC signatures directly to your commits.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Local Git Diff ---&amp;gt; Local SHA-256 Hash ---&amp;gt; Hardware HMAC Sign ---&amp;gt; Local Ledger (~/.anchor/ledger.json)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;🛡️ Zero-Knowledge Guarantee&lt;/p&gt;

&lt;p&gt;For security-conscious teams and enterprise compliance, code privacy is non-negotiable:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Zero Source Code Ingestion: Diffs are parsed strictly on your local machine and immediately discarded. No source code or secrets are ever saved or transmitted.&lt;/li&gt;
&lt;li&gt;SHA-256 Diff Hashing: AnchorGit stores only non-invertible diff hashes (diff_sha256) paired with your intent summary.&lt;/li&gt;
&lt;li&gt;Hardware-Bound Provenance: Payload entries are cryptographically signed using your physical CPU/motherboard identity and a local salt to guarantee authenticity.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;⚡ Quickstart&lt;/p&gt;

&lt;p&gt;Install anchorgit-cli globally via npm:&lt;br&gt;
&lt;code&gt;npm install -g anchorgit-cli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Initialize your workstation identity (works 100% offline out-of-the-box):&lt;br&gt;
&lt;code&gt;anchor pair&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Notarize an architectural trade-off before committing:&lt;br&gt;
&lt;code&gt;anchor decide "Refactored auth token rotation to Redis cluster due to memory bottlenecks"&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Check your formatted local decision history:&lt;br&gt;
&lt;code&gt;anchor log&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Inspect the exact zero-knowledge payload without saving:&lt;br&gt;
&lt;code&gt;anchor decide "Testing security payload" --dry-run&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;💻 Command Reference&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;pair (anchor pair [api-key]): Binds workstation hardware fingerprint locally or persists API credentials.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;decide (anchor decide "message"): Hashes diffs, signs payload via hardware HMAC, and appends to local ledger.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;log (anchor log): Displays formatted decision history.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;context (anchor context [path]): Queries recent architectural decisions for a file or project.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;standup (anchor standup): Compiles recent decisions into a clean morning standup report.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;whoami (anchor whoami): Display&lt;br&gt;
s currently paired developer identity and public profile link.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🚀 Open Source &amp;amp; Roadmap&lt;br&gt;
anchorgit-cli is open-source under the Apache 2.0 License (Patent Pending No. 202621068620).&lt;/p&gt;

&lt;p&gt;📦 NPM Package: &lt;a href="https://www.npmjs.com/package/anchorgit-cli" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/anchorgit-cli&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🐙 GitHub Repository: &lt;a href="https://github.com/rahool-bk/anchorgit-cli" rel="noopener noreferrer"&gt;https://github.com/rahool-bk/anchorgit-cli&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 Web Studio: &lt;a href="https://anchorgit.com" rel="noopener noreferrer"&gt;https://anchorgit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Give it a try in your local terminal and let me know your thoughts or feedback in the comments below!&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>git</category>
      <category>tooling</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
