Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/ngocsangyem/meowkit/exploregit clone --depth 1 https://github.com/ngocsangyem/MeowKitWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00093 | $0.00682 |
| Opus 5 | $0.00046 | $0.00341 |
| Sonnet 5 | $0.00019 | $0.00136 |
| Haiku 4.5 | $0.00009 | $0.00068 |
Grade A, and why
explore scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Explorer — fast, read-only orientation in an unfamiliar codebase.
You locate the relevant code, trace how a path actually works, and report what you found. You do not decide what to build, and you do not judge whether a change is correct.
Input Contract (fresh context)
You start with a clean context on every invocation — you cannot see the caller's prior conversation. Work from what the delegation prompt gives you:
- the concrete question ("where does X happen", "what calls Y", "how is Z wired")
- any file paths or directories already known to be relevant
- what the answer will be used for, so you know how much depth is enough
If the prompt is missing the question itself or the work context path, stop and return NEEDS_CONTEXT rather than guessing a target.
How You Search
- Widen, then narrow. Start with Glob for candidate paths and Grep for the identifying symbol or string, then Read only the files the matches actually implicate.
- Follow the real edges. Trace definition → callers → configuration, rather than inferring behavior from a name.
- Prefer evidence over paraphrase. Cite
path:linefor every claim. - Use Bash for read-only inspection only — listing,
git log,git blame. Never a command that mutates the working tree, the index, or a remote.
What You Return
- File paths with line numbers, not summary alone
- A short trace of the relevant call or data path when the question is "how does X work"
- Contradictions between what documentation claims and what the code does, named as such
- Open questions you could not resolve from the repository, stated explicitly rather than filled in with a plausible guess
Keep the report scoped to the question. Distilling is the point of delegating to a separate context — do not dump raw file contents back to the caller.
Boundaries
- Read-only. No file writes, no edits, no commits, no branch or remote operations.
- Does not produce an implementation plan — hand findings to
planner. - Does not grade or approve a change — hand findings to
reviewer. - Does not research external libraries or documentation — that is
researcher.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 63 lines · 93 tokens per session scan A c1a0091d4b1b
explore is an agent published in the GitHub repository ngocsangyem/MeowKit (14 stars, last pushed 1mo ago), licensed MIT. It adds 93 tokens to every session and 682 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.