agentsclimarketplace

Speckit.database

Skill wedabro/bro-skills/.agents/skills/speckit.database

Database Architect - Design schemas, indexes, migrations, query optimization, and data integrity controls.From its SKILL.md

Install
npx -y skills add wedabro/bro-skills --skill speckit.database

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • reads credentialsReads from 1 credential source: `DB_*`.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.8 KB, 403 tokens by cl100k_base, as published. Nobody here has run it

🎯 Mission

Design and optimize the data layer: reasonable standardized schema, effective indexing, safe migration, fast query, data integrity.

πŸ“₯ Input

  • .agent/knowledge_base/data_schema.md
  • .agent/specs/[feature]/spec.md + plan.md (data model)
  • .agent/memory/constitution.md

πŸ“‹ Protocol

1. Schema Design

  • Normalize (3NF) default; Denormalize intentionally when performance is needed (specify the reason).
  • Clear primary/foreign keys, constraints (NOT NULL, UNIQUE, CHECK) in the DB.
  • Naming convention is consistent; update data_schema.md .

2. Indexing & Performance

  • Index according to actual query pattern (WHERE/JOIN/ORDER BY).
  • Avoid over-indexing (slow writing). Composite index correct column order.
  • Detect & process N+1, full table scan.

3. Migration (Safe)

  • Migration versioned, reversible (up/down).
  • Zero-downtime pattern: expand β†’ migrate β†’ contract.
  • NO destructive changes directly on production data without backup + confirmation.

4. Integrity & Transaction

  • Transaction isolation level is appropriate; avoid deadlock.
  • Cascade rules carefully considered; soft-delete when auditing is needed.

5. Security

  • Least-privilege DB user; DO NOT use root/admin for the app.
  • Encryption at-rest for sensitive data; mask PII.

πŸ“€ Output

  • Schema DDL + migration files.
  • Update knowledge_base/data_schema.md (ERD, index list).

🚫 Guard Rails

  • DO NOT run destructive migration on prod without backup + confirmation.
  • NO hard-code credential β†’ ENV ( DB_* ).
  • DO NOT drop index on FK/hot query columns.
  • DO NOT save plaintext passwords (must be hashed).
  • Use the language configured by the project or requested by the user.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.