mongodb-data-modeling

mongodb-data-modeling is a skill for Claude Code, Codex from AbdulmalekAlshugaa/claude-agents-fullstack. It costs 40 tokens per session (672 once invoked), scanned A, original, MIT.

A set of conventions for designing MongoDB data models with Mongoose in TypeScript. MongoDB is a database that stores document-shaped records, Mongoose is a library for defining and querying those records, and TypeScript adds type checking to JavaScript code.

In plain words
What is it for?
It helps create or change MongoDB collections, define Mongoose schemas and models, add indexes, write queries, and debug query performance in TypeScript.
Why use it?
It keeps schemas, models, indexes, and queries consistent across a codebase. It also helps investigate slow database queries and avoid mismatches between stored data and application types.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

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.

agentmods
npx agentmods add skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling
Any agent
npx skills add AbdulmalekAlshugaa/claude-agents-fullstack --skill mongodb-data-modeling
Clone the repo
git clone --depth 1 https://github.com/AbdulmalekAlshugaa/claude-agents-fullstack

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for mongodb-data-modeling

README.md
[![agentmods](https://agentmods.dev/badge/skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling.svg)](https://agentmods.dev/skills/abdulmalekalshugaa/claude-agents-fullstack/mongodb-data-modeling)
Your own site
<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>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 672 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 723126c64b5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

skills/mongodb-data-modeling/SKILL.md · 68 lines

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 throws OverwriteModelError.
  • timestamps: true on 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:
    const doc = await User.findById(id).lean()
    if (!doc) return null
    return { id: doc._id.toString(), email: doc.email, name: doc.name }
    
    Never return raw documents (ObjectId/Date don't serialize across RSC, and __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.

Read the full file on GitHub · 68 lines

Changes

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.

  1. 5d ago First seen · 68 lines · 40 tokens per session scan A 723126c64b5a

Subscribe to this mod's changes

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.

Related

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.

t8y2/dbx · 61 tokens

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.

microsoft/skills · 64 tokens

evergreen

Evergreen CI infrastructure, configuration validation. Use when modifying .evergreen/ config, preparing to submit changes or understanding the Evergreen test matrix.

mongodb/mongo-java-driver · 31 tokens

nosqli

NoSQL injection — MongoDB operator injection ($ne, $gt, $where, $regex), CouchDB / Firebase / Redis attack patterns, auth bypass, blind extraction.

PurpleAILAB/Decepticon · 38 tokens

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"…

nitrocloudofficial/nitrostack · 95 tokens

byted-volcengine-mongodb

使用火山引擎 MongoDB Skill,帮助用户完成 MongoDB 相关的实例管理、备份恢复、参数等运维任务,可直接调用 uv run ./scripts/callmongodb.py 脚本获取实时结果。当需要访问管理在火山引擎 MongoDB 实例详细信息时,此 Skill 可以提供方便的接口。.

bytedance/agentkit-samples · 82 tokens