skilly. Buy ad slot
All skills
Community / AGENT SKILL

database-schema

Vitammiin/agent-vorcl-flow
0 installs 2 GitHub stars
0

Проектирование/ревью схемы и целостности данных (роль database). Use when проектируем новую сущность или ревьюим форму существующей; менять готовую схему — $database-migrate.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# Задача: схема и целостность данных (database)

Спроектируй или отревьюй схему (см. `$database`).

Выбери хранилище под природу данных и запросов. **Postgres** — нормализация (и осознанная денормализация), типы, `NOT NULL`/`UNIQUE`/`CHECK`, внешние ключи, индексы под запросы, партиционирование больших таблиц. **MongoDB** — форма документа, **embedding vs referencing** по паттернам доступа, schema-валидаторы, ограничение роста массивов/размера документа. **Redis** — дизайн ключей (namespace), типы, обязательный TTL, eviction. Инспекция текущей схемы — read-only (`information_schema`/`pg_indexes`, `listCollections`/`listIndexes`). Изменения схемы (DDL) оформляй как миграцию (`$database-migrate`) и применяй только с подтверждением. Опирайся на `$database`, `$postgresql`, `$mongodb`, `$redis`, `$backend-architecture`.