SECURITY REVIEW
Not yet assessed
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
Проектирование/ревью схемы и целостности данных (роль database). Use when проектируем новую сущность или ревьюим форму существующей; менять готовую схему — $database-migrate.
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
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.
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`.