Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

using-document-databases使用文档数据库

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

514

周安装

21

GitHub Stars

350

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:using-document-databases(使用文档数据库)
来源仓库:https://github.com/ancoleman/ai-design-components
仓库路径:skills/using-document-databases
安装命令:
npx skills add https://github.com/ancoleman/ai-design-components --skill using-document-databases
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ancoleman/ai-design-components --skill using-document-databases

简介

用于辅助数据库表结构、查询语句和迁移脚本维护。

  • 适合分析 schema、编写 SQL、排查查询问题或生成迁移建议。
  • 使用时需明确数据库类型和连接环境,区分只读分析与写入变更。
  • 涉及删除、更新或批量导入时应优先 dry-run 或事务保护。
  • using-document-databases 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Document Database Implementation

Guide NoSQL document database selection and implementation for flexible schema applications across Python, TypeScript, Rust, and Go.

When to Use This Skill

Use document databases when applications need:

  • Flexible schemas - Data models evolve rapidly without migrations
  • Nested structures - JSON-like hierarchical data
  • Horizontal scaling - Built-in sharding and replication
  • Developer velocity - Object-to-database mapping without ORM complexity

Database Selection

Quick Decision Framework

DEPLOYMENT ENVIRONMENT?
├── AWS-Native Application → DynamoDB
│   ✓ Serverless, auto-scaling, single-digit ms latency
│   ✗ Limited query flexibility
│
├── Firebase/GCP Ecosystem → Firestore
│   ✓ Real-time sync, offline support, mobile-first
│   ✗ More expensive for heavy reads
│
└── General-Purpose/Complex Queries → MongoDB
    ✓ Rich aggregation, full-text search, vector search
    ✓ ACID transactions, self-hosted or managed

Database Comparison

DatabaseBest ForLatencyMax ItemQuery Language
MongoDBGeneral-purpose, complex queries1-5ms16MBMQL (rich)
DynamoDBAWS serverless, predictable performance<10ms400KBPartiQL (limited)
FirestoreReal-time apps, mobile-first50-200ms1MBFirebase queries

See references/mongodb.md for MongoDB details See references/dynamodb.md for DynamoDB single-table design See references/firestore.md for Firestore real-time patterns

Schema Design Patterns

Embedding vs Referencing

Use the decision matrix in references/schema-design-patterns.md

Quick guide:

RelationshipPatternExample
One-to-FewEmbedUser addresses (2-3 max)
One-to-ManyHybridBlog posts → comments
One-to-MillionsReferenceUser → events (logging)
Many-to-ManyReferenceProducts ↔ Categories

Embedding Example (MongoDB)

// User with embedded addresses
{
  _id: ObjectId("..."),
  email: "user@example.com",
  name: "Jane Doe",
  addresses: [
    {
      type: "home",
      street: "123 Main St",
      city: "Boston",
      default: true
    }
  ],
  preferences: {
    theme: "dark",
    notifications: { email: true, sms: false }
  }
}

Referencing Example (E-commerce)

// Orders reference products
{
  _id: ObjectId("..."),
  userId: ObjectId("..."),
  items: [
    {
      productId: ObjectId("..."),      // Reference
      priceAtPurchase: 49.99,          // Denormalize (historical)
      quantity: 2
    }
  ],
  totalAmount: 99.98
}

When to denormalize:

  • Frequently read together
  • Historical snapshots (prices, names)
  • Read-heavy workloads

Indexing Strategies

MongoDB Index Types

// 1. Single field (unique email)
db.users.createIndex({ email: 1 }, { unique: true })

// 2. Compound index (ORDER MATTERS!)
db.orders.createIndex({ status: 1, createdAt: -1 })

// 3. Partial index (index subset)
db.orders.createIndex(
  { userId: 1 },
  { partialFilterExpression: { status: { $eq: "pending" }}}
)

// 4. TTL index (auto-delete after 30 days)
db.sessions.createIndex(
  { createdAt: 1 },
  { expireAfterSeconds: 2592000 }
)

// 5. Text index (full-text search)
db.articles.createIndex({
  title: "text",
  content: "text"
})

Index Best Practices:

  • Add indexes for all query filters
  • Compound index order: Equality → Range → Sort
  • Use covering indexes (query + projection in index)
  • Use explain() to verify index usage
  • Monitor with Performance Advisor (Atlas)

Validate indexes with the script:

python scripts/validate_indexes.py

See references/indexing-strategies.md for complete guide.

MongoDB Aggregation Pipelines

Key Operators: $match (filter), $group (aggregate), $lookup (join), $unwind (arrays), $project (reshape)

For complete pipeline patterns and examples, see: references/aggregation-patterns.md

DynamoDB Single-Table Design

Design for access patterns using PK/SK patterns. Store multiple entity types in one table with composite keys.

For complete single-table design patterns and GSI strategies, see: references/dynamodb.md

Firestore Real-Time Patterns

Use onSnapshot() for real-time listeners and Firestore security rules for access control.

For complete real-time patterns and security rules, see: references/firestore.md

Multi-Language Examples

Complete implementations available in examples/ directory:

  • examples/mongodb-fastapi/ - Python FastAPI + MongoDB
  • examples/mongodb-nextjs/ - TypeScript Next.js + MongoDB
  • examples/dynamodb-serverless/ - Python Lambda + DynamoDB
  • examples/firestore-react/ - React + Firestore real-time

Frontend Skill Integration

  • Media Skill - Use MongoDB GridFS for large file storage with metadata
  • AI Chat Skill - MongoDB Atlas Vector Search for semantic conversation retrieval
  • Feedback Skill - DynamoDB for high-throughput event logging with TTL

For integration examples, see: references/skill-integrations.md

Performance Optimization

Key practices:

  • Always use indexes for query filters (verify with .explain())
  • Use connection pooling (reuse clients across requests)
  • Avoid collection scans in production

For complete optimization guide, see: references/performance.md

Common Patterns

Pagination: Use cursor-based pagination for large datasets (recommended over offset) Soft Deletes: Mark as deleted with timestamp instead of removing Audit Logs: Store version history within documents

For implementation details, see: references/common-patterns.md

Validation and Scripts

Validate Index Coverage

# Run validation script
python scripts/validate_indexes.py --db myapp --collection orders

# Output:
# ✓ Query { status: "pending" } covered by index status_1
# ✗ Query { userId: "..." } missing index - add: { userId: 1 }

Schema Analysis

# Analyze schema patterns
python scripts/analyze_schema.py --db myapp

# Output:
# Collection: users
# - Average document size: 2.4 KB
# - Embedding ratio: 87% (addresses, preferences)
# - Reference ratio: 13% (orderIds)
# Recommendation: Good balance

Anti-Patterns to Avoid

Unbounded Arrays: Limit embedded arrays (use references for large collections) Over-Indexing: Only index queried fields (indexes slow writes) DynamoDB Scans: Always use Query with partition key (avoid Scan)

For detailed anti-patterns, see: references/anti-patterns.md

Dependencies

Python

# MongoDB
pip install motor pymongo

# DynamoDB
pip install boto3

# Firestore
pip install firebase-admin

TypeScript

# MongoDB
npm install mongodb

# DynamoDB
npm install @aws-sdk/client-dynamodb @aws-sdk/util-dynamodb

# Firestore
npm install firebase firebase-admin

Rust

# MongoDB
mongodb = "2.8"

# DynamoDB
aws-sdk-dynamodb = "1.0"

Go

# MongoDB
go get go.mongodb.org/mongo-driver

# DynamoDB
go get github.com/aws/aws-sdk-go-v2/service/dynamodb

Additional Resources

Database-Specific Guides:

  • references/mongodb.md - Complete MongoDB documentation
  • references/dynamodb.md - DynamoDB single-table patterns
  • references/firestore.md - Firestore real-time guide

Pattern Guides:

  • references/schema-design-patterns.md - Embedding vs referencing decisions
  • references/indexing-strategies.md - Index optimization
  • references/aggregation-patterns.md - MongoDB pipeline cookbook
  • references/common-patterns.md - Pagination, soft deletes, audit logs
  • references/anti-patterns.md - Mistakes to avoid
  • references/performance.md - Query optimization
  • references/skill-integrations.md - Frontend skill integration

Examples: examples/mongodb-fastapi/, examples/mongodb-nextjs/, examples/dynamodb-serverless/, examples/firestore-react/

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

31.89%
按下载量换算53

Gemini CLI

24.56%
按下载量换算41

Antigravity

17.12%
按下载量换算28

Claude Code

13.49%
按下载量换算22

Cursor

8.17%
按下载量换算13

mcpjam

3.39%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills