<?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>Forem: Marzun</title>
    <description>The latest articles on Forem by Marzun (@marzun9620).</description>
    <link>https://forem.com/marzun9620</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%2F3850020%2Fc039a311-e909-4540-8713-93dd899267bc.png</url>
      <title>Forem: Marzun</title>
      <link>https://forem.com/marzun9620</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/marzun9620"/>
    <language>en</language>
    <item>
      <title>Building an AI Assistant That Doesn’t Take Action Automatically</title>
      <dc:creator>Marzun</dc:creator>
      <pubDate>Sun, 29 Mar 2026 20:38:48 +0000</pubDate>
      <link>https://forem.com/marzun9620/building-an-ai-assistant-that-doesnt-take-action-automatically-32md</link>
      <guid>https://forem.com/marzun9620/building-an-ai-assistant-that-doesnt-take-action-automatically-32md</guid>
      <description>&lt;p&gt;Most AI apps today try to &lt;strong&gt;do things for you automatically&lt;/strong&gt;.&lt;br&gt;
But when it comes to personal data — like money or health — that can feel risky.&lt;br&gt;
So I explored a different pattern:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What if AI &lt;em&gt;suggests&lt;/em&gt; actions, but never executes without approval?&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  🧠 The Idea: Approval-Gated AI
&lt;/h2&gt;

&lt;p&gt;Instead of this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User → AI → Action happens
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I built around this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User → AI → Draft → User approves → Action happens
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  💬 Example
&lt;/h2&gt;

&lt;p&gt;You type:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Add coffee for 40"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The AI:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Parses the intent&lt;/li&gt;
&lt;li&gt;Prepares the expense entry&lt;/li&gt;
&lt;li&gt;Shows it to you&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Approve → saved&lt;/li&gt;
&lt;li&gt;❌ Reject → nothing happens&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⚖️ Why This Matters
&lt;/h2&gt;

&lt;p&gt;In domains like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Finance&lt;/li&gt;
&lt;li&gt;Health / nutrition&lt;/li&gt;
&lt;li&gt;Personal logs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Users care about &lt;strong&gt;control and accuracy&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Problems with full automation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Silent mistakes&lt;/li&gt;
&lt;li&gt;Wrong assumptions&lt;/li&gt;
&lt;li&gt;Loss of trust&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Problems with manual apps
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Too slow&lt;/li&gt;
&lt;li&gt;Too much friction&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔄 This Pattern Sits in Between
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Approval-gated AI is:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Faster than forms&lt;/li&gt;
&lt;li&gt;Safer than automation&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧪 Where I Applied It
&lt;/h2&gt;

&lt;p&gt;I've been prototyping this idea in a small app where AI helps with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expense and income tracking&lt;/li&gt;
&lt;li&gt;Budget alerts&lt;/li&gt;
&lt;li&gt;Nutrition logging (calories and macros from descriptions)&lt;/li&gt;
&lt;li&gt;Receipt parsing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything goes through &lt;strong&gt;user approval first&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤔 Trade-offs I Observed
&lt;/h2&gt;

&lt;h3&gt;
  
  
  ✅ Pros
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Builds trust quickly&lt;/li&gt;
&lt;li&gt;Prevents unexpected changes&lt;/li&gt;
&lt;li&gt;Makes AI behavior transparent&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  ❌ Cons
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Adds an extra step&lt;/li&gt;
&lt;li&gt;Can feel repetitive for simple actions&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧩 Open UX Questions
&lt;/h2&gt;

&lt;p&gt;This is where I'd love input:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Should small actions auto-approve?&lt;/li&gt;
&lt;li&gt;Should users be able to set confidence thresholds?&lt;/li&gt;
&lt;li&gt;When does confirmation become annoying instead of helpful?&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Implementation Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;React 19&lt;/li&gt;
&lt;li&gt;Hono&lt;/li&gt;
&lt;li&gt;Cloudflare Workers + D1 (SQLite)&lt;/li&gt;
&lt;li&gt;Drizzle ORM&lt;/li&gt;
&lt;li&gt;Tailwind&lt;/li&gt;
&lt;li&gt;Radix UI&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Demo &amp;amp; Project
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🎥 Demo: &lt;a href="https://www.youtube.com/watch?v=V09mr6b7RXU" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=V09mr6b7RXU&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🌐 App: &lt;a href="https://keepmylog.com" rel="noopener noreferrer"&gt;https://keepmylog.com&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💬 Final Thought
&lt;/h2&gt;

&lt;p&gt;AI doesn't always need to be autonomous.&lt;br&gt;
Sometimes the best UX is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AI that assists decisively — but lets humans stay in control.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Curious how others are thinking about this pattern.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>saas</category>
      <category>productdesign</category>
    </item>
  </channel>
</rss>
