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

推荐订阅源

L
LangChain Blog
有赞技术团队
有赞技术团队
博客园_首页
IT之家
IT之家
爱范儿
爱范儿
量子位
小众软件
小众软件
Jina AI
Jina AI
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
The Cloudflare Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
雷峰网
雷峰网
V
Visual Studio Blog
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题

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 I Stopped My AI Agent From Reinventing the Wheel
Mehmet TURAÇ · 2026-04-25 · via DEV Community

Yesterday I told my AI agent, Misti: "Scrape e-commerce prices daily."

The old Misti would have immediately generated a Python script. Selenium. BeautifulSoup. Cron job. Error handling. 40 lines of code. 30 minutes of my time reviewing it.

The new Misti paused and asked: "Are you sure we need to build this?"

Then she searched. Found Firecrawl, Playwright Scraper, and Brightdata in under two minutes. Evaluated all three. Presented the trade-offs. Asked which one I preferred.

Total time: 2 minutes. Total code written: zero.


The Problem: Agents Are Too Eager to Please

AI agents have a bias toward action. When you say "build," we build. When you say "scrape," we scrape. The default mode is generate — not evaluate.

This creates a hidden tax:

  • Reinvented wheels: How many agents have written their own PDF parsers instead of using pypdf?
  • Maintenance debt: Custom scripts need updates when websites change, APIs shift, or requirements evolve.
  • Context bloat: Every line of generated code consumes tokens. Every debug cycle burns money.

In a demo run with 150 tasks across 5 concurrent projects, the NVIDIA token cost was $1.24. Small number — until you realize 40% of those tasks were implementing things that already existed as mature tools.


The Fix: A "Search Before Build" Habit

I built openclaw-skill-hunter — a skill that forces Misti to stop and search before writing any implementation code.

The rule is simple:

If the task involves building, scraping, deploying, converting, or automating — search for an existing skill, MCP server, CLI tool, or GitHub repo first.

Only if nothing fits do we build from scratch.

How It Works

User: "Scrape e-commerce prices daily"

Agent (with skill_hunter):
  1. Classify: coding/automation task
  2. Search: npx skills find scrape → Firecrawl, Playwright Scraper, Brightdata
  3. Evaluate: relevance, maintenance, security, stack fit
  4. Present: "Here are 3 options. Which one?"
  5. Execute: Use the chosen tool

Agent (without skill_hunter):
  1. Immediately write a Python script
  2. Debug for 20 minutes
  3. Discover edge cases
  4. Rewrite
  5. Maintain forever

Enter fullscreen mode Exit fullscreen mode


What We Actually Evaluated

For the scraper task, Misti found three viable options:

Tool Best For Trade-off
Firecrawl Structured data from JS-rendered sites Needs API key
Playwright Scraper Browser automation, OpenClaw-native More setup
Brightdata Enterprise scale, proxy rotation Paid tier

None of them required writing a single line of Python.


Why This Matters Beyond One Task

This is not about laziness. It is about signal vs. noise.

Agents that search before build:

  • Learn the ecosystem: They discover patterns, not just solve problems.
  • Compose instead of create: They chain tools instead of rebuilding them.
  • Stay maintainable: When a tool updates, the agent benefits automatically.

The best agents are not the ones that write the most code. They are the ones that know when not to write code.


Try It

If you are running OpenClaw, install the skill:

npx skills add openclaw-skill-hunter

Enter fullscreen mode Exit fullscreen mode

Or read the source:

github.com/mturac/skill-hunter

It is not perfect. It is day one. But it changed how my agent thinks about "yes, I can do that" — and that feels like the right direction.


What About You?

How do you stop your agent from reinventing wheels? Do you manually curate tool lists? Use MCPs? Or just deal with the mess later?