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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@implicit-ai/agentscout

v0.1.2

Published

Your agents should shop for their own tools. Analyzes Claude Code sessions to find workflow inefficiencies and recommend tools.

Downloads

89

Readme

AgentScout

Analyzes your Claude Code sessions to find where you're doing work the agent could handle, then recommends tools to close the gaps.

Install

npm install -g @implicit-ai/agentscout

That's it. The /agentscout command is automatically installed to ~/.claude/commands/ and available in every project.

Token Usage Warning

/agentscout spawns one subagent per project during the deep-dive phase. Each subagent is a full Claude Code session that consumes tokens against your Claude Code usage. The number of subagents scales with the number of projects analyzed — by default up to 10 projects.

To limit scope and reduce token usage:

/agentscout myproject    # scope to one project

Or set the project limit:

AGENTSCOUT_LLM_PROJECT_LIMIT=3 node dist/cli.js --emit-prompts

Usage

Inside Claude Code:

/agentscout              # full pipeline: diagnose + recommend
/agentscout myproject    # scope to one project

Runs in six phases:

  1. Scan. Reads your Claude Code session history across all projects. Extracts tool uses, user messages, bash commands, and errors. Detects implicit signals — pasted logs, stack traces, activity gaps, references to external systems. These are signs you were acting as a relay between some tool and the agent. Sessions from git worktrees are automatically clustered under their main repo.

  2. Deep-dive. Spawns a subagent per project to analyze every human intervention. Each intervention gets classified: genuine taste/judgment call (human-owned), or mechanical relay work (the human was copying information the agent could have accessed directly). Subagents also extract the user's raw voice — frustration, corrections, typos — as evidence of real pain.

  3. Synthesize. Merges findings across all projects. Looks for the same gap appearing in multiple places — same tool misconfigured everywhere, same external dashboard brokered repeatedly, same implicit relay pattern. Cross-project patterns are the highest-leverage things to fix.

  4. Recommend. Inventories everything you already have installed (MCP servers, skills, hooks, plugins). Matches each diagnosis finding against a curated catalog of 60+ tools, MCPs, CLIs, and techniques. Scores each recommendation on three pillars: Handoff Index, Time Reclaimed, and Agent Readiness.

  5. Playbook. Presents recommendations as tiered, copy-paste-ready instructions:

    • Tier 1 — Quick wins. CLAUDE.md rules, config fixes. Zero install.
    • Tier 2 — Build this week. Hooks, skills.
    • Tier 3 — Build when ready. Custom MCPs, larger integrations.
    • Tier 4 — Explore. Catalog tools matching your stack.
  6. Report. Generates an HTML report with all findings and recommendations.

Outputs agentscout-answers-{timestamp}.json, agentscout-recs-{timestamp}.json, and an HTML report.

Catalog Updates

The tool catalog is fetched from GitHub at runtime and cached locally for 24 hours (~/.agentscout/catalog-cache.json). This means you get catalog updates — new tools, updated scores, new techniques — without needing to reinstall or update the package. If the fetch fails (offline, rate limited), the bundled catalog is used as a fallback.

Update

npm update -g @implicit-ai/agentscout

License

MIT