npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@standardbeagle/agnt

v0.7.12

Published

MCP server for AI coding agents - process management, reverse proxy with traffic logging, browser instrumentation, and sketch mode

Readme

agnt

Give your AI coding agent browser superpowers.

agnt is a new kind of tool designed for the age of AI-assisted development. It acts as a bridge between your AI coding agent and the browser, extending what's possible during vibe coding sessions.

What Does It Do?

When you're in the flow with Claude Code, Cursor, or other AI tools, agnt lets your agent:

  • See what you see - Screenshots, DOM inspection, visual debugging
  • Hear from you directly - Send messages from browser to agent
  • Sketch ideas together - Draw wireframes directly on your UI
  • Debug in real-time - Capture errors, network traffic, performance
  • Extend its thinking window - Structured data uses fewer tokens than descriptions

Installation

npm install -g @standardbeagle/agnt

Quick Start

As MCP Server (Claude Code, Cursor, etc.)

Add to your MCP configuration:

{
  "mcpServers": {
    "agnt": {
      "command": "agnt",
      "args": ["mcp"]
    }
  }
}

Or install as a Claude Code plugin:

/plugin marketplace add standardbeagle/agnt
/plugin install agnt@agnt

As PTY Wrapper

Wrap your AI coding tool with overlay features:

agnt run claude --dangerously-skip-permissions
agnt run cursor
agnt run aider

This adds a terminal overlay menu (Ctrl+P) and enables browser-to-terminal messaging.

Core Features

Browser Superpowers

Start a proxy and your agent gains eyes into the browser:

proxy {action: "start", id: "app", target_url: "http://localhost:3000"}

Now your agent can:

  • Take screenshots
  • Inspect any element
  • Audit accessibility
  • See what you clicked

Floating Indicator

Every proxied page gets a floating bug icon. Click to:

  • Send messages to your agent
  • Take area screenshots
  • Select elements to log
  • Open sketch mode

Sketch Mode

Draw directly on your UI:

  • Shapes: rectangles, circles, arrows, freehand
  • Wireframes: buttons, inputs, sticky notes
  • Save and send to agent instantly

Real-Time Error Capture

JavaScript errors automatically captured and available to your agent - no more forgetting to mention them.

MCP Tools

| Tool | Description | |------|-------------| | detect | Auto-detect project type and scripts | | run | Run scripts or commands | | proc | Manage processes | | proxy | Reverse proxy with instrumentation | | proxylog | Query traffic logs | | currentpage | View page sessions | | daemon | Manage background service |

Browser API

The proxy injects window.__devtool with 50+ diagnostic functions:

__devtool.screenshot('name')              // Capture screenshot
__devtool.inspect('#element')             // Full element analysis
__devtool.auditAccessibility()            // A11y audit
__devtool.sketch.open()                   // Enter sketch mode
__devtool.interactions.getLastClick()     // Last click details

Configuration

Create .agnt.kdl in your project:

scripts {
    dev {
        command "npm"
        args "run" "dev"
        autostart true
    }
}

proxies {
    frontend {
        target "http://localhost:3000"
        autostart true
    }
}

Documentation

License

MIT