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

推荐订阅源

Last Week in AI
Last Week in AI
D
DataBreaches.Net
腾讯CDC
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
月光博客
月光博客
MyScale Blog
MyScale Blog
U
Unit 42
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
G
Google Developers Blog
博客园 - 【当耐特】
D
Docker
I
InfoQ
雷峰网
雷峰网

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
5 lessons from 5 interviews on AI agents and web scraping
Neha Setia · 2026-06-23 · via DEV Community

Over the last few months, I’ve been interviewing people at Zyte about AI, agents, web scraping, data quality, and what actually changes when LLMs enter developer workflows.

These were not abstract “AI will change everything” conversations. They were grounded in the daily work of people building and maintaining scraping systems, QA workflows, AI-assisted developer tools, and agentic infrastructure.

Five conversations stayed with me:

  • Adrian Chaves on Web Scraping Copilot and AI-generated scraping code
  • Julia Medina and Mihaela Popova on how LLMs changed their day-to-day development work
  • Javier on why AI feels like superpowers only when you already have judgment
  • Tomasz Lesiak on why AI cannot fix data quality until you define what “good” means
  • Konstantin Lopukhin on agent skills, scraping, and why the best skill often says the least

Here are the five lessons I’m taking from them.

1. Simpler code is usually better scraping code

In my interview with Adrian Chaves, we talked about what “correct” AI-generated scraping code actually means.

The obvious answer is: it extracts the right data.

But Adrian added a second standard that I keep coming back to: the code also has to be simple.

That matters because web scraping is not the kind of software where you write code once and forget about it. Websites change. Layouts move. Fields disappear. New variants appear. Pagination breaks. A selector that worked last month may quietly fail next month.

AI-generated code can easily become too defensive. It tries to handle every possible future case, and the result is often harder for a human to read, debug, and maintain.

The better standard is not “write code that imagines every future website change.”

It is:

Write the simplest code that gets the right value now, and surround it with tests and breakage detection.

That feels especially important in an AI-assisted workflow. If an agent generates a spider, the human still needs to understand what it produced. Maintainability is not a nice-to-have. It is part of correctness.

2. Developers are moving from coding-first to design-first

In my conversation with Julia Medina and Mihaela Popova, both described a similar shift in how they work with LLMs.

The work is less about typing every line yourself and more about deciding what should exist.

That sounds small. It is not.

When an AI assistant can generate code, the developer’s leverage moves upstream:

  • What are we trying to build?
  • What should the finished output look like?
  • What examples should the agent learn from?
  • What schema defines success?
  • What tests will tell us the output is wrong?
  • What should we not automate yet?

Julia described Web Scraping Copilot as a test-driven loop: give it a schema, create fixtures, generate expected output, write extraction code, run the tests, and iterate when the output is wrong.

Mihaela described LLMs inside production scraping workflows, where the question is not just “can the model extract this?” but where in the pipeline LLM judgment is actually useful.

That is the real shift I heard: developers are not disappearing. They are moving into design, evaluation, review, and system boundaries.

When agents can produce more code, the human job becomes more about defining what good looks like.

3. AI multiplies judgment. It does not replace it.

Javier described his experience with a line I loved:

“I have superpowers now.”

But the interesting part was what those superpowers were made of.

Not magic. Not blind delegation. Not “the AI knows everything now.”

His superpower was years of engineering judgment moving faster.

He uses AI to discuss approaches, document decisions, preserve context, and accelerate tedious parts of the work. But the quality still comes from knowing what is good, what is risky, what deserves skepticism, and when the assistant is simply being too agreeable.

That distinction matters.

A junior developer and a senior developer can use the same AI tool and get very different results. The difference is not only prompt quality. It is taste, context, pattern recognition, and the ability to evaluate the answer.

AI can compress the time between idea and artifact. But it does not remove the need to know whether the artifact is any good.

If anything, it makes that judgment more visible.

4. Data quality begins before AI enters the workflow

My conversation with Tomasz Lesiak was a useful antidote to AI abstraction.

Before asking whether AI can fix data quality, he brought the problem back to three questions:

  • Did we catch every item?
  • Did we fill every required field?
  • Is the information actually correct?

Every QA process, whether manual, automated, or AI-assisted, is trying to answer some version of those questions.

This is easy to forget because AI can make messy output look polished. It can summarize incomplete data. It can normalize wrong values. It can make a broken extraction feel more usable than it is.

But if the crawl missed 40% of the products, a beautiful summary does not help.

If the price belongs to the wrong product, valid JSON does not help.

If a required field is empty even though the website had the information, the workflow failed.

So before AI enters the quality process, the team still needs a schema, field definitions, expected outputs, manual review, and tests. LLMs can help with fields that are hard to check using regex or simple rules, but they cannot define “good data” on behalf of the project.

That definition has to come first.

5. The best agent skill does not over-explain

The fifth conversation, with Konstantin Lopukhin, helped me name something I had been noticing in agentic workflows.

A good skill is not the longest possible instruction manual.

In fact, too much instruction can make an agent worse. If you tell it exactly what path to follow in every case, it may miss the simpler and more reliable answer sitting in front of it.

For web scraping, that matters a lot.

A general-purpose coding agent may try to scrape visible HTML when the page has a clean embedded API. It may use curl and get blocked. It may pick the first visible price without checking whether it belongs to the right product. It may produce a one-time answer when the user actually needs a repeatable spider.

A useful scraping skill gives the agent the domain knowledge it needs:

  • access is part of the problem
  • the least fragile data source is usually best
  • structured output must be checked
  • tests matter
  • evaluation stays foundational
  • repeatability matters more than a one-off answer

But it should not over-script the agent into brittle behavior.

The best skill says enough to prevent obvious mistakes, but not so much that it prevents good judgment.

The pattern across all five

The pattern I keep seeing is this:

AI is not making web scraping less human.

It is moving the human work.

From typing to designing.

From scraping once to building loops.

From code generation to evaluation.

From “can the agent do it?” to “can we trust the system?”

That is the thread I want to keep following.

Because the future of web scraping is not just agents that scrape.

It is developers designing reliable web-data systems where agents, tools, infrastructure, tests, and human judgment all know their place.

Links