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

推荐订阅源

月光博客
月光博客
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
量子位
小众软件
小众软件
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
G
Google Developers Blog
博客园 - 叶小钗
H
Help Net Security
Jina AI
Jina AI
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News

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 we went from no-code agents to no-prompt agents
Hanan Amar · 2026-06-24 · via DEV Community

When we started Reach, the plan was simple. We had a bunch of small businesses we were already in touch with - real SMBs, the kind that live on WhatsApp and don't have a "tech team." We'd give each of them an AI agent that talks to their customers, hand them a clean starter template for the instructions, and let them tweak it from there.

That was the whole bet: give people a good starting prompt and a template, and they'll play along.

We were so wrong it's almost funny now.

The part nobody warns you about

Here's the thing about prompt engineering that you only learn by watching non-technical people try to do it: writing the instructions is not the hard part. The hard part is thinking about the task in the abstract.

We'd hand a business owner an agent that mostly worked, and say "just adjust the instructions when it gets something wrong." Sounds easy. It is not. Sitting down and imagining all the ways a conversation could go, then writing rules for a machine to follow - that's a skill. It's basically a job. And it's a completely different job from running a flower shop or a real estate office.

So they got stuck. They'd open the instructions editor, stare at it, and close it. The agent stayed mediocre because the iteration loop we designed required them to be part-time prompt engineers. A few of them just quietly left.

That stung, but it taught us the actual problem.

What "iteration" actually looked like

We started doing the iterations for them, manually. And once we did that a few dozen times, a pattern jumped out.

The feedback never led to an abstract change. It was never something that made us "rethink the agent's persona" or "restructure the system prompt." It was tiny, concrete, and tied to a real conversation:

  • "It suggests all of our services, but honestly most customers only care about these three - push those."
  • "It pulled our opening hours from the website and they're just wrong. We changed them months ago."

These were one-line corrections. The owner knew exactly what was wrong the moment they saw a real conversation. They just had no idea how to turn that into a prompt edit, and frankly, they shouldn't have to.

That's when it clicked: the customer doesn't need a prompt editor. The customer needs to point at a real conversation and say "this - fix this."

The "no-prompt" pipeline

So we flipped the whole thing. Instead of asking people to imagine use cases (hard) and write instructions (also hard), we built the loop around something they're already good at: reacting to a conversation that actually happened.

The flow looks like this:

  1. The owner reads a real, existing conversation between their agent and a customer. No hypotheticals. No "imagine if someone asked X."
  2. They drop a plain-language comment on it - "don't recommend this service," "the hours are wrong," "be warmer at the start."
  3. That comment goes into a processing pipeline. It doesn't just get appended as a memory. It runs through guardrails so it won't contradict existing instructions, pulls the relevant references from the knowledge base so the change stays consistent with what's already there, and resolves conflicts.
  4. Then it updates the system prompt and the knowledge base accordingly.

The key design decision was upstream of all the engineering: the agent's job is not to be a human. Its job is to answer the repetitive, known stuff instantly and hand off everything else to an actual person. Once we stopped trying to make the agent do a human's job, the feedback got simpler too - because we were only ever correcting the boring, repeatable parts.

Removing the prompt box

The strange ending to this story: a month or so into running that pipeline, we looked at our own product and realized the system prompt editor - the thing we'd built the entire platform around - was dead weight. Nobody needed it. Every meaningful improvement was now coming through conversation feedback, not through someone editing raw instructions.

So we removed it from the UI.

It's a weird feeling to watch the core of your product become obsolete in a single month, by your own hand. But that's kind of the whole experience of building in this era - the ground keeps moving, and sometimes the best thing you can do is delete the feature you were most proud of, because the model and the workflow around it made it unnecessary.

If you're building agent tooling for non-technical users, my honest advice: stop trying to teach them to prompt. Build the loop around the artifact they already understand - a real conversation - and let the system do the translation.


We're building this at Kindway. The agent platform is Reach - AI agents for SMBs on WhatsApp, Instagram, and beyond. Happy to talk shop in the comments.