<?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: Leonardo Costa</title>
    <description>The latest articles on DEV Community by Leonardo Costa (@baziliskb8).</description>
    <link>https://dev.to/baziliskb8</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%2F4125228%2Fce324d2e-95e2-47ef-82c4-7280261138e0.png</url>
      <title>DEV Community: Leonardo Costa</title>
      <link>https://dev.to/baziliskb8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/baziliskb8"/>
    <language>en</language>
    <item>
      <title>Stop Your AI From Wasting Your Tokens: Meet IA SINCER</title>
      <dc:creator>Leonardo Costa</dc:creator>
      <pubDate>Mon, 14 Sep 2026 23:55:58 +0000</pubDate>
      <link>https://dev.to/baziliskb8/stop-your-ai-from-wasting-your-tokens-meet-ia-sincer-3geh</link>
      <guid>https://dev.to/baziliskb8/stop-your-ai-from-wasting-your-tokens-meet-ia-sincer-3geh</guid>
      <description>&lt;p&gt;——-&lt;br&gt;
published: true&lt;/p&gt;
&lt;h2&gt;
  
  
  tags: ai, productivity, opensource, devtools
&lt;/h2&gt;
&lt;h2&gt;
  
  
  Stop Your AI From Wasting Your Tokens: Meet IA SINCER 🔥
&lt;/h2&gt;

&lt;p&gt;Let's be honest about something every developer using AI assistants has felt: you ask a technical question, and instead of a straight answer you get a warm-up lap.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Great question! Let's explore a few options..."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Then five bullet points of "it depends," a polite validation of your half-baked idea, and — three paragraphs later — the actual code. You didn't need a conversation. You needed a decision.&lt;/p&gt;

&lt;p&gt;That's the exact problem &lt;strong&gt;&lt;a href="https://github.com/inclitoleo/ia-sincer" rel="noopener noreferrer"&gt;IA SINCER&lt;/a&gt;&lt;/strong&gt; was built to kill.&lt;/p&gt;
&lt;h3&gt;
  
  
  What IA SINCER Actually Is
&lt;/h3&gt;

&lt;p&gt;IA SINCER is a &lt;strong&gt;system skill/prompt&lt;/strong&gt; — a drop-in personality override for your AI coding assistant. Point it at Claude Code, Gemini CLI, Codex, Cursor, or even DeepSeek, and it turns your assistant into what the README calls a &lt;em&gt;"pragmatic, no-nonsense technical advisor."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;No flattery. No filler. No indecisive lists of five "valid" approaches when there's clearly one right answer for your context. Just a system prompt that rewires how the model responds.&lt;/p&gt;
&lt;h3&gt;
  
  
  Why This Actually Matters (Not Just Vibes)
&lt;/h3&gt;

&lt;p&gt;Here's the part that should get your attention if you're paying per token or burning through context windows on long sessions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;⚡ Faster iteration, measurably.&lt;/strong&gt; By cutting empty pleasantries, process narration, and repeated summaries, responses get to the code and the decision &lt;em&gt;first&lt;/em&gt;. That's less scrolling, less waiting, more copy-paste-ship.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🎯 No more decision paralysis.&lt;/strong&gt; Instead of "here are 5 ways to do this," IA SINCER evaluates trade-offs internally and commits to the single best technical solution for your situation — the way a senior engineer actually reviews a PR.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🛡️ It pushes back on you.&lt;/strong&gt; Most assistants will happily agree with a flawed premise to keep the conversation pleasant. IA SINCER is built to flag anti-patterns, security risks, and outdated approaches &lt;em&gt;before&lt;/em&gt; generating code around them.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🔍 It demands real context.&lt;/strong&gt; Weak or ambiguous prompt? Instead of guessing and handing you dummy code that "sort of" works, it asks for the missing facts up front.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🧠 Shorter responses = more room to work.&lt;/strong&gt; Denser, leaner output means your context window lasts longer — which matters a lot in long pair-programming sessions with an LLM.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you've ever felt like your AI assistant is optimizing for &lt;em&gt;sounding helpful&lt;/em&gt; rather than &lt;em&gt;being useful&lt;/em&gt;, this is the fix.&lt;/p&gt;
&lt;h3&gt;
  
  
  Installing It Takes One Command
&lt;/h3&gt;

&lt;p&gt;No build step, no config file to hand-craft, no dependency hell. Just pick your assistant:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Claude Code (Anthropic CLI)&lt;/span&gt;
npx ia-sincer claude

&lt;span class="c"&gt;# Gemini CLI / Google Antigravity&lt;/span&gt;
npx ia-sincer gemini

&lt;span class="c"&gt;# OpenAI Codex / Cursor&lt;/span&gt;
npx ia-sincer codex

&lt;span class="c"&gt;# Or install it everywhere at once&lt;/span&gt;
npx ia-sincer all
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No Node? No problem — there's a zero-dependency Bash/curl installer too:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/inclitoleo/ia-sincer/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It ships bilingual out of the box (English and Portuguese), and there's a manual install path for Claude Code, Antigravity, Codex, Cursor, and even DeepSeek if you'd rather wire it in yourself.&lt;/p&gt;

&lt;h3&gt;
  
  
  Who This Is For
&lt;/h3&gt;

&lt;p&gt;If you're the kind of developer who:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reads AI responses skimming past the first two sentences to find the actual answer,&lt;/li&gt;
&lt;li&gt;gets mildly irritated when a chatbot "validates" an idea you already suspected was bad,&lt;/li&gt;
&lt;li&gt;wants your context window spent on your codebase, not on pleasantries,&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;...this five-minute install will change how every AI session feels.&lt;/p&gt;

&lt;h3&gt;
  
  
  Try It, Then Tell Me What Breaks It
&lt;/h3&gt;

&lt;p&gt;IA SINCER is MIT-licensed, small, and easy to read end to end — you can audit the whole prompt in a few minutes. Install it, run your normal workflow for a day, and see if you notice the difference in how fast you get to working code.&lt;/p&gt;

&lt;p&gt;⭐ Star it, fork it, or open an issue with edge cases where it should push back harder (or softer):&lt;br&gt;
👉 &lt;strong&gt;&lt;a href="https://github.com/inclitoleo/ia-sincer" rel="noopener noreferrer"&gt;https://github.com/inclitoleo/ia-sincer&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If it saves you even one "let me walk you through your options" moment, it did its job.&lt;/p&gt;




&lt;h1&gt;
  
  
  AI #OpenSource #DeveloperTools #ProductivityHacks #code #development #ArtificialIntelligence #CodingAssistant #ClaudeCode #codex #Cursor #PromptEngineering
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
