<?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: Mr Hicksman</title>
    <description>The latest articles on DEV Community by Mr Hicksman (@mr_hicksman_3747669cea09a).</description>
    <link>https://dev.to/mr_hicksman_3747669cea09a</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%2F3351314%2Fb3bc3dc5-1800-46b5-b810-c1a099189c94.jpg</url>
      <title>DEV Community: Mr Hicksman</title>
      <link>https://dev.to/mr_hicksman_3747669cea09a</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mr_hicksman_3747669cea09a"/>
    <language>en</language>
    <item>
      <title>What It’s Like to Co-Build With AI</title>
      <dc:creator>Mr Hicksman</dc:creator>
      <pubDate>Thu, 17 Jul 2025 15:52:59 +0000</pubDate>
      <link>https://dev.to/mr_hicksman_3747669cea09a/what-its-like-to-co-build-with-ai-2in3</link>
      <guid>https://dev.to/mr_hicksman_3747669cea09a/what-its-like-to-co-build-with-ai-2in3</guid>
      <description>&lt;p&gt;When I started the Huhb project, it wasn’t a company — it was a question:&lt;/p&gt;

&lt;p&gt;Could I co-build a real product with AI as a development partner — not just a code assistant?&lt;/p&gt;

&lt;p&gt;What followed was not just an experiment in AI tooling — but in patience, design thinking, and product management.&lt;/p&gt;

&lt;p&gt;Here’s what that experience actually looks like.&lt;/p&gt;

&lt;p&gt;✅ The Good&lt;br&gt;
Working with models like GPT-4 has made parts of the build process faster and more structured:&lt;/p&gt;

&lt;p&gt;It’s fast at boilerplate — CRUD logic, test generation, helper functions&lt;/p&gt;

&lt;p&gt;It’s helpful for writing internal docs, logging, and architectural comments&lt;/p&gt;

&lt;p&gt;It’s a great thought partner when exploring design tradeoffs or edge cases&lt;/p&gt;

&lt;p&gt;❌ The Bad&lt;br&gt;
But it’s far from perfect:&lt;/p&gt;

&lt;p&gt;It forgets context quickly. I’ve had to keep running action logs and notes to feed back in&lt;/p&gt;

&lt;p&gt;It hallucinates under pressure, especially in longer sessions&lt;/p&gt;

&lt;p&gt;Sometimes I’ve had to “cheat” — starting over or jumping to Claude or Gemini when things go sideways&lt;/p&gt;

&lt;p&gt;🧩 The Workflow That Evolved&lt;br&gt;
Instead of pair programming, it’s felt more like a series of product strategy meetings:&lt;/p&gt;

&lt;p&gt;I define a goal or outcome&lt;/p&gt;

&lt;p&gt;We debate scope, explore ideas, and refine the concept&lt;/p&gt;

&lt;p&gt;I document the deliverable, and only then do we build it — together&lt;/p&gt;

&lt;p&gt;That’s how Huhb was born.&lt;/p&gt;

&lt;p&gt;🚀 Huhb: From Prompt Chaos to Predictable Workflows&lt;br&gt;
As I started applying this AI-collaboration model to real-world use cases, patterns began to emerge. Everywhere I turned, the developer experience around LLMs was painful:&lt;/p&gt;

&lt;p&gt;The models were fine. The surrounding tooling wasn’t.&lt;/p&gt;

&lt;p&gt;That led to the creation of Huhb — an AI orchestration platform for developers who are tired of building the same glue logic over and over.&lt;/p&gt;

&lt;p&gt;🔧 Why We’re Building Huhb&lt;br&gt;
Here are eight real problems I ran into — and how we solved each one:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Vendor Lock-In &amp;amp; Provider Switching
"Switching models meant rewriting code, reformatting payloads, and adapting to behavior quirks."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb decouples tasks from providers. Define your task once — we handle routing, payload transformation, and output formatting.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Prompt Fragility &amp;amp; Engineering Fatigue
"Small prompt edits broke workflows. Model updates made behavior unpredictable."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb introduces versioned, reusable prompt templates. You get consistency, strategy controls, and portable task logic.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Orchestration Complexity
"Most workflows are multi-step. But AI tools treat them like single-turn chats."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb supports true multi-step, async, and bulk workflows — including built-in callbacks and plugin chaining.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;File-Based Processing Is Painful
"Getting usable output from PDFs, CSVs, or DOCXs is harder than it should be."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb includes chunking, extraction, and output stitching. No more reinventing parsing for every doc format.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Cost and Latency Are a Black Box
"You don’t know how much it’ll cost until the bill comes. And retries kill your margins."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb tracks tokens, latency, fallback retries, and cost estimates. You can even set quality or speed preferences in advance.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Fallbacks Are Still DIY
"If one model fails or times out, it's up to you to route elsewhere."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb has native fallback support per task — no custom retry logic required.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Modularity and Reuse Are Missing
"Tools are either too raw, or too rigid."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb lets you override tasks, inject your own templates, add preprocessors, and make it your own.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Developer Tooling Is Underbuilt
"What I really want is a CLI and SDK — not another drag-and-drop canvas."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ Huhb gives you both. Run workflows, upload files, and track jobs — all from your terminal.&lt;/p&gt;

&lt;p&gt;🧭 Why Huhb Is Different&lt;br&gt;
Now that orchestration tools are emerging everywhere, the big question is: What makes Huhb stand out?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Developer-First — Not Enterprise-First
Others target procurement teams. We’re building for builders — just like Twilio and Stripe did.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You don’t need permission to start using Huhb.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The API Aggregation Playbook
We’ve done this before at Leaf and Hapi. One consistent interface across fragmented providers.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The more providers we support, the more valuable Huhb becomes.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;MCP: Context-Aware AI&lt;br&gt;
Our Modular Context Plugin layer gives you smarter, more relevant output — not just “better routing.”&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We’re Creating a New Category&lt;br&gt;
We’re not an AI tool. We’re an AI integration platform.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Add AI to your app in 5 minutes — not 5 months.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Self-Service + Scale
Usage-based pricing&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Plugin-first flexibility&lt;/p&gt;

&lt;p&gt;CLI + SDK + GraphQL API&lt;/p&gt;

&lt;p&gt;Postprocessors, callbacks, analytics — all built in&lt;/p&gt;

&lt;p&gt;This is the Twilio of AI — not the SAP of AI.&lt;/p&gt;

&lt;p&gt;🔗 Where This Started&lt;br&gt;
If you missed the original spark behind this build, you can read Part 1 here.&lt;/p&gt;

&lt;p&gt;🛠 What’s Next&lt;br&gt;
We’re adding:&lt;/p&gt;

&lt;p&gt;Live model benchmarking&lt;/p&gt;

&lt;p&gt;Output plugins: JSON, Markdown, PDF, CSV&lt;/p&gt;

&lt;p&gt;Public onboarding + plan enforcement&lt;/p&gt;

&lt;p&gt;Admin analytics + cost controls&lt;/p&gt;

&lt;p&gt;Still in alpha. Still co-building. Still learning.&lt;/p&gt;

&lt;p&gt;If you’re wrestling with model chaos, brittle prompts, or cross-provider messiness — you’re not alone.&lt;br&gt;
Let’s fix it together.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Building an Intent-Aware AI Orchestration Layer Using GraphQL and MAB</title>
      <dc:creator>Mr Hicksman</dc:creator>
      <pubDate>Sun, 13 Jul 2025 17:21:05 +0000</pubDate>
      <link>https://dev.to/mr_hicksman_3747669cea09a/building-an-intent-aware-ai-orchestration-layer-using-graphql-and-mab-4lif</link>
      <guid>https://dev.to/mr_hicksman_3747669cea09a/building-an-intent-aware-ai-orchestration-layer-using-graphql-and-mab-4lif</guid>
      <description>&lt;p&gt;🚀 What If You Could Build a Product With AI — Not Just On AI?&lt;br&gt;
Earlier this year, I set out to explore a simple but ambitious question:&lt;br&gt;
Could I co-develop a real, production-grade platform with AI as a partner?&lt;/p&gt;

&lt;p&gt;The result of that experiment is now something more: it’s called Huhb.&lt;/p&gt;

&lt;p&gt;🧠 Where It Started&lt;br&gt;
I’ve been building web platforms for over 20 years — as a developer, a technical product manager, and someone who cares about turning complex systems into clean developer experiences. My work with companies like Leaf Agriculture and Hapi Cloud showed me the deep challenges in integration. Tools like Twilio proved that powerful platforms don’t need to be complicated to use.&lt;/p&gt;

&lt;p&gt;So I asked:&lt;/p&gt;

&lt;p&gt;What if we unified access to AI providers the way Twilio unified messaging?&lt;/p&gt;

&lt;p&gt;That question became the foundation of Huhb — a platform that abstracts the complexity of AI provider integrations and gives developers tools to build smarter, faster, and with more confidence.&lt;/p&gt;

&lt;p&gt;⚙️ What We’re Building&lt;br&gt;
At its core, Huhb is an AI orchestration platform. But under the hood, it’s designed to solve some very real developer pain points — backed by research, interviews, and lived experience.&lt;/p&gt;

&lt;p&gt;Here’s what we’re addressing:&lt;/p&gt;

&lt;p&gt;✅ Prompting shouldn't feel like alchemy.&lt;br&gt;
We replace guesswork with structure — through intent-aware tasks, strategy-driven templates, and prompt planning that adapts based on task type, tone, and constraints.&lt;/p&gt;

&lt;p&gt;✅ Provider selection shouldn't be manual.&lt;br&gt;
Huhb routes every request through a planning engine + multi-armed bandit (MAB) system that optimizes for cost, speed, and quality — and learns from past usage.&lt;/p&gt;

&lt;p&gt;✅ Semantic drift is real.&lt;br&gt;
The same prompt can produce wildly different results across models. Huhb standardizes task execution so outputs are more consistent, versioned, and traceable — especially important in enterprise settings.&lt;/p&gt;

&lt;p&gt;✅ AI tools lack an “intent layer.”&lt;br&gt;
Most APIs treat input like just another string. We treat it as a goal. Huhb workflows are structured around what you’re trying to accomplish — summarization, translation, classification, etc. — not just the provider’s preferred format.&lt;/p&gt;

&lt;p&gt;✅ Tracking AI costs gets messy fast.&lt;br&gt;
We’ve centralized usage tracking and added per-request cost estimation. Developers see what every task costs, how different models perform, and where money is going.&lt;/p&gt;

&lt;p&gt;✅ Prompt reuse, validation, and benchmarking are missing.&lt;br&gt;
Huhb supports dynamic, reusable task templates that can be previewed, validated, and optimized — and tied to real-world metrics about token use, latency, fallback rates, and cost.&lt;/p&gt;

&lt;p&gt;🧠 Why Build It This Way?&lt;br&gt;
Because most AI tooling today is either:&lt;/p&gt;

&lt;p&gt;Too abstracted, hiding important control from developers&lt;/p&gt;

&lt;p&gt;Or too raw, requiring you to reinvent routing, retries, and cost logic every time&lt;/p&gt;

&lt;p&gt;I wanted to build something that respected developer intent and product realities.&lt;/p&gt;

&lt;p&gt;That meant building:&lt;/p&gt;

&lt;p&gt;A GraphQL-first API&lt;/p&gt;

&lt;p&gt;SDKs and a CLI to streamline usage&lt;/p&gt;

&lt;p&gt;Support for bulk file processing and multimodal inputs (PDF, DOCX, CSV, etc.)&lt;/p&gt;

&lt;p&gt;Execution guardrails based on file type and workflow mode&lt;/p&gt;

&lt;p&gt;A plugin architecture for preprocessors, postprocessors, and smart fallback logic&lt;/p&gt;

&lt;p&gt;All of this co-developed — with AI in the loop — through deliberate, small iterations.&lt;/p&gt;

&lt;p&gt;🔍 What Comes Next?&lt;br&gt;
We’re planning a small Alpha launch later this year. This post isn’t a launch — it’s a toe in the water.&lt;/p&gt;

&lt;p&gt;But if any of this resonates with you — if you’ve ever tried to wrangle OpenAI + Claude + Mistral + whatever comes next into a single product, or if you’re just tired of prompt tweaking and cost surprises — then we’d love to connect.&lt;/p&gt;

&lt;p&gt;We’re building Huhb to make AI predictable, programmable, and product-ready.&lt;/p&gt;

&lt;p&gt;Let’s see where it goes.&lt;/p&gt;

&lt;h1&gt;
  
  
  ai #developerexperience #productmanagement #graphql #startups #openai #twilio #huhb
&lt;/h1&gt;

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