@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
Maintainers
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/agentscoutThat'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 projectOr set the project limit:
AGENTSCOUT_LLM_PROJECT_LIMIT=3 node dist/cli.js --emit-promptsUsage
Inside Claude Code:
/agentscout # full pipeline: diagnose + recommend
/agentscout myproject # scope to one projectRuns in six phases:
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.
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.
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.
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.
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.
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/agentscoutLicense
MIT
