<?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: Bishnu Prasad Sahu</title>
    <description>The latest articles on DEV Community by Bishnu Prasad Sahu (@mebishnusahu0595).</description>
    <link>https://dev.to/mebishnusahu0595</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%2F3801540%2F606c51f6-eba2-4c9f-8766-1ebbb07f7399.png</url>
      <title>DEV Community: Bishnu Prasad Sahu</title>
      <link>https://dev.to/mebishnusahu0595</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mebishnusahu0595"/>
    <language>en</language>
    <item>
      <title>Building an Indian Privacy-First Autonomous AI CLI Agent with Background Automation (SamarthyaBot)</title>
      <dc:creator>Bishnu Prasad Sahu</dc:creator>
      <pubDate>Mon, 02 Mar 2026 11:19:20 +0000</pubDate>
      <link>https://dev.to/mebishnusahu0595/building-an-indian-privacy-first-autonomous-ai-cli-agent-with-background-automation-samarthyabot-2l78</link>
      <guid>https://dev.to/mebishnusahu0595/building-an-indian-privacy-first-autonomous-ai-cli-agent-with-background-automation-samarthyabot-2l78</guid>
      <description>&lt;p&gt;When I started building SamarthyaBot, I wasn’t interested in making another website. Websites are easy. What fascinated me was something harder — building a real autonomous AI system that can act, not just respond.&lt;/p&gt;

&lt;p&gt;SamarthyaBot is a privacy-first, local AI CLI agent designed to execute real OS-level actions with background automation, encrypted memory, and dynamic plugins.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This isn’t a chatbot wrapper.&lt;br&gt;
It’s an AI operator.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Makes It Different?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most AI tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run in the cloud&lt;/li&gt;
&lt;li&gt;Only generate text&lt;/li&gt;
&lt;li&gt;Have limited real-world execution&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;SamarthyaBot can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Execute terminal commands (with permission control)&lt;/li&gt;
&lt;li&gt;Read/write local files&lt;/li&gt;
&lt;li&gt;Schedule background tasks (cron-style AI engine)&lt;/li&gt;
&lt;li&gt;Send emails&lt;/li&gt;
&lt;li&gt;Generate UPI deep-links&lt;/li&gt;
&lt;li&gt;Take system screenshots&lt;/li&gt;
&lt;li&gt;Run Telegram-controlled automation remotely&lt;/li&gt;
&lt;li&gt;Load external plugins dynamically&lt;/li&gt;
&lt;li&gt;Encrypt sensitive memory using AES-256&lt;/li&gt;
&lt;li&gt;Switch between multiple LLM providers (Gemini, Claude, OpenAI, Groq, Ollama)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It runs even when I’m not actively using it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔄 Background Autonomous Engine&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can tell it:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;“Check my server every 30 minutes and notify me if it goes down.”&lt;/strong&gt;&lt;br&gt;
And it will silently monitor in the background and only alert you when needed.&lt;/p&gt;

&lt;p&gt;No babysitting required.&lt;br&gt;
It feels like having a remote AI employee.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔌 Plugin-Based Architecture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;SamarthyaBot supports dynamic plugin loading.&lt;br&gt;
Any developer can drop a JS file into the plugins folder, and the system auto-loads it at startup.&lt;/p&gt;

&lt;p&gt;This turns the agent into a platform — not just a tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔐 Privacy &amp;amp; Security First&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Sensitive data like API keys, passwords, or bank details are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Automatically masked before LLM processing&lt;/li&gt;
&lt;li&gt;Encrypted using AES-256-CBC&lt;/li&gt;
&lt;li&gt;Stored securely in MongoDB&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;High-risk actions require explicit user permission (Ask / Always / Never model).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📲 Remote Control via Telegram&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of my favorite features:&lt;/p&gt;

&lt;p&gt;I can message the bot on Telegram from anywhere, and even if my laptop is miles away, it can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manage files&lt;/li&gt;
&lt;li&gt;Run commands&lt;/li&gt;
&lt;li&gt;Monitor systems&lt;/li&gt;
&lt;li&gt;Execute background tasks&lt;/li&gt;
&lt;li&gt;Send alerts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It feels like having a remote AI employee.&lt;/p&gt;

&lt;p&gt;Github: &lt;a href="https://github.com/mebishnusahu0595/SamarthyaBot" rel="noopener noreferrer"&gt;https://github.com/mebishnusahu0595/SamarthyaBot&lt;/a&gt;&lt;br&gt;
Npm : &lt;a href="https://www.npmjs.com/package/samarthya-bot" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/samarthya-bot&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>openclaw</category>
      <category>openai</category>
    </item>
  </channel>
</rss>
