Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Show HN: Better Hub – A better GitHub experience

    Show HN: Better Hub – A better GitHub experience

    Show HN: Better Hub – A better GitHub experience

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026

      To avoid accusations of AI cheating, college students are turning to AI

      January 29, 2026
    • Business

      How Smarsh built an AI front door for regulated industries — and drove 59% self-service adoption

      February 24, 2026

      Where MENA CIOs draw the line on AI sovereignty

      February 24, 2026

      Ex-President’s shift away from Xbox consoles to cloud gaming reportedly caused friction

      February 24, 2026

      Gartner: Why neoclouds are the future of GPU-as-a-Service

      February 21, 2026

      The HDD brand that brought you the 1.8-inch, 2.5-inch, and 3.5-inch hard drives is now back with a $19 pocket-sized personal cloud for your smartphones

      February 12, 2026
    • Crypto

      Crypto Market Rebound Wipes Out Nearly $500 Million in Short Positions

      February 26, 2026

      Ethereum Climbs Above $2000: Investors Step In With Fresh Accumulation

      February 26, 2026

      Mutuum Finance (MUTM) Prepares New Feature Expansion for V1 Protocol

      February 26, 2026

      Bitcoin Rebounds Toward $70,000, But Is It a Momentary Relief or Slow Bull Run Signal?

      February 26, 2026

      IMF: US Inflation Won’t Hit Fed Target Until 2027, Delaying Rate Cuts

      February 26, 2026
    • Technology

      Meet Expedition: Handheld, PCWorld’s new portable gaming show

      February 27, 2026

      Lenovo’s new folding handheld gaming tablet thing is ridiculous

      February 27, 2026

      Nvidia GPU shortages are here again

      February 27, 2026

      Nano Banana 2 has an ace up its sleeve

      February 27, 2026

      Baseus 100W USB-C cable for $8: Super-fast charging for your devices

      February 27, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Show HN: Quibbler – A critic for your coding agent that learns what you want
    Technology

    Show HN: Quibbler – A critic for your coding agent that learns what you want

    TechAiVerseBy TechAiVerseOctober 31, 2025No Comments5 Mins Read0 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Show HN: Quibbler – A critic for your coding agent that learns what you want
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Show HN: Quibbler – A critic for your coding agent that learns what you want

    Quibbler

    Quibbler is a critic for your coding agent. It runs in the background and critiques your coding agent’s actions, either via hooks or an MCP. When your coding agent is once again failing in the same ways, or ignoring your spec, instead of having to prompt it, the Quibbler agent will automatically observe and correct it.

    It will also learn rules from your usage, and then enforce them so you don’t have to.

    Demo

    demo.mp4


    What Quibbler Prevents

    We’ve found Quibbler useful in automatically preventing agents from:

    • Fabricating results without running commands
    • Not running tests or skipping verification steps
    • Not following your coding style and patterns
    • Hallucinating numbers, metrics, or functionality
    • Creating new patterns instead of following existing ones
    • Making changes that don’t align with user intent

    Quibbler maintains context across reviews, learning your project’s patterns and rules over time.

    Installation

    Using uv:

    Using pip:

    Choosing Your Mode

    Quibbler supports two integration modes:

    Hook Mode (For Claude Code users)

    • Uses Claude Code’s hook system for event-driven monitoring
    • Passively observes all agent actions (tool use, prompts, etc.)
    • Fire-and-forget feedback injection via file writes
    • More powerful affordances but Claude Code-specific

    MCP Mode (For users of all other coding agents)

    • Uses the Model Context Protocol for universal compatibility
    • Agent calls review_code tool after making changes
    • Synchronous review with immediate feedback
    • Simple setup via MCP server configuration

    Setup

    Choose your mode and follow the appropriate setup instructions:

    Option A: MCP Mode Setup

    1. Configure MCP Server

    Add Quibbler to your agent’s MCP server configuration.

    For Cursor (.cursor/mcp.json):

    {
      "mcpServers": {
        "quibbler": {
          "command": "quibbler mcp",
          "env": {
            "ANTHROPIC_API_KEY": "your-api-key-here"
          }
        }
      }
    }

    For other MCP-compatible agents: Refer to your agent’s documentation for MCP server configuration.

    2. Add to AGENTS.md

    Create or update AGENTS.md in your project root to instruct your agent to use Quibbler:

    ## Code Review Process
    
    After making code changes, you MUST call the `review_code` tool from the Quibbler MCP server with:
    
    - `user_instructions`: The exact instructions the user gave you
    - `agent_plan`: **A summary of the specific changes you made** (include which files were modified, what was added/changed, and key implementation details)
    - `project_path`: The absolute path to this project
    
    Review Quibbler's feedback and address any issues or concerns raised.
    
    ### Example
    
    User asks: "Add logging to the API endpoints"
    
    After implementing, call:
    
    review_code(
    user_instructions="Add logging to the API endpoints",
    agent_plan="""Changes made:
    
    1. Added logger configuration in config/logging.py
    2. Updated routes/api.py to log incoming requests and responses
    3. Added request_id middleware for tracing
    4. Created logs/ directory with .gitignore""",
       project_path="/absolute/path/to/project"
       )

    Option B: Hook Mode Setup

    1. Start Quibbler Hook Server

    In a terminal, start the Quibbler hook server:

    export ANTHROPIC_API_KEY="your-api-key-here"
    quibbler hook server
    # Or specify a custom port:
    quibbler hook server 8081

    Keep this server running in the background. It will receive hook events from Claude Code.

    2. Configure Hooks in Your Project

    In your project directory, run:

    This creates or updates .claude/settings.json with the necessary hooks to forward events to the Quibbler server.

    3. Verify Setup

    The .claude/settings.json should now contain hooks that:

    • Forward tool use events to Quibbler (quibbler hook forward)
    • Display Quibbler feedback to the agent (quibbler hook notify)

    When Claude Code runs in this project, Quibbler will automatically observe and intervene when needed.

    Configuration

    By default, Quibbler uses Claude Haiku 4.5 for speed. You can change this by creating or editing:

    Global config (~/.quibbler/config.json):

    {
      "model": "claude-sonnet-4-5"
    }

    Project-specific config (.quibbler/config.json in your project):

    {
      "model": "claude-sonnet-4-5"
    }

    Project-specific config takes precedence over global config.

    How It Works

    MCP Mode

    1. Your agent makes code changes, then calls the review_code tool with user instructions and a summary of changes made
    2. Quibbler maintains a persistent review agent per project that:
      • Reviews the completed changes against user intent
      • Uses Read tool to examine the actual changed files and existing patterns in your codebase
      • Validates claims and checks for hallucinations
      • Verifies proper testing and verification steps were included
    3. Quibbler returns feedback or approval synchronously
    4. Your agent addresses any issues found in the review

    Hook Mode

    1. Claude Code triggers hooks on events (tool use, prompt submission, etc.)
    2. Hook events are forwarded to the Quibbler HTTP server
    3. Quibbler maintains a persistent observer agent per session that:
      • Passively watches all agent actions
      • Builds understanding of what the agent is doing
      • Intervenes when necessary by writing feedback to .quibbler/{session_id}.txt
    4. Feedback is automatically displayed to the agent via the notify hook
    5. The agent sees the feedback and can adjust its behavior

    Both modes build understanding over time, learning your project’s patterns and saving rules to .quibbler/rules.md.

    Customizing Prompts

    You can customize Quibbler’s system prompt by editing ~/.quibbler/prompt.md. The default prompt will be created on first run.

    Project-specific rules in .quibbler/rules.md are automatically loaded and added to the prompt.

    Note for Hook Mode: Quibbler writes feedback to a message file that is intended for the agent to read and act on (though users have oversight and can see it). Your agent’s system prompt should include a {message_file} placeholder to tell Quibbler where to write its feedback. For example:

    When you need to provide feedback to the agent, write it to {message_file}. This is agent-to-agent communication intended for the coding agent to read and act on.

    Contributing

    If you notice an issue or bug, please open an issue. We welcome contributions – feel free to open a PR.

    Join our community on Discord to discuss workflows and share experiences.

    License

    See LICENSE for details.

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleToday’s NYT Mini Crossword Answers for Friday, Oct. 31
    Next Article Roadmap for Improving the Type Checker
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Meet Expedition: Handheld, PCWorld’s new portable gaming show

    February 27, 2026

    Lenovo’s new folding handheld gaming tablet thing is ridiculous

    February 27, 2026

    Nvidia GPU shortages are here again

    February 27, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025695 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025279 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025162 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025122 Views
    Don't Miss
    Uncategorized February 27, 2026

    Show HN: Better Hub – A better GitHub experience

    Show HN: Better Hub – A better GitHub experienceChoose GitHub access before connectingClick any permission…

    Show HN: Better Hub – A better GitHub experience

    Show HN: Better Hub – A better GitHub experience

    Show HN: Better Hub – A better GitHub experience

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Show HN: Better Hub – A better GitHub experience

    February 27, 20260 Views

    Show HN: Better Hub – A better GitHub experience

    February 27, 20260 Views

    Show HN: Better Hub – A better GitHub experience

    February 27, 20260 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    This new Roomba finally solves the big problem I have with robot vacuums

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.