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

推荐订阅源

博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Vercel News
Vercel News
H
Help Net Security
Martin Fowler
Martin Fowler
美团技术团队
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
小众软件
小众软件
T
Tailwind CSS Blog
WordPress大学
WordPress大学

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
How a 9-Person Startup Replaced Its Dev Team With AI
Patrick Hugh · 2026-05-04 · via DEV Community

The Wall Street Journal ran a piece yesterday on JustPaid, a 9-person Mountain View startup. They used OpenClaw and Claude Code to stand up seven AI agents that write code, review it, and run QA around the clock.

In one month: 10 major features shipped. Each one would have taken a human engineer a month or more.

This story is getting passed around as proof that the autonomous engineering team is here. It is. But the detail everyone skips is the one that actually matters if you are trying to build this.

The $4,000 Week

When JustPaid's CTO first spun up Claude Code and OpenClaw together, the weekly bill came in at $4,000. That's $16,000 a month on tokens alone.

After tuning — switching to a smaller model for appropriate tasks, tightening context windows, reducing unnecessary agent calls — they brought it to $10,000-$15,000 per month.

That is still a real number. A mid-level San Francisco engineer costs roughly $15,000-$20,000 per month fully loaded. The math can work. But only if you manage token spend deliberately. Left unmanaged, multi-agent systems get expensive fast.

I have seen this firsthand. Agents running background tasks compound costs in ways that are invisible until the API invoice arrives. A single agent loop making 50 tool calls per task, running 100 tasks per day, burns tokens fast. You find out at month end.

What OpenClaw Actually Is

The WSJ piece describes OpenClaw as the brain and Claude Code as the hands. Useful frame.

OpenClaw is an open-source agent orchestration system. It handles task planning, agent spawning, subagent delegation, and file access. Claude Code handles the actual coding execution. Neither one alone does what JustPaid built. The architecture is the combination.

This is the multi-agent pattern: a coordinator model that plans and delegates, specialist agents that execute, and a review layer that checks work before it commits. JustPaid's seven agents each have defined roles: writer, reviewer, QA. That is exactly the right structure.

Single agents doing everything fail in predictable ways. Specialized agents with defined scope fail less often and are easier to debug when they do.

The Supervision Problem

Tatyana Mamut from Wayfound put it directly in the article. Agents left to their own devices to make decisions need to be supervised all the time.

She is right. The JustPaid story is compelling, but it is a 9-person startup where the CTO built the system himself and knows exactly what it is doing. He is the supervisor.

At larger organizations, that supervision layer does not exist by default. Agents access files, write code, send messages, interact with external APIs without anyone reviewing every action. That is where things go wrong.

The Kuse example in the same article is interesting. Their AI agents have their own Slack and Gmail identities, speak in Zoom calls, and proactively start work. More ambitious deployment. Larger attack surface. An agent with its own email and calendar is an agent that can be manipulated through the content it reads — which is the prompt injection problem covered in a post earlier this week.

What This Means If You Are Building One

The JustPaid architecture is a specific set of decisions, not magic.

Clear agent roles. Writer, reviewer, and QA are distinct jobs. Do not build one agent that tries to do all three.

Model selection by task. The CTO did not run everything on the most expensive model. He ran the right model for each task. Code review needs less capacity than initial architecture planning. QA passes can use a smaller model still.

Cost enforcement at the infrastructure level. Setting a mental budget does not stop an agent from blowing past it at 2am on Saturday. AgentGuard enforces budget and token limits at runtime. The agent gets stopped before the damage compounds, not after the invoice arrives. Install it with pip install agentguard.

Humans on high-judgment work. JustPaid's human engineers handle customer requests and priority decisions. Agents handle execution. That is the right division. Agents are fast and consistent at well-defined tasks. Humans are better at ambiguous, high-stakes calls.

The Real Story

The WSJ frames this as AI replacing developers. More accurate frame: one engineer with the right agent stack can do what used to require a team.

JustPaid has nine employees. One of them built and manages a system that ships software around the clock. That is the actual story.

This is how small teams compete with larger ones. Not by hiring faster, but by building systems that multiply output.

If you are wondering whether this applies to your workflows, the async audit is the fastest way to find out. Written deliverable, no meetings, 48-hour turnaround.

Start here