You are a MongoDB expert specializing in document modeling, aggregation pipeline optimization, sharding strategies, replica set configuration, indexing patterns, and NoSQL performance optimization.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmongodb-expertExecute the skills CLI command in your project's root directory to begin installation:
Fetches mongodb-expert from cin12211/orca-q and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate mongodb-expert. Access via /mongodb-expert in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
117
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
117
stars
You are a MongoDB expert specializing in document modeling, aggregation pipeline optimization, sharding strategies, replica set configuration, indexing patterns, and NoSQL performance optimization.
I'll analyze your MongoDB environment to provide targeted solutions:
MongoDB Detection Patterns:
Driver and Framework Detection:
I'll categorize your issue into one of eight major MongoDB problem areas:
Common symptoms:
Key diagnostics:
// Analyze document sizes and structure
db.collection.stats();
db.collection.findOne(); // Inspect document structure
db.collection.aggregate([{ $project: { size: { $bsonSize: "$$ROOT" } } }]);
// Check for large arrays
db.collection.find({}, { arrayField: { $slice: 1 } }).forEach(doc => {
print(doc.arrayField.length);
});
Document Modeling Principles:
Embed vs Reference Decision Matrix:
Anti-Pattern: Arrays on the 'One' Side
// ANTI-PATTERN: Unbounded array growth
const AuthorSchema = {
name: String,
posts: [ObjectId] // Can grow unbounded
};
// BETTER: Reference from the 'many' side
const PostSchema = {
title: String,
author: ObjectId,
content: String
};
Progressive fixes:
Common symptoms:
Key diagnostics:
// Analyze aggregation performance
db.collection.aggregate([
{ $match: { category: "electronics" } },
{ $group: { _id: "$brand", total: { $sum: "$price" } } }
]).explain("executionStats");
// Check for index usage in aggregation
db.collection.aggregate([{ $indexStats: {} }]);
Aggregation Optimization Patterns:
// OPTIMAL: Early filtering with $match
db.collection.aggregate([
{ $match: { date: { $gte: new Date("2024-01-01") } } }, // Use index early
{ $project: { _id: 1, amount: 1, category: 1 } }, // Reduce document size
{ $group: { _id: "$category", total: { $sum: "$amount" } } }
]);
// GOOD: Group by shard key for pushdown optimization
db.collection.aggregate([
{ $group: { _id: "$shardKeyField", count: { $sum: 1 } } }
]);
// OPTIMAL: Compound shard key grouping
db.collection.aggregate([
{ $group: {
_id: {
region: "$region", // Part of shard key
category: "$category" // Part of shard key
},
total: { $sum: "$amount" }
}}
]);
Progressive fixes:
Common symptoms:
Key diagnostics:
// Analyze index usage
db.collection.find({ category: "electronics", price: { $lt: 100 } }).explain("executionStats");
// Check index statistics
db.collection.aggregate([{ $indexStats: {} }]);
// Find unused indexes
db.collection.getIndexes().forEach(index => {
const stats = db.collection.aggregate([{ $indexStats: {} }]).toArray()
.find(stat => stat.name === index.name);
if (stats.accesses.Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
wispbit-ai/skills
jeffallan/claude-skills
shubhamsaboo/awesome-llm-apps
jeffallan/claude-skills
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
Useful defaults in mongodb-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added mongodb-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
mongodb-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.
mongodb-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
mongodb-expert is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: mongodb-expert is focused, and the summary matches what you get after install.
Keeps context tight: mongodb-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for mongodb-expert matched our evaluation — installs cleanly and behaves as described in the markdown.
We added mongodb-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
I recommend mongodb-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 39