<?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: Khairul Muhtadin</title>
    <description>The latest articles on DEV Community by Khairul Muhtadin (@khmuhtadin).</description>
    <link>https://dev.to/khmuhtadin</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%2F3796665%2F6f5c9229-982f-48e5-8082-05353adb9bee.png</url>
      <title>DEV Community: Khairul Muhtadin</title>
      <link>https://dev.to/khmuhtadin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/khmuhtadin"/>
    <language>en</language>
    <item>
      <title>Agentic Is Powerful. The Bill Is in the Tokens.</title>
      <dc:creator>Khairul Muhtadin</dc:creator>
      <pubDate>Wed, 15 Jul 2026 13:00:00 +0000</pubDate>
      <link>https://dev.to/khmuhtadin/agentic-is-powerful-the-bill-is-in-the-tokens-48l3</link>
      <guid>https://dev.to/khmuhtadin/agentic-is-powerful-the-bill-is-in-the-tokens-48l3</guid>
      <description>&lt;p&gt;Agentic workflows are useful. The problem is how fast tokens pile up.&lt;/p&gt;

&lt;p&gt;A single do this can turn into dozens of model calls. Context grows every turn. Retries get more expensive late in the session. Even simple search and re-read loops show up on the bill.&lt;/p&gt;

&lt;p&gt;That is token addiction: wrapping deterministic work in an LLM every time.&lt;/p&gt;

&lt;p&gt;Why agentic cost escalates&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Multi-step agent loops turn one goal into many model rounds.&lt;/li&gt;
&lt;li&gt;Input context dominates. Files, logs, and tool schemas get re-sent every turn.&lt;/li&gt;
&lt;li&gt;Retries late in a session hit a fat context window, so each attempt costs more than the last.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;What token addiction looks like&lt;/p&gt;

&lt;p&gt;Agent greps the same repo on every run&lt;br&gt;
LLM summarizes JSON that a Set node or script could map&lt;br&gt;
Full HTML dumped into context instead of structured fields&lt;br&gt;
No max steps on tool loops&lt;/p&gt;

&lt;p&gt;You are paying for judgment on work that never needed judgment.&lt;/p&gt;

&lt;p&gt;A simple control plane&lt;/p&gt;

&lt;p&gt;With a clear process, n8n helps you decide when AI should run:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Rules first for structured data, clear if/then paths, and high-volume glue.&lt;/li&gt;
&lt;li&gt;One-shot AI when the task is fuzzy but bounded: classify, extract, draft once.&lt;/li&gt;
&lt;li&gt;A full agent only when the path is truly unknown, with a budget and a kill switch.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Use AI for judgment. Use workflows for everything else.&lt;/p&gt;

&lt;p&gt;Autonomy without routing is just an expensive loop.&lt;/p&gt;

</description>
      <category>automation</category>
      <category>ai</category>
      <category>productivity</category>
      <category>agents</category>
    </item>
    <item>
      <title>Ship with n8n: 20 builder skills</title>
      <dc:creator>Khairul Muhtadin</dc:creator>
      <pubDate>Tue, 14 Jul 2026 11:00:04 +0000</pubDate>
      <link>https://dev.to/khmuhtadin/ship-with-n8n-20-builder-skills-3ak0</link>
      <guid>https://dev.to/khmuhtadin/ship-with-n8n-20-builder-skills-3ak0</guid>
      <description>&lt;p&gt;Ship with n8n: 20 builder skills.&lt;/p&gt;

&lt;p&gt;From a working canvas to systems you can trust in production.&lt;/p&gt;

&lt;p&gt;We do not start with agents. We start with control:&lt;br&gt;
• how runs start and how items move&lt;br&gt;
• JSON, HTTP, and readable design&lt;br&gt;
• failures, branches, and secrets&lt;br&gt;
• then models, databases, hosting, and full systems&lt;/p&gt;

&lt;p&gt;Three arcs:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Canvas &amp;amp; data (01–10)&lt;/li&gt;
&lt;li&gt;Control &amp;amp; safety (11–15)&lt;/li&gt;
&lt;li&gt;Operate &amp;amp; scale (16–20)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Save this map. We go one skill per episode.&lt;/p&gt;

&lt;p&gt;Next: 01 · What n8n is for.&lt;/p&gt;

&lt;p&gt;Which skill do you want first after the fundamentals?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc A · Canvas &amp;amp; data&lt;/strong&gt;&lt;br&gt;
01 What n8n is for · 02 Nodes as units of work · 03 Readable workflow design · 04 How a run starts · 05 Webhooks that are safe · 06 How items move · 07 Expressions without fear · 08 JSON you can debug · 09 HTTP as universal adapter · 10 APIs in production&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc B · Control &amp;amp; safety&lt;/strong&gt;&lt;br&gt;
11 Failure paths on purpose · 12 Branching without spaghetti · 13 Batches, waits, and exits · 14 Transform without overkill · 15 Secrets out of the canvas&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc C · Operate &amp;amp; scale&lt;/strong&gt;&lt;br&gt;
16 Agents only when needed · 17 One-shot models in a flow · 18 A real source of truth · 19 Own the stack · 20 Systems, not single flows&lt;/p&gt;

</description>
      <category>automation</category>
      <category>ai</category>
      <category>productivity</category>
      <category>tools</category>
    </item>
    <item>
      <title>20 n8n skills that actually matter in production</title>
      <dc:creator>Khairul Muhtadin</dc:creator>
      <pubDate>Tue, 14 Jul 2026 11:00:03 +0000</pubDate>
      <link>https://dev.to/khmuhtadin/20-n8n-skills-that-actually-matter-in-production-1i0k</link>
      <guid>https://dev.to/khmuhtadin/20-n8n-skills-that-actually-matter-in-production-1i0k</guid>
      <description>&lt;p&gt;20 n8n skills that actually matter in production.&lt;/p&gt;

&lt;p&gt;Not a random tip list. This is the order I use so workflows do not only work in a demo.&lt;/p&gt;

&lt;p&gt;We do not start with agents.&lt;/p&gt;

&lt;p&gt;We start with control:&lt;/p&gt;

&lt;p&gt;• how a run starts&lt;/p&gt;

&lt;p&gt;• how items move between nodes&lt;/p&gt;

&lt;p&gt;• JSON, HTTP, readable design&lt;/p&gt;

&lt;p&gt;• errors and secrets, then models and full systems&lt;/p&gt;

&lt;p&gt;I split it into 3 arcs:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Canvas and data (01–10)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Control and safety (11–15)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Operate and scale (16–20)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Arc A · Canvas and data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;01 What n8n is for · 02 Nodes as units of work · 03 Readable workflow design · 04 How a run starts · 05 Webhooks that are safe · 06 How items move · 07 Expressions without fear · 08 JSON you can debug · 09 HTTP as universal adapter · 10 APIs in production&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc B · Control and safety&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;11 Failure paths on purpose · 12 Branching without spaghetti · 13 Batches, waits, and exits · 14 Transform without overkill · 15 Secrets out of the canvas&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arc C · Operate and scale&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;16 Agents only when needed · 17 One-shot models in a flow · 18 A real source of truth · 19 Own the stack · 20 Systems, not single flows&lt;/p&gt;

&lt;p&gt;One skill per episode: common mistake, checklist, small build.&lt;/p&gt;

&lt;p&gt;Next: 01 · What n8n is for.&lt;/p&gt;

</description>
      <category>automation</category>
      <category>ai</category>
      <category>productivity</category>
      <category>tools</category>
    </item>
    <item>
      <title>API Indonesia now ships an OpenAPI 3.1 spec</title>
      <dc:creator>Khairul Muhtadin</dc:creator>
      <pubDate>Mon, 13 Jul 2026 12:39:00 +0000</pubDate>
      <link>https://dev.to/khmuhtadin/api-indonesia-now-ships-an-openapi-31-spec-4m53</link>
      <guid>https://dev.to/khmuhtadin/api-indonesia-now-ships-an-openapi-31-spec-4m53</guid>
      <description>&lt;p&gt;I just published an OpenAPI 3.1 spec for API Indonesia.&lt;br&gt;
If you are integrating Indonesian public data, you no longer need to rebuild the request surface by hand from scattered docs.&lt;br&gt;
What is live:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Official OpenAPI 3.1 document&lt;/li&gt;
&lt;li&gt;80 operations&lt;/li&gt;
&lt;li&gt;Ready to import into Postman, Insomnia, Bruno, or client generators
Spec:
&lt;a href="https://docs.apiindonesia.id/openapi.json" rel="noopener noreferrer"&gt;https://docs.apiindonesia.id/openapi.json&lt;/a&gt;
Full docs:
&lt;a href="https://docs.apiindonesia.id/" rel="noopener noreferrer"&gt;https://docs.apiindonesia.id/&lt;/a&gt;
This update is about developer experience, not a breaking API change. Existing base URL and API keys stay the same.
If you prefer starting from a machine-readable contract, import the spec first, then explore the docs.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>api</category>
      <category>openapi</category>
      <category>indonesia</category>
      <category>documentation</category>
    </item>
    <item>
      <title>Agentcash is giving away $𝟭𝟬𝟬,𝟬𝟬𝟬 𝘁𝗼 𝘂𝘀𝗲𝗿𝘀.</title>
      <dc:creator>Khairul Muhtadin</dc:creator>
      <pubDate>Thu, 12 Mar 2026 11:17:07 +0000</pubDate>
      <link>https://dev.to/khmuhtadin/agentcash-is-giving-away--1b6p</link>
      <guid>https://dev.to/khmuhtadin/agentcash-is-giving-away--1b6p</guid>
      <description>&lt;p&gt;Agentcash is giving away &lt;strong&gt;$100,000 to users&lt;/strong&gt;.&lt;br&gt;
Just &lt;strong&gt;connect your GitHub account&lt;/strong&gt; to claim your bonus.&lt;/p&gt;

&lt;p&gt;The system will analyze your &lt;strong&gt;digital presence&lt;/strong&gt; to determine how much you get &lt;strong&gt;up to $25 per user&lt;/strong&gt;.&lt;br&gt;
It also uses the &lt;strong&gt;x402 protocol&lt;/strong&gt;, which can be used to &lt;strong&gt;pay for API access&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Grab yours here: &lt;a href="https://dub.sh/agentcash" rel="noopener noreferrer"&gt;https://dub.sh/agentcash&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
