From 6370242019a66a4eb5ad38abddc53228a3f23294 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 17 Aug 2026 17:52:13 +0000 Subject: [PATCH] Add C2B (Chat2Business) console at /c2b/ + dock launcher MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A self-contained, client-side Chat2Business tool hosted on captkernel.com. Visitors bring their own Anthropic API key (stored only in their browser, sent only to api.anthropic.com); the page loads no third-party scripts. It runs the C2B pipeline entirely in the browser via the Anthropic Messages API with direct browser access: structure (idea brief) -> research dossier -> 5-persona Council in parallel -> Chair verdict with a parsed 0-100 score + tier badge -> MVP spec (or a Don't-Build report). A 'special instructions' box is injected into every stage so users can steer and iterate; a live token/cost meter and model selector (Sonnet 5 / Opus 5 / Haiku 4.5) are included. Homepage: adds one dock tile (data-link="c2b") that navigates to /c2b/, matching the existing github/x launcher pattern. Two small, reversible hunks; no changes to the window/desktop system. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) --- c2b/index.html | 544 +++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 3 +- 2 files changed, 546 insertions(+), 1 deletion(-) create mode 100644 c2b/index.html diff --git a/c2b/index.html b/c2b/index.html new file mode 100644 index 0000000..13f876f --- /dev/null +++ b/c2b/index.html @@ -0,0 +1,544 @@ + + + + + +C2B β€” Chat2Business Console Β· captKernel + + + + + + + +
+ +
+
captKernel β€” c2b
+ ← back to captkernel.com +
+ + +
+
β–Έ_ chat2business β€” console
+
+

Chat2Business

+

Turn a rough idea into a pressure-tested MVP. A five-persona Claude Council + adversarially reviews your idea, scores it, and β€” only for the ideas that survive β€” drafts an + MVP spec. A "don't build" verdict is a win: it saves you the build.

+
capture β†’ structure β†’ research β†’ council (5 parallel) β†’ decide β†’ mvp
+
+
+ + +
+
βš™ setup β€” bring your own Anthropic key
+
+
+ + +
Your key stays in this browser only and is sent only to api.anthropic.com β€” this page loads no third-party scripts. Get a key at console.anthropic.com. You pay Anthropic for usage.
+
+ + +
+
+
+
+ + +
A full run is ~7 model calls (5 run in parallel for the Council).
+
+
+
+
+ + +
+
✎ your idea
+
+
+ + +
+
+ + +
+
+ + + + tokens: 0 in / 0 out Β· ~$0.0000 +
+
+
+
+ + + + + + + + + + + + +
+ Chat2Business runs client-side against the Anthropic API with your own key Β· nothing is stored on any server Β· + built by captKernel
+ This is a decision aid, not investment advice. Verdicts are model output β€” sanity-check before you build (or don't). +
+ +
+ + + + diff --git a/index.html b/index.html index 180e68e..1c66d26 100644 --- a/index.html +++ b/index.html @@ -538,6 +538,7 @@
β–¦work
✎kernel
βœ‰connect
+
β—†c2b
βŒ₯gh
𝕏x
@@ -1433,7 +1434,7 @@ /* ---------------- boot ---------------- */ document.querySelectorAll('.dock .app[data-open]').forEach(function(a){a.addEventListener('click',function(){openApp(a.getAttribute('data-open'));});}); -document.querySelectorAll('.dock .app[data-link]').forEach(function(a){a.addEventListener('click',function(){var k=a.getAttribute('data-link');var u=({github:'https://github.com/captkernel',x:'https://x.com/captkernel'})[k];if(u)window.open(u,'_blank','noopener');});}); +document.querySelectorAll('.dock .app[data-link]').forEach(function(a){a.addEventListener('click',function(){var k=a.getAttribute('data-link');var u=({github:'https://github.com/captkernel',x:'https://x.com/captkernel',c2b:'/c2b/'})[k];if(u){if(k==='c2b')location.href=u;else window.open(u,'_blank','noopener');}});}); window.addEventListener('resize',function(){relayout();if(patOn)buildPat();}); /* dock auto-hide: peeks at the bottom; reveal on hovering the peek/strip, hide on leave */ var dockEl=document.querySelector('.dock'), dockPeek=document.getElementById('dockpeek'), wmctlEl=document.getElementById('wmctl');