<?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: leokwon68</title>
    <description>The latest articles on DEV Community by leokwon68 (@leokwon68).</description>
    <link>https://dev.to/leokwon68</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%2F3979917%2Fff811fe2-6558-48d3-8ee0-702ad317e1c4.png</url>
      <title>DEV Community: leokwon68</title>
      <link>https://dev.to/leokwon68</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/leokwon68"/>
    <language>en</language>
    <item>
      <title>I built an AI board of directors that debates a decision, then scores itself</title>
      <dc:creator>leokwon68</dc:creator>
      <pubDate>Thu, 11 Jun 2026 16:55:39 +0000</pubDate>
      <link>https://dev.to/leokwon68/i-built-an-ai-board-of-directors-that-debates-a-decision-then-scores-itself-99c</link>
      <guid>https://dev.to/leokwon68/i-built-an-ai-board-of-directors-that-debates-a-decision-then-scores-itself-99c</guid>
      <description>&lt;p&gt;I kept asking a single LLM for decisions and getting one confident answer with zero accountability. So I built &lt;strong&gt;Boardroom&lt;/strong&gt;: instead of one reply, a decision goes through a &lt;em&gt;board&lt;/em&gt; of AI directors that argue — and the verdict gets scored against reality over time.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx boardroom-ai
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's open source, zero-dependency Node, ~2k lines: &lt;a href="https://github.com/leokwon68/boardroom-ai" rel="noopener noreferrer"&gt;https://github.com/leokwon68/boardroom-ai&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with one-shot answers
&lt;/h2&gt;

&lt;p&gt;Ask one model "should I raise prices 20%?" and you get a fluent, confident paragraph. But there's no dissent, no one trying to prove it wrong, and crucially &lt;strong&gt;no record of whether it was right&lt;/strong&gt;. You can't tell a lucky guess from a good call.&lt;/p&gt;

&lt;h2&gt;
  
  
  How a meeting runs
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Positions (R1)&lt;/strong&gt; — 3+ director personas answer independently, each with a fixed lens (numbers, execution reality, risk).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cross-examination (R2)&lt;/strong&gt; — each director attacks the &lt;em&gt;weakest&lt;/em&gt; claim on the table and may change their mind.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verdict&lt;/strong&gt; — a chair rules with a &lt;strong&gt;confidence score&lt;/strong&gt; and a &lt;strong&gt;falsifier&lt;/strong&gt;: "here's what would prove this wrong, and by when."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Red team&lt;/strong&gt; — a separate pass tries to kill the verdict. If it survives, confidence is adjusted down.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The part I actually care about: a batting average
&lt;/h2&gt;

&lt;p&gt;Every verdict lands in a ledger with a review date. Later you mark it &lt;strong&gt;hit&lt;/strong&gt; or &lt;strong&gt;miss&lt;/strong&gt;, and the board keeps a running average. It's the first time I've had an AI that has to &lt;em&gt;face its own track record&lt;/em&gt; instead of being confidently wrong forever.&lt;/p&gt;

&lt;h2&gt;
  
  
  It can also execute
&lt;/h2&gt;

&lt;p&gt;Approve a verdict and an executor runs the plan with a real browser (Playwright MCP), shell, and files — then files evidence. Risky steps (payments, posting, trades) are always held for a human. Nothing irreversible happens without one click.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Zero dependencies.&lt;/strong&gt; Engine + HTTP server + Telegram bridge are pure Node + &lt;code&gt;fetch&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Runs on &lt;strong&gt;Claude Code with no API key&lt;/strong&gt;, or paste one key (Anthropic / OpenAI / Gemini).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mix models per seat&lt;/strong&gt; — chair on one model, a GPT seat next to a Claude seat. Routing picks the provider per model id.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;npx boardroom-ai&lt;/code&gt; opens a local web UI; there's also a hosted version: &lt;a href="https://boardroom-cloud.vercel.app" rel="noopener noreferrer"&gt;https://boardroom-cloud.vercel.app&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Outcome scoring is &lt;strong&gt;manual&lt;/strong&gt; — you mark hit/miss. (Automating it fairly is hard.)&lt;/li&gt;
&lt;li&gt;The debate can &lt;strong&gt;groupthink&lt;/strong&gt; if personas are too similar. Diverse lenses matter — you can even name seats after real people (a Buffett seat on margin-of-safety, a Dalio seat on macro).&lt;/li&gt;
&lt;li&gt;The executor is powerful, so I keep it gated on purpose.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The question I'm chewing on
&lt;/h2&gt;

&lt;p&gt;Is a &lt;strong&gt;batting average for an AI's judgment&lt;/strong&gt; genuinely useful — a forcing function that makes the thing earn trust — or is it just theater? Would love this community's take.&lt;/p&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/leokwon68/boardroom-ai" rel="noopener noreferrer"&gt;https://github.com/leokwon68/boardroom-ai&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>node</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
