discover-database
Automatically discover database skills when working with SQL, PostgreSQL, MongoDB, Redis, database schema design, query optimization, migrations, connection pooling, ORMs, or database selection. Activates for database design, optimization, and implementation tasks.
Best use case
discover-database is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Automatically discover database skills when working with SQL, PostgreSQL, MongoDB, Redis, database schema design, query optimization, migrations, connection pooling, ORMs, or database selection. Activates for database design, optimization, and implementation tasks.
Teams using discover-database should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/discover-database/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How discover-database Compares
| Feature / Agent | discover-database | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Automatically discover database skills when working with SQL, PostgreSQL, MongoDB, Redis, database schema design, query optimization, migrations, connection pooling, ORMs, or database selection. Activates for database design, optimization, and implementation tasks.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Database Skills Discovery Provides automatic access to comprehensive database design, optimization, and implementation skills. ## When This Skill Activates This skill auto-activates when you're working with: - SQL databases (PostgreSQL, MySQL) - NoSQL databases (MongoDB, Redis) - Database schema design and modeling - Query optimization and performance tuning - Database migrations and schema evolution - Connection pooling configuration - ORM usage and patterns - Database selection and architecture decisions ## Available Skills ### Quick Reference The Database category contains 8 core skills: 1. **postgres-schema-design** - Schema design, relationships, data types, normalization 2. **postgres-query-optimization** - EXPLAIN plans, indexes, slow query debugging 3. **postgres-migrations** - Schema changes, zero-downtime, rollback strategies 4. **mongodb-document-design** - Document modeling, embedding vs referencing 5. **redis-data-structures** - Caching, sessions, rate limiting, leaderboards 6. **database-connection-pooling** - Pool configuration, debugging exhaustion 7. **orm-patterns** - ORM best practices, N+1 prevention, eager loading 8. **database-selection** - Choosing databases, SQL vs NoSQL decisions ### Load Full Category Details For complete descriptions and workflows: Read <cc-polymath-root>/skills/database/INDEX.md This loads the full Database category index with: - Detailed skill descriptions - Usage triggers for each skill - Common workflow combinations - Cross-references to related skills ### Load Specific Skills Load individual skills as needed: # PostgreSQL skills Read <cc-polymath-root>/skills/database/postgres-schema-design.md Read <cc-polymath-root>/skills/database/postgres-query-optimization.md Read <cc-polymath-root>/skills/database/postgres-migrations.md # NoSQL skills Read <cc-polymath-root>/skills/database/mongodb-document-design.md Read <cc-polymath-root>/skills/database/redis-data-structures.md # Cross-database skills Read <cc-polymath-root>/skills/database/database-connection-pooling.md Read <cc-polymath-root>/skills/database/orm-patterns.md Read <cc-polymath-root>/skills/database/database-selection.md ## Common Workflows ### New Database Project **Sequence**: Selection → Schema design → Connection pooling Read <cc-polymath-root>/skills/database/database-selection.md # Choose database Read <cc-polymath-root>/skills/database/postgres-schema-design.md # or mongodb-document-design.md Read <cc-polymath-root>/skills/database/database-connection-pooling.md ### Query Performance Debugging **Sequence**: Optimization → Connection pooling → ORM patterns Read <cc-polymath-root>/skills/database/postgres-query-optimization.md # Debug slow queries Read <cc-polymath-root>/skills/database/database-connection-pooling.md # Check pool settings Read <cc-polymath-root>/skills/database/orm-patterns.md # Fix N+1 queries ### Schema Evolution **Sequence**: Schema design → Migrations Read <cc-polymath-root>/skills/database/postgres-schema-design.md # Design changes Read <cc-polymath-root>/skills/database/postgres-migrations.md # Implement safely ### Caching Layer **Sequence**: Redis structures → Cache patterns Read <cc-polymath-root>/skills/database/redis-data-structures.md # Redis patterns Then load caching skills via discover-caching gateway ## Skill Selection Guide **PostgreSQL skills** (relational, ACID, complex queries): - `postgres-schema-design.md` - Design relational schemas - `postgres-query-optimization.md` - Optimize complex queries - `postgres-migrations.md` - Evolve schema over time **MongoDB skills** (document-oriented, flexible schema): - `mongodb-document-design.md` - Design document structures - Choose when: Flexible schema, nested data, rapid iteration **Redis skills** (in-memory, key-value, caching): - `redis-data-structures.md` - Caching, sessions, rate limiting - Choose when: Speed critical, caching layer, real-time features **Cross-database skills**: - `database-selection.md` - **Start here** for new projects - `database-connection-pooling.md` - All databases need this - `orm-patterns.md` - When using ORMs (SQLAlchemy, Prisma, Mongoose) ## Integration with Other Skills Database skills commonly combine with: **API skills** (`discover-api`): - API endpoints → Database queries - Connection pooling for API servers - Query optimization for API performance - Migrations alongside API versioning **Backend language skills** (`discover-backend`): - Python: SQLAlchemy, psycopg2, PyMongo - Zig: PostgreSQL C bindings - Rust: SQLx, Diesel - Go: database/sql, GORM **Testing skills** (`discover-testing`): - Integration tests with test databases - Migration testing - Query performance testing - Data fixture management **Data pipeline skills** (`discover-data`): - ETL from databases - Database as data source - Bulk data operations - Streaming database changes (CDC) **Observability skills** (`discover-observability`): - Query metrics and slow query logs - Connection pool metrics - Database performance monitoring - Alert configuration ## Progressive Loading This gateway skill (~200 lines, ~2K tokens) enables progressive loading: - **Level 1**: Gateway loads automatically (you're here now) - **Level 2**: Load category INDEX.md (~3K tokens) for full overview - **Level 3**: Load specific skills (~2-4K tokens each) as needed Total context: 2K + 3K + skill(s) = 5-10K tokens vs 25K+ for entire index. ## Quick Start Examples **"Design a PostgreSQL schema for an e-commerce app"**: Read <cc-polymath-root>/skills/database/postgres-schema-design.md **"Why is my query slow?"**: Read <cc-polymath-root>/skills/database/postgres-query-optimization.md **"How do I safely change my database schema?"**: Read <cc-polymath-root>/skills/database/postgres-migrations.md **"Should I use MongoDB or PostgreSQL?"**: Read <cc-polymath-root>/skills/database/database-selection.md **"Implement caching with Redis"**: Read <cc-polymath-root>/skills/database/redis-data-structures.md **"Fix N+1 queries in my ORM"**: Read <cc-polymath-root>/skills/database/orm-patterns.md ## Database Type Decision Tree ``` Need ACID transactions? YES → PostgreSQL Need complex queries/joins? YES → PostgreSQL Need flexible schema? YES → MongoDB Need real-time caching? YES → Redis Need full-text search? YES → PostgreSQL (with extensions) or Elasticsearch Need graph relationships? YES → Neo4j or PostgreSQL (with extensions) Need analytics? YES → DuckDB or Redpanda + Iceberg ``` For detailed decision-making: Read <cc-polymath-root>/skills/database/database-selection.md ## PostgreSQL Focus Areas **Schema design** → `postgres-schema-design.md`: - Tables, columns, data types - Primary keys, foreign keys, constraints - Normalization vs denormalization - Indexing strategies **Query optimization** → `postgres-query-optimization.md`: - EXPLAIN and EXPLAIN ANALYZE - Index selection and creation - Query plan analysis - Performance tuning **Migrations** → `postgres-migrations.md`: - Schema change strategies - Zero-downtime deployments - Rollback procedures - Migration tools (Alembic, Flyway, migrate) ## NoSQL Focus Areas **MongoDB** → `mongodb-document-design.md`: - Document structure and embedding - References vs embedding tradeoffs - Schema versioning - Index design for documents **Redis** → `redis-data-structures.md`: - Strings, hashes, lists, sets, sorted sets - Caching patterns and TTLs - Session storage - Rate limiting implementations - Leaderboards and counters ## ORM Considerations Before using ORMs, load: Read <cc-polymath-root>/skills/database/orm-patterns.md **Common ORM pitfalls**: - N+1 query problems - Lazy vs eager loading confusion - Transaction management - Raw SQL when necessary - Migration generation **Supported ORMs**: - SQLAlchemy (Python) - Prisma (TypeScript/Node.js) - Diesel (Rust) - GORM (Go) - ActiveRecord (Ruby) - Entity Framework (C#) ## Usage Instructions 1. **Auto-activation**: This skill loads automatically when Claude Code detects database work 2. **Browse skills**: Run `Read <cc-polymath-root>/skills/database/INDEX.md` for full category overview 3. **Load specific skills**: Use bash commands above to load individual skills 4. **Follow workflows**: Use recommended sequences for common patterns 5. **Decision support**: Start with `database-selection.md` for new projects **Next Steps**: Run `Read <cc-polymath-root>/skills/database/INDEX.md` to see full category details, or load specific skills using the bash commands above.
Related Skills
discovery-interview
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
discover
Extracts semantic memory from project analysis. Scans codebase, docs, and configs to understand tech stack, constraints, and goals.
designing-databases
データベーススキーマ設計と最適化を支援します。正規化戦略、インデックス設計、パフォーマンス最適化を提供します。データモデル設計、データベース構造の最適化が必要な場合に使用してください。
De-novo-motif-discovery
This skill identifies novel transcription factor binding motifs in the promoter regions of genes, or directly from genomic regions of interest such as ChIP-seq peaks, ATAC-seq accessible sites, or differentially acessible regions. It employs HOMER (Hypergeometric Optimization of Motif Enrichment) to detect both known and previously uncharacterized sequence motifs enriched within the supplied genomic intervals. Use the skill when you need to uncover sequence motifs enriched or want to know which TFs might regulate the target regions.
databases
Work with MongoDB (document database, BSON documents, aggregation pipelines, Atlas cloud) and PostgreSQL (relational database, SQL queries, psql CLI, pgAdmin). Use when designing database schemas, writing queries and aggregations, optimizing indexes for performance, performing database migrations, configuring replication and sharding, implementing backup and restore strategies, managing database users and permissions, analyzing query performance, or administering production databases.
databases-architecture-skill
Master database design (SQL, NoSQL), system architecture, API design (REST, GraphQL), and building scalable systems. Learn PostgreSQL, MongoDB, system design patterns, and enterprise architectures.
database-workflow
Language-agnostic database best practices covering migrations, schema design, ORM patterns, query optimization, and testing strategies. Activate when working with database files, migrations, schema changes, SQL, ORM code, database tests, or when user mentions migrations, schema design, SQL optimization, NoSQL, database patterns, or connection pooling.
database-schema
Design a database schema
database-schema-design
Design and optimize database schemas for SQL and NoSQL databases. Use when creating new databases, designing tables, defining relationships, indexing strategies, or database migrations. Handles PostgreSQL, MySQL, MongoDB, normalization, and performance optimization.
database
ทำงานกับ PostgreSQL และ MongoDB อย่างมีประสิทธิภาพ
database-query
Natural language database queries with multi-database support, query optimization, and visual results
database-patterns
Use when designing database schemas, implementing repository patterns, writing optimized queries, managing migrations, or working with indexes and transactions for SQL/NoSQL databases.