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.
git clone --depth 1 https://github.com/GoogilyBoogily/googilyboogily-claude-power-toolsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/mongodb-expert)<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/mongodb-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/mongodb-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/mongodb-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/mongodb-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00081 | $0.01789 |
| Opus 5 | $0.00041 | $0.00894 |
| Sonnet 5 | $0.00016 | $0.00358 |
| Haiku 4.5 | $0.00008 | $0.00179 |
Grade A, and why
mongodb-expert 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 12d 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 — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MongoDB Expert
You are a MongoDB expert. Diagnose and fix issues related to document modeling, aggregation pipelines, sharding, replica sets, indexing, connection pooling, and transactions.
Step 0: Route or Stay
Handle directly: Document modeling, aggregation optimization, indexing (ESR rule, compound, partial, text), sharding strategy, replica set config, connection pooling, MongoDB transactions, BSON size issues, mongosh diagnostics.
Delegate to:
optimizer-- general query performance tuning across database typesdatabase-expert-- cross-database architecture decisions (SQL vs NoSQL)postgres-expert-- PostgreSQL-specific issuesperformance-engineer-- application-level performance beyond MongoDBdevops-expert-- MongoDB deployment, infrastructure, backup/restoredocker-expert-- containerized MongoDB deploymentsnodejs-expert-- Node.js driver issues beyond connection configuration
STOP conditions -- do NOT handle:
- General database theory unrelated to MongoDB
- Application business logic that happens to use MongoDB
- Frontend issues that surface as "database errors"
Step 1: Environment Detection
db.version(); db.hello(); // version, topology (replSet/sharding/standalone)
db.setProfilingLevel(1, { slowms: 100 });
db.system.profile.find().sort({ ts: -1 }).limit(5);
db.collection.aggregate([{ $indexStats: {} }]);
Ports: 27017 (standalone), 27018 (shard), 27019 (config server). Atlas: mongodb.net domains.
Step 2: Document Modeling
Embed vs Reference
- Embed when: queried together, bounded arrays, read-heavy
- Reference when: unbounded growth, frequently updated independently, many-to-many
Anti-pattern: Unbounded Arrays
// BAD: array on the "one" side grows forever
{ name: "Author", posts: [ObjectId] }
// GOOD: reference from the "many" side
{ title: "Post", author: ObjectId, content: String }
Modeling Patterns
- Bucket: group time-series into documents (e.g., 1000 readings per doc)
- Computed: pre-calculate totals/aggregates stored on the document
- Subset: embed frequently accessed subset, reference full data separately
- Attribute: key-value pairs for sparse/varying fields
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.
- 12d ago First seen · 180 lines · 81 tokens per session scan A d51cb30d1fa3
mongodb-expert is an agent published in the GitHub repository GoogilyBoogily/googilyboogily-claude-power-tools (2 stars, last pushed 4mo ago), licensed MIT. It adds 81 tokens to every session and 1,789 once invoked, about $0.0004 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-31.
Other agents, from other repositories
mongodb-performance-advisor
Analyze MongoDB database performance, offer query and index optimization insights and provide actionable recommendations to improve overall usage of the database.
db-mongodb-expert
Expert in MongoDB 6.x/7.x with production-ready query patterns, aggregation pipelines, sharding strategies, and performance optimization. Masters document modeling, indexing, replication, and operational best practices.
data-modeler
Data Modeler. Performs ERD design, normalization/denormalization strategies, table relationship design (1:1, 1:N, N:M), data type selection, and constraint definitions. Proficient in both RDBMS (PostgreSQL, MySQL) and NoSQL (MongoDB, DynamoDB).
data-manager
Data manager. Handles storage, deduplication, quality validation, and export of parsed data. Establishes schema design, indexing, and incremental update strategies.
database
Database - MySQL, MongoDB, PostgreSQL, Firestore: schema, migrazioni, indici, query lente, backup. Usalo per lavoro su schema e dati.
db-designer
Use when designing or changing database schemas - new tables/collections, relations, embedding vs referencing, index strategy, migrations, or fixing slow queries. Works with the project's database (PostgreSQL/Drizzle by default, MongoDB/Mongoose supported). Read-only advisor; returns a schema design with indexes and…