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 skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modelingnpx skills add AbdulmalekAlshugaa/claude-agents-fullstack --skill mongodb-data-modelinggit clone --depth 1 https://github.com/AbdulmalekAlshugaa/claude-agents-fullstackWrote 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/skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling)<a href="https://agentmods.dev/skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling"><img src="https://agentmods.dev/badge/skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling.svg" alt="Measured on agentmods" 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.00040 | $0.00672 |
| Opus 5 | $0.00020 | $0.00336 |
| Sonnet 5 | $0.00008 | $0.00134 |
| Haiku 4.5 | $0.00004 | $0.00067 |
Grade A, and why
mongodb-data-modeling 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 5d 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 — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MongoDB + Mongoose conventions
Model definition pattern
One file per model in src/lib/db/models/<name>.ts:
import { Schema, model, models, type InferSchemaType } from 'mongoose'
const userSchema = new Schema(
{
email: { type: String, required: true, lowercase: true, trim: true },
name: { type: String, required: true },
role: { type: String, enum: ['user', 'admin'], default: 'user' },
},
{ timestamps: true },
)
userSchema.index({ email: 1 }, { unique: true })
export type UserDoc = InferSchemaType<typeof userSchema>
// models.User guard is required: Next.js hot reload re-runs this module
export const User = models.User ?? model('User', userSchema)
Rules
models.X ?? model(...)guard on every model — without it, hot reload throwsOverwriteModelError.timestamps: trueon every schema.- Declare indexes in the schema file, one per real query pattern. Compound indexes follow ESR: Equality fields, then Sort fields, then Range fields.
- Embed vs reference: embed bounded, owned, read-together data; reference anything unbounded, shared, or independently queried. No unbounded arrays.
- Reads use
.lean()and map to a DTO before leaving the service:
Never return raw documents (ObjectId/Date don't serialize across RSC, andconst doc = await User.findById(id).lean() if (!doc) return null return { id: doc._id.toString(), email: doc.email, name: doc.name }__v/internals leak). - Writes: pick explicit fields from validated input — never spread a request
body into
create/updateOne(mass assignment). - Queries take validated primitives, never user-supplied objects — building a
filter from a raw object enables NoSQL injection (
{ $gt: '' }). - Always paginate list queries:
.limit()+ cursor (_id-based) or skip/limit for small datasets. - Cast ids deliberately: validate with Zod
(
z.string().regex(/^[0-9a-f]{24}$/)) before querying; an invalid ObjectId string throws a CastError, not a clean 404.
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.
- 5d ago First seen · 68 lines · 40 tokens per session scan A 723126c64b5a
mongodb-data-modeling is a skill published in the GitHub repository AbdulmalekAlshugaa/claude-agents-fullstack (3 stars, last pushed yesterday), licensed MIT. It adds 40 tokens to every session and 672 once invoked, about $0.0002 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 skills, from other repositories
dbx
DBX CLI for database schema exploration and read-only queries. When the user needs to list connections, explore tables, describe schemas, run queries, or generate AI-friendly schema context from DBX-managed databases. Do NOT use for write operations unless the user explicitly confirms with --allow-writes.
azure-mgmt-mongodbatlas-dotnet
Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.ResourceManager.MongoDBAtlas SDK. Use when creating, updating, listing, or deleting MongoDB Atlas organizations through Azure Marketplace integration. This SDK manages the Azure-side organization resource, not Atlas clusters/databases directly.
evergreen
Evergreen CI infrastructure, configuration validation. Use when modifying .evergreen/ config, preparing to submit changes or understanding the Evergreen test matrix.
nosqli
NoSQL injection — MongoDB operator injection ($ne, $gt, $where, $regex), CouchDB / Firebase / Redis attack patterns, auth bypass, blind extraction.
prisma-mongodb-upgrade
Decision and migration guide for Prisma ORM MongoDB projects on v6, which have no upgrade path to v7. Use when a MongoDB project asks about upgrading Prisma, when "upgrade to prisma 7" comes up in a project with provider = "mongodb", or when evaluating a move to Prisma Next. Triggers on "upgrade prisma mongodb"…
byted-volcengine-mongodb
使用火山引擎 MongoDB Skill,帮助用户完成 MongoDB 相关的实例管理、备份恢复、参数等运维任务,可直接调用 uv run ./scripts/callmongodb.py 脚本获取实时结果。当需要访问管理在火山引擎 MongoDB 实例详细信息时,此 Skill 可以提供方便的接口。.