<?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: Vandana</title>
    <description>The latest articles on DEV Community by Vandana (@vandana_5cca941ab74e21680).</description>
    <link>https://dev.to/vandana_5cca941ab74e21680</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%2F3726748%2F409b2130-61e4-4dd5-ab23-a5f58916811e.png</url>
      <title>DEV Community: Vandana</title>
      <link>https://dev.to/vandana_5cca941ab74e21680</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vandana_5cca941ab74e21680"/>
    <language>en</language>
    <item>
      <title>Why I Built an AI Coding Platform with BYOK (Bring Your Own Key) that uses Claude skills directly</title>
      <dc:creator>Vandana</dc:creator>
      <pubDate>Thu, 22 Jan 2026 17:55:06 +0000</pubDate>
      <link>https://dev.to/vandana_5cca941ab74e21680/why-i-built-an-ai-coding-platform-with-byok-bring-your-own-key-1j2g</link>
      <guid>https://dev.to/vandana_5cca941ab74e21680/why-i-built-an-ai-coding-platform-with-byok-bring-your-own-key-1j2g</guid>
      <description>&lt;h2&gt;
  
  
  The Problem That Wouldn't Go Away
&lt;/h2&gt;

&lt;p&gt;I had a setup I loved: Claude API with custom skills I'd spent weeks building. Database query tools, file system automation, deployment scripts - everything tuned to my workflow.&lt;/p&gt;

&lt;p&gt;Then I tried Cursor.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here's what frustrated me:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Paying twice:&lt;/strong&gt; I was already paying $20/month for Claude API. Cursor wanted another $20/month to use &lt;em&gt;my own API credits&lt;/em&gt;. I was literally paying twice to access the same AI.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Lost my skills:&lt;/strong&gt; Remember those Claude skills I built in the Developer Console? Completely unusable in Cursor. All that work, just sitting there.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Stuck in real-time:&lt;/strong&gt; Cursor is great for pair programming, but I couldn't kick off a refactor before bed and wake up to reviewed code. Everything required me at the keyboard.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Siloed:&lt;/strong&gt; My colleagues couldn't leverage my custom skills. No way to share the automation I'd built.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The final straw? I calculated I was spending $480/year on tools that used an API I was already paying for, while my custom skills collected dust.&lt;/p&gt;

&lt;h2&gt;
  
  
  The "Aha" Moment
&lt;/h2&gt;

&lt;p&gt;I was working late, wanting to refactor a module before morning. I thought: &lt;em&gt;"Why can't I just start this task, let AI agents handle it overnight, and review the results tomorrow?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That's when it clicked:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What if you could:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use your own Claude API key (no markup)&lt;/li&gt;
&lt;li&gt;Bring your Claude Developer Console skills&lt;/li&gt;
&lt;li&gt;Run workflows asynchronously (not just real-time assistance)&lt;/li&gt;
&lt;li&gt;Share automation with your team&lt;/li&gt;
&lt;li&gt;Trigger tasks via API without touching an IDE&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The technical challenge was interesting: orchestrating multiple specialized agents (planning → coding → review) while maintaining access to custom skills.&lt;/p&gt;

&lt;p&gt;But the core insight was simple: &lt;strong&gt;async workflows are fundamentally different from real-time assistance&lt;/strong&gt;, and almost nobody was building for that.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Built Threadyx
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Multi-Agent Architecture
&lt;/h3&gt;

&lt;p&gt;Instead of one AI trying to do everything, I built specialized agents:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Planning Agent&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Analyzes the task&lt;/li&gt;
&lt;li&gt;Breaks it into steps&lt;/li&gt;
&lt;li&gt;Identifies which Claude skills to use&lt;/li&gt;
&lt;li&gt;Creates implementation plan&lt;/li&gt;
&lt;li&gt;Provides human-readable summary&lt;/li&gt;
&lt;li&gt;Recommends approve/reject&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Coding Agent&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Executes the plan&lt;/li&gt;
&lt;li&gt;Generates code changes&lt;/li&gt;
&lt;li&gt;References your custom skills&lt;/li&gt;
&lt;li&gt;Works in cloned environment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Review Agent&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Validates changes&lt;/li&gt;
&lt;li&gt;Checks for issues&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each agent has a specific job. This reduces errors and improves consistency vs. a single agent context-switching between planning, coding, and reviewing.&lt;/p&gt;

&lt;h3&gt;
  
  
  Claude Skills Integration (The Hard Part)
&lt;/h3&gt;

&lt;p&gt;Claude's API supports up to 5 skills per request. But I wanted users to reference &lt;em&gt;unlimited&lt;/em&gt; skills.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The solution:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Users provide all their Claude skill IDs (no limit)&lt;/li&gt;
&lt;li&gt;For each task, Threadyx analyzes which skills are relevant&lt;/li&gt;
&lt;li&gt;Intelligently selects the top 5 most applicable skills&lt;/li&gt;
&lt;li&gt;Passes those to the API&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You have 15 Claude skills:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Salesforce Flows (3 skills)&lt;/li&gt;
&lt;li&gt;Apex (4 skills)&lt;/li&gt;
&lt;li&gt;API integrations (5 skills)&lt;/li&gt;
&lt;li&gt;Development Expert (1 skill)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You ask: &lt;em&gt;"Create a salesforce screen flow to update contact's address related to an account"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Threadyx automatically selects your 3 + 1 skills (to create flow + development), ignoring the irrelevant ones.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here's what it looks like in practice:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6p61yu4wujqycov4mgz4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6p61yu4wujqycov4mgz4.png" alt=" " width="800" height="261"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Threadyx automatically selects the most relevant skills from your collection&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  API-First Design
&lt;/h3&gt;

&lt;p&gt;Unlike IDE-based tools, everything in Threadyx is API-driven:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;repository&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;id&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;wds&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://github.com/GCS/wds.git&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;baseBranch&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;main&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;task&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Create a salesforce screen flow to update contact's address related to an account&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;skills&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;skill_011SyG9cLJYM6x1jgXkS6ryK,skill_01UoXqka4XKEBAgUzHZGmVwh,skill_013AErsWQ4DNzuTwjwBBA9Xa,skill_015PBk47MiyctTWykMob3eP1, skill_01M3yhcUNHpW676RphF3wyYr,skill_011NPA8LWNtviQsrVfZR8Pwj,skill_01GdgsfNcVhdNT4z2U8Y5U7k,skill_01MwFDgchx2nC96uMMCErfBp,skill_013UAXQAyMXwXEF6cSt6mgC4,skill_01C5a2Voh9YmVUGJ5BvNT9hF&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;webhookUrl&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://webhook.site/8f80a24b-e44a-4382-aca8-f963c7c86220&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;apiKey&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;your-anthropic-key&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;userId&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;your-user-id&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This means you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Integrate with CI/CD pipelines&lt;/li&gt;
&lt;li&gt;Schedule recurring tasks&lt;/li&gt;
&lt;li&gt;Build custom automations&lt;/li&gt;
&lt;li&gt;Trigger workflows from anywhere (not just your IDE)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Safety First: Cloned Environments
&lt;/h3&gt;

&lt;p&gt;Every workflow runs in a cloned environment. Your main codebase is never touched until you explicitly approve and merge changes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Workflow:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Clone your repo/environment&lt;/li&gt;
&lt;li&gt;AI agents work in the clone&lt;/li&gt;
&lt;li&gt;You review the changes&lt;/li&gt;
&lt;li&gt;You decide: merge or discard&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No surprises. No accidental commits. Full control.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Building This
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. BYOK Resonates More Than I Expected
&lt;/h3&gt;

&lt;p&gt;When I posted about Threadyx, the #1 response was: &lt;em&gt;"Finally! I'm already paying for Claude API, why would I pay again?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Cost-conscious developers (indie hackers, small teams) feel the pain of subscription fatigue. They want control over their AI costs.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Async Workflows Are Severely Underserved
&lt;/h3&gt;

&lt;p&gt;Everyone's building real-time coding assistants. But there's a huge gap for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Overnight refactors&lt;/li&gt;
&lt;li&gt;Scheduled maintenance tasks&lt;/li&gt;
&lt;li&gt;Large codebase migrations&lt;/li&gt;
&lt;li&gt;Tasks that don't need human babysitting&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The developer doesn't need to be at the keyboard 24/7. Let agents work while you sleep.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Claude Skills Are Powerful But Underutilized
&lt;/h3&gt;

&lt;p&gt;Most developers don't even know Claude Developer Console skills exist. Those who do build them find they're trapped in the console.&lt;/p&gt;

&lt;p&gt;Making skills portable and reusable across tools is a game-changer.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Direct Outreach &amp;gt; Big Launches
&lt;/h3&gt;

&lt;p&gt;I tried launching on Hacker News. It went nowhere (2 upvotes, buried in 34 minutes).&lt;/p&gt;

&lt;p&gt;What actually worked? Sending 20 personal messages to developers who tweet about Claude API. 10% response rate. Real conversations. Better feedback than any launch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lesson:&lt;/strong&gt; Find 10 people who love your product &amp;gt; getting 1000 people to glance at it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try Threadyx Yourself
&lt;/h2&gt;

&lt;p&gt;I'm looking for early users who:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Already use Claude API&lt;/li&gt;
&lt;li&gt;Have built custom Claude skills&lt;/li&gt;
&lt;li&gt;Want to automate development workflows&lt;/li&gt;
&lt;li&gt;Need async task execution&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Get started:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Platform:&lt;/strong&gt; &lt;a href="https://code-agent-frontend-production.up.railway.app" rel="noopener noreferrer"&gt;https://code-agent-frontend-production.up.railway.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Setup Guide:&lt;/strong&gt; &lt;a href="https://docs.google.com/document/d/1gCV9ox1sTx-RF3TUCgh5ON2Lr6MfekQK/edit" rel="noopener noreferrer"&gt;Google Doc&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Demo Videos:&lt;/strong&gt; &lt;a href="https://www.youtube.com/channel/UCiklY21pbodcv4i9J1llBpA" rel="noopener noreferrer"&gt;YouTube Channel&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;Part 1: Introduction &amp;amp; Codebase Search&lt;/li&gt;
&lt;li&gt;Part 2: Approval to Implementation&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What you'll need:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Claude API key (get one at console.anthropic.com)&lt;/li&gt;
&lt;li&gt;GITHUB PAT key&lt;/li&gt;
&lt;li&gt;Your Claude Developer Console skill IDs (optional but recommended)&lt;/li&gt;
&lt;li&gt;5 minutes for setup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Early user benefits:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extended trial period&lt;/li&gt;
&lt;li&gt;Direct access to me (the founder) for support&lt;/li&gt;
&lt;li&gt;Input on what features to build next&lt;/li&gt;
&lt;li&gt;Priority bug fixes&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Questions for You
&lt;/h2&gt;

&lt;p&gt;I'm genuinely curious:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Would you use a BYOK model&lt;/strong&gt;, or do you prefer all-in-one tools even if they cost more?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;What would you automate first&lt;/strong&gt; if you had async AI agents?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Nightly refactors?&lt;/li&gt;
&lt;li&gt;Test generation?&lt;/li&gt;
&lt;li&gt;Documentation updates?&lt;/li&gt;
&lt;li&gt;Code reviews?&lt;/li&gt;
&lt;li&gt;Something else?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Do you have Claude skills you wish you could use elsewhere?&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;What's stopping you from trying it?&lt;/strong&gt; (Be honest - this helps me improve)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Drop your thoughts in the comments. I read and respond to everything.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;About Threadyx:&lt;/strong&gt;&lt;br&gt;
Threadyx is a multi-agent AI coding platform where you bring your own Claude API key and skills. Built for developers who want control, automation, and async workflows without subscription lock-in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About me:&lt;/strong&gt;&lt;br&gt;
I'm an indie developer frustrated by AI tool pricing. You can reach me directly in the comments or at &lt;a href="mailto:vandana.threadyx@gmail.com"&gt;vandana.threadyx@gmail.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🚀&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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