Lovable's Vent Tool: When the Agent Reports Its Own Bugs

    Lovable's Vent Tool: When the Agent Reports Its Own Bugs

    23. Mai 2026Updated: May 26, 20262 min read
    Till Freitag

    TL;DR: „Lovable runs two automated learning loops: (1) Lovable Stack Overflow (LSO) – a curated knowledge base from which a classifier injects relevant solutions into the agent's context. (2) Vent Tool – the agent actively posts frustration to Slack, a debug agent turns those into PRs. About 20% of vents are actionable, ~10 fixes get merged per day with no human writing code."

    — Till Freitag

    Why this matters – even if you're not Lovable

    In May Lovable introduced two loops that continuously improve their agent without a human in the middle. This isn't just a Lovable story. It's a blueprint for any team running their own agents in production.

    For us as AI First Builders this is highly relevant: we increasingly build agents for clients in monday, Make and custom stacks. The question "how does the agent get better over time without us hand-debugging every issue?" now has an operational answer.

    The two loops

    Loop 1: Lovable Stack Overflow (LSO)

    The agent has a curated knowledge base – not a human wiki, but a lookup for itself. Each entry has two parts:

    description: |
      Fix React errors from duplicate React copies in the bundle
      (null hook errors, "render2 is not a function", blank screens).
    knowledge: |
      Multiple React copies break hooks. Fix with `resolve.dedupe` in
      vite.config.ts. Downgrade react-leaflet to v4, use framer-motion v11+.
      Diagnose with `npm ls react`.

    Before every prompt execution a lightweight classifier checks: does any entry match the current situation? If yes, the solution is injected into context. If no, zero overhead.

    Result: 5% lower stuck rate, 2% higher publish rate – without added latency.

    Three transferable learnings:

    1. Knowledge ages. Lovable randomly drops entries and A/B-tests whether they still help. Skip this and your stack overflow poisons itself.
    2. Failure modes are model-specific. Every model switch needs recalibration.
    3. Synthesize, don't dump. Inject 5 precise lines, not the whole doc. Tokens are expensive.

    Loop 2: The Vent Tool

    The second loop is the more spectacular one: the agent can post its frustration via tool call directly into Slack. A second debug agent monitors the channel and auto-PRs the actionable ones.

    Numbers from the Lovable post:

    • ~20% of vents are actionable
    • ~10 merged fixes per day, with no human writing code
    • Auto-PR false-positive rate: ~50% (fine, triage is cheap)
    • No measurable impact on cost, latency or output quality

    The most important technical trick: they pulled the explicit eligibility criteria back out of the system prompt and worked with a few examples instead. Model judgment + examples beat every rubric.

    What we take away

    Three patterns we adapt in our own projects:

    Pattern Adaptation
    Knowledge injection over system prompt bloat For monday agents: small, situationally injected snippets instead of 8K-token prompts
    Stuck detection via LLM judge External judge on conversations, not the agent itself
    Agent telemetry as a feedback channel A tool call that posts into internal Slack – not logs nobody reads

    Where this fits our anti-McKinsey lens

    The classic consulting approach would be: "We'll run a quarterly agent-performance review, identify improvement areas, prioritize in a workshop."

    The Lovable approach is the opposite: 10 fixes per day, automatically, no workshop. That's exactly the builder approach – small loops, high frequency, compounding effect.

    Further reading

    TeilenLinkedInWhatsAppE-Mail

    Related Articles

    From GPT Engineer to Today: The Complete Lovable Journey in 6 ThesesDeep Dive
    May 27, 20269 min

    From GPT Engineer to Today: The Complete Lovable Journey in 6 Theses

    From the GPT Engineer repo in June 2023, through the Lovable launch in late 2024, to Beyond Apps, Skills, Mobile, Vent T…

    Read more
    May 27, 20264 min

    Lovable Subagents: Parallel Research, One Orchestrating Head Agent

    Lovable introduces subagents: read-only helpers that explore your codebase and the web in parallel, each with its own co…

    Read more
    Lovable Now Connects to Google Workspace and Gemini Enterprise
    May 22, 20262 min

    Lovable Now Connects to Google Workspace and Gemini Enterprise

    Gmail, Calendar, Drive, Sheets, Slides, Maps Platform, BigQuery and Gemini Enterprise – Lovable now builds apps on the d…

    Read more
    Lovable Mobile App: Vibe Coding Straight From Your Phone
    April 28, 20262 min

    Lovable Mobile App: Vibe Coding Straight From Your Phone

    The Lovable mobile app is live – iOS and Android. Queue prompts on the go, get a push notification when the build is don…

    Read more
    Claude Opus 4.7 Is Here: What Premium Teams Need to Know About the Tokenizer, xhigh, and Spend Controls
    April 17, 20265 min

    Claude Opus 4.7 Is Here: What Premium Teams Need to Know About the Tokenizer, xhigh, and Spend Controls

    Anthropic just released Claude Opus 4.7. Same price as 4.6, but noticeably better at coding, agents, and visual output. …

    Read more
    Lovable AI workspace with documents, data analysis and video generation
    March 19, 20263 min

    Lovable Now Does More Than Build Apps – Documents, Data Analysis, Videos & More

    Lovable is no longer just an app builder. The platform now analyzes data, creates pitch decks, generates videos and proc…

    Read more
    Lovable Skills: Repetition Turns Into Reusable Playbooks
    May 19, 20264 min

    Lovable Skills: Repetition Turns Into Reusable Playbooks

    Lovable just rolled out Skills – Anthropic's format for reusable agent instructions. What Skills are, how they differ fr…

    Read more
    Chess pieces as a metaphor for the platform conflict between Anthropic and Lovable
    April 14, 20263 min

    Anthropic Is Building an App Builder – And It's Coming for Europe's Vibe-Coding Star Lovable

    Leaked screenshots reveal an integrated app builder inside Claude. What this means for Lovable, the European startup eco…

    Read more
    Cambrian explosion of vibe coding tools – many tools, six categories
    April 8, 20267 min

    The Vibe Coding Explosion: 138 Tools – and Why Only 7 Categories Matter

    138+ vibe coding tools on the market – and more every week. We sort the chaos into 7 categories and analyze which ones w…

    Read more