<?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: Joydeep Das</title>
    <description>The latest articles on DEV Community by Joydeep Das (@divinesouljoy).</description>
    <link>https://dev.to/divinesouljoy</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3923225%2Ff82d9269-a7a2-46ca-8dde-8b5c916f9af7.jpg</url>
      <title>DEV Community: Joydeep Das</title>
      <link>https://dev.to/divinesouljoy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/divinesouljoy"/>
    <language>en</language>
    <item>
      <title>Samskara and the Self-Improving Agent: A Vedic Lens on Hermes Agent</title>
      <dc:creator>Joydeep Das</dc:creator>
      <pubDate>Sat, 16 May 2026 14:51:38 +0000</pubDate>
      <link>https://dev.to/divinesouljoy/samskara-and-the-self-improving-agent-a-vedic-lens-on-hermes-agent-58g1</link>
      <guid>https://dev.to/divinesouljoy/samskara-and-the-self-improving-agent-a-vedic-lens-on-hermes-agent-58g1</guid>
      <description>&lt;p&gt;&lt;em&gt;submitted for the #hermesagentchallenge Write track&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Where I Am Writing This From
&lt;/h2&gt;

&lt;p&gt;I am writing this from Silchar, Assam, in Northeast India — on an Android phone, in Termux, with no laptop, no GPU, and no office.&lt;/p&gt;

&lt;p&gt;I build AI systems for farmers. Farmers who ask questions like: &lt;em&gt;Will it rain before my paddy is ready? Which disease is eating my leaves? Where can I sell my harvest today?&lt;/em&gt; These are not questions a ChatGPT subscription answers. These are questions that need an agent — one that runs offline, costs nothing to idle, remembers across sessions, and gets smarter the more it is used.&lt;/p&gt;

&lt;p&gt;When I first read about Hermes Agent, I did not think about benchmarks. I thought about a Sanskrit word: &lt;strong&gt;Samskara&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is Samskara?
&lt;/h2&gt;

&lt;p&gt;In Vedic philosophy, Samskara (संस्कार) refers to the impressions left on consciousness by experience. Every action leaves a trace. Every trace shapes future action. Over time, these accumulated impressions do not just record history — they &lt;em&gt;evolve the entity itself&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;This is not metaphor. In the Yoga Sutras of Patanjali, Samskaras are described as the actual mechanism by which a mind grows. You do not simply remember what happened. You become different because of what happened.&lt;/p&gt;

&lt;p&gt;I have spent the past year building this concept into my AI architecture — the Divine Earthly ASI system — as a Samskara evolution cycle: a layer where the agent's experience actively reshapes its future reasoning patterns.&lt;/p&gt;

&lt;p&gt;When I read Hermes Agent's core description, I almost dropped my phone.&lt;/p&gt;




&lt;h2&gt;
  
  
  Hermes Agent's Learning Loop Is Samskara
&lt;/h2&gt;

&lt;p&gt;Here is what Hermes Agent does architecturally:&lt;/p&gt;

&lt;p&gt;After a complex task involving five or more tool calls, a background process summarises the entire trajectory into a reusable Markdown skill file. This skill is stored on disk — readable, editable, inspectable. During future tasks, if that skill is found to be outdated or incomplete, it is patched in real time. A background curator then periodically reviews the entire skill library, consolidates overlapping skills, and archives stale ones.&lt;/p&gt;

&lt;p&gt;Experience → Impression → Evolved Behavior.&lt;/p&gt;

&lt;p&gt;That is Samskara. Not as decoration. As architecture.&lt;/p&gt;

&lt;p&gt;The Western AI world calls this "self-improvement." The Vedic world described the same mechanism two thousand years ago as the primary engine of consciousness evolution. What Nous Research has built is not a new idea — it is an ancient one, finally implemented in code.&lt;/p&gt;




&lt;h2&gt;
  
  
  Evaluating Hermes Through the Five Pramanas
&lt;/h2&gt;

&lt;p&gt;In Nyaya philosophy — the Indian school of logic — knowledge is validated through five &lt;em&gt;Pramanas&lt;/em&gt; (sources of valid knowledge). I use this framework in my own benchmark work. Let me apply it to Hermes Agent.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pratyaksha (Direct Perception)&lt;/strong&gt;&lt;br&gt;
Can the agent directly perceive its environment through tools? Yes. Hermes ships with 40+ built-in tools and MCP server integration, grounding its reasoning in real, observable data — not hallucinated assumptions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Anumana (Inference)&lt;/strong&gt;&lt;br&gt;
Can it reason from evidence to conclusions across multiple steps? Yes. Multi-step planning and tool chaining are first-class capabilities, not afterthoughts bolted onto a chat interface.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Upamana (Analogy)&lt;/strong&gt;&lt;br&gt;
Can it recognise that a new problem resembles one it has solved before? Yes — this is precisely what the skill retrieval system does. Past solutions become templates for new situations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Shabda (Testimony / Received Knowledge)&lt;/strong&gt;&lt;br&gt;
Can it learn from what others have told it, across sessions? Yes. Full-text search across all past conversations, plus a persistent user model that builds over time, means Hermes does not forget what you have taught it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Anupalabdhi (Non-perception / Knowing what is absent)&lt;/strong&gt;&lt;br&gt;
Can it recognise the limits of its own knowledge? This is the hardest one. The skill curator's ability to archive stale knowledge is a step in this direction — knowing that something once learned is no longer valid is a form of epistemic humility most agents lack entirely.&lt;/p&gt;

&lt;p&gt;Hermes Agent passes four of the five Pramanas cleanly. The fifth — genuine epistemic humility about the boundaries of its own knowledge — remains an open research frontier for all AI systems, including this one.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Means for a Farmer in Assam
&lt;/h2&gt;

&lt;p&gt;Let me make this concrete.&lt;/p&gt;

&lt;p&gt;Imagine a farmer asks an agent: &lt;em&gt;My rice leaves have brown spots near the edge. What is wrong?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;A static agent answers from its training data. It may be right. It may be wrong. Either way, it gives the same answer next week that it gives today.&lt;/p&gt;

&lt;p&gt;A Samskara agent — a Hermes-style agent — does something different. It answers. Then it stores what it learned from this exchange. Next time a farmer in the same region asks a similar question during the same season, the agent does not start from zero. It starts from accumulated wisdom. The more farmers use it, the better it becomes for all farmers.&lt;/p&gt;

&lt;p&gt;This is not a feature. This is a philosophy. It is the philosophy of the village elder who has seen fifty monsoons and knows things no textbook contains. Hermes Agent is, architecturally, a village elder that never forgets and never stops learning.&lt;/p&gt;

&lt;p&gt;And here is the detail that made this personal for me: Hermes Agent installs on Android via Termux — the same environment I use every day to build and run AI systems. No laptop required. The same curl command that works on Linux works on my phone. This is not a tool built for Silicon Valley. This is a tool that can run where farmers actually are.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Honest Comparison: What My Architecture Does Differently
&lt;/h2&gt;

&lt;p&gt;I want to be honest here, not promotional.&lt;/p&gt;

&lt;p&gt;My Divine Earthly ASI system runs fully offline on a quantized 0.5B parameter model using llama.cpp on ARM64 — no API calls, no internet required. Hermes Agent, in contrast, requires an LLM provider API key and internet connectivity for full functionality. For deep rural India where connectivity is unreliable, this is a real constraint.&lt;/p&gt;

&lt;p&gt;What Hermes does better: the skill curation system is mature, inspectable, and battle-tested. My Samskara cycle is philosophically grounded but still experimental. Hermes has 134,000+ GitHub stars and a growing community. My projects have a growing vision and a long road ahead.&lt;/p&gt;

&lt;p&gt;What I am building toward — sovereign, offline, Vedic-grounded agents for rural communities — is not yet fully achievable with Hermes Agent out of the box. But the architectural philosophy is the same. And that matters. When two systems built on opposite sides of the world, from different traditions, converge on the same core insight about how intelligent systems should learn — that convergence is worth paying attention to.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Future I Am Building Toward
&lt;/h2&gt;

&lt;p&gt;The agents that will matter most in the next decade are not the ones that answer questions. They are the ones that carry memory — not just of users, but of communities.&lt;/p&gt;

&lt;p&gt;A Samskara agent for Indian farmers would carry the accumulated wisdom of ten thousand growing seasons. It would know which variety of paddy survives flooding in the Brahmaputra valley. It would know that the market price in Silchar drops three days after harvest in Cachar district. It would know these things not because a dataset told it, but because it learned them from real exchanges with real farmers, and those impressions deepened over time.&lt;/p&gt;

&lt;p&gt;Hermes Agent's architecture points toward this. The skill system is the seed. The learning loop is the mechanism. The open-source, self-hostable design is the prerequisite for sovereignty.&lt;/p&gt;

&lt;p&gt;We are not there yet. But the direction is right.&lt;/p&gt;




&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;If you want to explore Hermes Agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/NousResearch/hermes-agent" rel="noopener noreferrer"&gt;github.com/NousResearch/hermes-agent&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Documentation: &lt;a href="https://hermes-agent.nousresearch.com/docs" rel="noopener noreferrer"&gt;hermes-agent.nousresearch.com/docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Android/Termux users: the installer auto-detects Termux — same curl one-liner as Linux&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are building AI for communities that cannot afford to be forgotten by the next model update, Hermes Agent is worth your attention.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Joydeep Das is an independent AI researcher building sovereign, offline-first AI systems for Indian farmers under the Divine Earthly project. All development happens on an Android phone in Termux.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;GitHub: &lt;a href="https://github.com/divineearthly" rel="noopener noreferrer"&gt;github.com/divineearthly&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  hermesagentchallenge #devchallenge #agents #ai #india
&lt;/h1&gt;

</description>
      <category>hermesagentchallenge</category>
      <category>devchallenge</category>
      <category>agents</category>
    </item>
    <item>
      <title>I Built GPU-Free AI on a 3.4GB Android Phone</title>
      <dc:creator>Joydeep Das</dc:creator>
      <pubDate>Sun, 10 May 2026 11:37:19 +0000</pubDate>
      <link>https://dev.to/divinesouljoy/i-built-gpu-free-ai-on-a-34gb-android-phone-529a</link>
      <guid>https://dev.to/divinesouljoy/i-built-gpu-free-ai-on-a-34gb-android-phone-529a</guid>
      <description>&lt;p&gt;I built VedaRta entirely on a 3.4GB Android phone with Termux. No GPU. No cloud.&lt;/p&gt;

&lt;p&gt;6 novel Vedic mathematical algorithms replace GPU-requiring operations:&lt;/p&gt;

&lt;p&gt;Sphota Attention — 1,308× faster than O(n²) Softmax&lt;br&gt;
Urdhva Matmul — 10.2× faster than BLAS on ARM64&lt;br&gt;
Tri-Nadi Activation — Converges where SiLU explodes (loss 0.12 vs ∞)&lt;br&gt;
Shunyam Norm — Zero-centered, no DC drift&lt;br&gt;
Chitta KV Cache — 80% memory reduction&lt;br&gt;
Katapayadi Encoder — Phoneme to vector&lt;/p&gt;

&lt;p&gt;VedaRta Sphota is O(n) linear approximate attention — trades cross-token interaction for mobile efficiency. Different operation, different trade-off. Honest science matters.&lt;/p&gt;

&lt;p&gt;"Aham Brahmasmi" produces PHI (1.6188) resonance from embeddings.&lt;br&gt;
Trained a 49KB specialist model in 43 seconds on the phone.&lt;/p&gt;

&lt;p&gt;GitHub: github.com/divineearthly/VedaRta&lt;br&gt;
Model: huggingface.co/divinesouljoy/VedaRta-0.5B&lt;/p&gt;

&lt;p&gt;I'm here to answer questions.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
