database — Schema-Design für Datenbanken database, canary, community, Schema-Design für Datenbanken, ide skills, Datenbankoperationen, plattformspezifische Muster, Primärschlüssel, Fremdschlüssel, UUIDv7

v1.0.0

Über diesen Skill

Perfekt für KI-Agents, die erweiterte Datenbank-Schema-Design- und Betriebsfähigkeiten benötigen. Eine Datenbank ist ein System zur Speicherung und Verwaltung von Daten, das Prinzipien für Schema-Design und -Operationen befolgt

Funktionen

Schema-Design mit Primärschlüsseln und Fremdschlüsseln
Verwendung von UUIDv7 für verteilte Systeme
Datenbankoperationen mit DECIMAL für Geld und DATE für Daten
Plattformspezifische Muster für Monolithen und verteilte Systeme
Verwendung von Fremdschlüsselbeschränkungen zur Gewährleistung der Datenintegrität

# Core Topics

misty-step misty-step
[1]
[0]
Updated: 3/17/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
26
Canonical Locale
en
Detected Body Locale
en

Perfekt für KI-Agents, die erweiterte Datenbank-Schema-Design- und Betriebsfähigkeiten benötigen. Eine Datenbank ist ein System zur Speicherung und Verwaltung von Daten, das Prinzipien für Schema-Design und -Operationen befolgt

Warum diese Fähigkeit verwenden

Ermöglicht es den Agents, robuste Datenbank-Schemata zu entwerfen, indem sie primäre Schlüssel, fremde Schlüssel und optimierte Datentypen wie DECIMAL für monetäre Werte und DATE für Datum-only-Felder verwenden, um die Konsistenz und Integrität der Daten in verteilten Systemen und Monolithen sicherzustellen.

Am besten geeignet für

Perfekt für KI-Agents, die erweiterte Datenbank-Schema-Design- und Betriebsfähigkeiten benötigen.

Handlungsfähige Anwendungsfälle for database

Normale Datenbank-Schemata mit primären Schlüsseln UUIDv7 für verteilte Systeme entwerfen
Fremdschlüssel-Einschränkungen mit ON DELETE RESTRICT für sichere Datenbeziehungen implementieren
Datenbankleistung durch Auswahl geeigneter Datentypen wie DECIMAL und DATE optimieren

! Sicherheit & Einschränkungen

  • Erfordert Verständnis von Datenbankkonzepten und Schema-Design-Prinzipien
  • Kann Anpassungen für plattformspezifische Datenbankmuster und -einschränkungen erfordern

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is database?

Perfekt für KI-Agents, die erweiterte Datenbank-Schema-Design- und Betriebsfähigkeiten benötigen. Eine Datenbank ist ein System zur Speicherung und Verwaltung von Daten, das Prinzipien für Schema-Design und -Operationen befolgt

How do I install database?

Run the command: npx killer-skills add misty-step/canary/database. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for database?

Key use cases include: Normale Datenbank-Schemata mit primären Schlüsseln UUIDv7 für verteilte Systeme entwerfen, Fremdschlüssel-Einschränkungen mit ON DELETE RESTRICT für sichere Datenbeziehungen implementieren, Datenbankleistung durch Auswahl geeigneter Datentypen wie DECIMAL und DATE optimieren.

Which IDEs are compatible with database?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for database?

Erfordert Verständnis von Datenbankkonzepten und Schema-Design-Prinzipien. Kann Anpassungen für plattformspezifische Datenbankmuster und -einschränkungen erfordern.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add misty-step/canary/database. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use database immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

database

Install database, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Database

Best practices for schema design, database operations, and platform-specific patterns.

Schema Design Principles

Primary Keys

  • Every table MUST have a primary key
  • UUIDv7 for distributed systems, auto-increment BIGINT for monoliths

Foreign Keys

  • Use FK constraints unless specific reason not to
  • ON DELETE: RESTRICT (safest), CASCADE (sparingly), SET NULL (breaks audit)

Data Types

  • Money: DECIMAL (never FLOAT/DOUBLE)
  • Dates without time: DATE not DATETIME
  • Small sets: ENUM not VARCHAR

Constraints

  • NOT NULL on required columns, UNIQUE on natural keys, CHECK for business rules

Decision Trees

"Should I denormalize?"

Evidence of query perf problem? -> Tried indexes/caching? -> Read-heavy >100:1? -> Denormalize specific fields.

"UUID or auto-increment?"

Distributed (multiple write nodes)? -> UUIDv7. Exposed to users? -> Auto-increment. Otherwise -> auto-increment.

"Soft or hard delete?"

GDPR applies? -> Hard delete. Need audit trail? -> Audit table. High deletion rate? -> Hard delete. Otherwise -> soft delete.

Database Operations

Migrations

Forward-only. No rollbacks. Maintain backward compatibility. Break large changes into smaller steps. Use feature flags during transitions.

Query Optimization

Always check EXPLAIN ANALYZE before optimizing. Index based on actual query patterns. Monitor unused indexes. Remove if idx_scan < 100.

N+1 Prevention

Always eager load in loops. Use joinedload or equivalent.

Transactions

Scope to single business operation. Keep short. Never hold during external calls.

Connection Pooling

Size based on measured peak concurrency. Alert at 80% utilization.

Anti-Patterns

  • EAV (entity-attribute-value) patterns
  • God tables (>50 columns)
  • Multi-valued fields (CSV in columns)
  • Rollback migrations
  • N+1 queries in loops
  • Long transactions with external calls

References

ReferenceContent
references/schema-design.mdDetailed schema principles, anti-patterns, normalization
references/operations.mdMigrations, queries, transactions, connection pooling
references/convex.mdConvex-specific patterns (indexes, pagination, ctx.auth, model/)

Verwandte Fähigkeiten

Looking for an alternative to database or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler