惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a 325K-line enterprise platform in 11 months (sol...
Travis Wilson · 2026-06-25 · via DEV Community

I'm Travis, a staff engineer with ~20 years building software. Eleven months ago I started building Flywheel — an AI workflow automation platform. Solo. Evenings and weekends.

Today the codebase is 325,000 lines of production code. 702 commits. Three services (Go backend, Next.js frontend, Python AI agent), 14 integrations, full CI/CD, Terraform infrastructure. Enterprise-grade auth, billing, monitoring — the works.

I didn't mass-generate code. I didn't skip tests. I wrote a real system that I'm shipping to real users. Here's how.

The Stats

Let's get specific. These are real numbers, not estimates.

Codebase:

  • 170K lines of Go (backend API, 14 provider integrations, distributed pipeline execution)
  • 145K lines of TypeScript (visual workflow editor, React Flow canvas, 60+ component directories)
  • 7.5K lines of Python (AI agent — FastAPI, Anthropic SDK, MCP tools)
  • 2,500 lines of Terraform (GCP infrastructure as code)
  • 847 test files across the stack

Git churn:

  • 1.37 million lines inserted
  • 716K lines deleted
  • Only 325K survived
  • For every line of code in the app, I wrote more than two

Claude Code usage (all time):

  • 2,900 sessions across 144 active days (longest streak: 42 days straight)
  • 94.7 million tokens generated — plus billions more served from prompt cache
  • ~$1,200 in Claude Max subscription — usage that would've metered at $2,500+ on API pricing

What I Actually Built

Flywheel automates recurring tasks. Not one-off AI magic — persistent workers that run on schedule, via webhook, or triggered by events.

The core insight: AI is great at reading messy data (emails, PDFs, Slack). Deterministic logic is great at routing, filtering, delivering. Combine them and you get workflows that handle jobs reliably.

What the platform does today:

  • Visual drag-and-drop workflow builder on a React Flow canvas
  • 10 data providers: Gmail, BigQuery, PostgreSQL, S3, DynamoDB, Firestore, GCS, Google Drive, Pub/Sub, Domo
  • AI enrichment nodes: Claude and ChatGPT run mid-pipeline, reading data and producing structured output
  • 8 processing transforms: filter, route, join, collect, flatten, split, apply template
  • Human-in-the-loop: workflows pause for human review before continuing
  • Distributed execution with chunked streaming, per-node error policies, failure retry
  • Multi-org RBAC with entity-level permissions
  • Stripe billing, monitoring dashboard, template marketplace

The workflow canvas isn't just where you build. It's where you run your operation. That's the 1.0 vision — you open the canvas and see live stats, reports, and action queues from your running workflows, not just the pipeline graph.

Why the Fundamentals Post Matters More Now

Six months ago I wrote about how strong fundamentals + AI multiplied my output. That post had 4,366 tests, and the core thesis was: AI multiplies whatever you already have. Clean codebase → clean AI output. Messy codebase → garbage.

That thesis has only gotten more true at scale. Here's what changed:

Then (September 2025): 4,366 tests. Felt like a lot.
Now (June 2026): 8,000+ tests. 847 test files. 372 API endpoints.

Then: "Claude can generate endpoints that follow your patterns."
Now: Claude reads CLAUDE.md files for context, follows registry patterns to add new providers, writes tests that match conventions, and refactors entire domains in a single session.

The fundamentals didn't just help me write code faster. They made it possible for AI to work on the codebase without me present.

The Workflow That Scales

My process hasn't changed much. It's just faster.

1. Claude sketches, I refine.

I let Claude take the first pass at a design. Then I highlight the parts that don't feel right and we iterate — back and forth, tightening the plan. Before implementation, I have Claude challenge its own plan to surface gaps I'm not thinking of. Once I'm satisfied, I let it ride.

2. Screenshots are worth a thousand tokens.

I remapped macOS screenshot hotkeys to save directly into a /screenshots folder in my repo (gitignored). When I'm working with Claude Code, I drop a screenshot into the conversation and we're immediately on the same page — no describing layout issues, no explaining what "that button on the right" means. A picture is worth a thousand words, and it turns out it's worth even more when your pair programmer is an AI.

3. Tests after manual verification.

I test manually first to iterate fast. Once I'm happy, Claude writes the tests to lock it in. Then /check --run-all runs the full suite before anything gets committed.

4. Continuous refactoring.

Every feature that touches existing code is a refactoring opportunity. Small improvements. Better names. Clearer abstractions. This is what keeps the codebase AI-friendly at scale. Stop refactoring and the code rots — then AI suggestions start degrading too.

Where This Is Going (and Why I'm Sharing)

The goal isn't just "solo dev ships product." It's something I find more interesting: using Flywheel to help run Flywheel.

I'm building workflows that take a first pass at the day-to-day, with me in the loop to review:

  • Support — reading incoming tickets, routing them, and drafting replies to the common ones for me to approve
  • Bug triage — spotting an edge case, reproducing it with a test, and opening a PR I can check before it merges
  • Marketing — scheduling content, tracking engagement, and helping with cross-posting

A workflow platform only really earns trust if its own author leans on it, so I'm trying to live on it. The idea is to let Flywheel carry the repetitive load so my time goes to the harder problems. It's early — plenty doesn't work yet — but that's part of why I'm building it in the open.

After 11 months of solo building, the foundation feels like it's there.

The Visual Journey

If you want to see how far the UI has come — the earliest version was a dark, flat, brutalist thing. Basic black backgrounds, no design system, functional but ugly. Today it's a polished visual workflow canvas with glass morphism, gradient provider icons, a two-level canvas architecture, and a real design system. Same codebase. Same one developer.

Key Takeaways

  1. AI multiplies your codebase quality, not just your speed. A clean, well-structured codebase gets better AI output than a messy one at any size.
  2. ~$1,200 of Claude Max is not "cheating." That's roughly $110 a month for usage that would meter at $2,500+ on API pricing. It's a new kind of labor — you still design, review, test, and ship. The tokens do the typing.
  3. Fundamentals compound. IaC, event-driven architecture, service layer patterns, CLAUDE.md context files — every investment in structure pays dividends as the codebase grows.
  4. Fresh context > long context. Even with 1M context windows, focused sessions produce better output than marathon ones.
  5. The solo dev ceiling just moved. Production code with tests, CI/CD, infra, and 14 integrations. One person. Eleven months. That wasn't possible two years ago.

What's Next

Flywheel 1.0 ships soon. Widgets turn the workflow canvas into a live operational dashboard — stats, reports, action queues alongside your pipeline cards. Then we start dogfooding hard: Flywheel workflows running Flywheel's support, development, and marketing.

If you're interested in the platform or the AI-assisted development approach: flywheeletl.io. Want to see what a real workflow looks like? The AI Marketing Worker for X is three pipelines that find reply opportunities, draft responses for human approval, and track follower growth on a live dashboard — the same worker I use to run Flywheel's own marketing. (I also built a Slack Court that puts petty team grievances on trial in a dedicated courtroom channel, complete with an AI judge — because dogfooding should be fun too.)


Has the ceiling for what one person can build actually changed? Or am I just in the honeymoon phase? Curious what others are seeing.