tanstack-query
TanStack Query v5 expert guidance - migration gotchas (v4→v5 breaking changes), performance pitfalls (infinite refetch loops, staleness traps), and decision frameworks (when NOT to use queries, SWR vs React Query trade-offs). Use when: (1) debugging v4→v5 migration errors (gcTime, isPending, throwOnError), (2) infinite refetch loops, (3) SSR hydration mismatches, (4) choosing between React Query vs SWR vs fetch, (5) optimistic update patterns not working. NOT for basic setup (see official docs). Focuses on non-obvious decisions and patterns that cause production issues. Triggers: React Query, TanStack Query, v5 migration, refetch loop, stale data, SSR hydration, query invalidation, optimistic updates debugging.
lakebase-setup
Configure Lakebase for agent memory storage. Use when: (1) Adding memory capabilities to the agent, (2) 'Failed to connect to Lakebase' errors, (3) Permission errors on checkpoint/store tables, (4) User says 'lakebase', 'memory setup', or 'add memory'.
lakebase-setup
Configure Lakebase for agent memory storage. Use when: (1) Adding memory capabilities to the agent, (2) 'Failed to connect to Lakebase' errors, (3) Permission errors on checkpoint/store tables, (4) User says 'lakebase', 'memory setup', or 'add memory'.
lakebase-setup
Configure Lakebase for agent memory storage. Use when: (1) Adding memory capabilities to the agent, (2) 'Failed to connect to Lakebase' errors, (3) Permission errors on checkpoint/store tables, (4) User says 'lakebase', 'memory setup', or 'add memory'.
migrate
Use when bulk-migrating import paths, renaming workspace packages, or reorganizing modules across many files in a monorepo. Uses scripted bulk operations with verification gates and atomic commits. Keywords: migrate imports, rename package, bulk import path change, module reorganization, monorepo refactor.
supabase-cli
Supabase CLI commands for local development, migrations, project management, and deployment. Use when working with Supabase CLI, starting local dev, managing migrations, or deploying changes.
database-migration
Writes safe, reversible database migrations with rollback plans, data backup commands, zero-downtime deployment notes, and index impact analysis. Produces both up and down migration files with verification queries. Use when writing database migrations, schema changes, ALTER TABLE statements, adding indexes, or when the user needs to modify database structure.
springboot-migration
Migrate Spring Boot projects to version 4.0 with Java 25, including Spring Modulith 2.0 and Testcontainers 2.x upgrades. Use when user requests upgrading Spring Boot, migrating to Java 25, updating dependencies to Spring Boot 4, mentions Jackson 3 migration, asks about starter renames (web→webmvc, aop→aspectj), fixing test annotations (@MockBean→@MockitoBean), or needs help with Spring Modulith 2.0 or Testcontainers 2.x compatibility. Analyzes codebase for migration issues and guides through changes with specific file references.
ecto-essentials
MANDATORY for ALL database work. Invoke before modifying schemas, queries, or migrations.
migrating-code
Safe code migrations with backward compatibility and reversibility. Use when upgrading dependencies, changing database schemas, API versioning, or transitioning between technologies.
symfonydoctrine-batch-processing
Evolve Symfony Doctrine models and schema safely with integrity, performance, and rollout discipline. Use for doctrine batch processing tasks.
symfonydoctrine-migrations
Evolve Symfony Doctrine models and schema safely with integrity, performance, and rollout discipline. Use for doctrine migrations tasks.
meta-remove
Этот скилл MUST быть вызван когда пользователь просит удалить, убрать объект из конфигурации 1С. SHOULD также вызывать при очистке неиспользуемых объектов конфигурации. Do NOT использовать для модификации объекта — используй meta-edit; для удаления формы — используй form-remove.
meta-edit
Этот скилл MUST быть вызван когда нужно добавить, удалить или изменить реквизиты, табличные части, измерения, ресурсы или свойства существующего объекта конфигурации. SHOULD также вызывать для инкрементальных изменений существующих объектов. Do NOT использовать для создания нового объекта — используй meta-compile; для анализа объекта — используй meta-info.
db-update
Этот скилл MUST быть вызван когда пользователь просит обновить БД, применить конфигурацию, выполнить UpdateDBCfg. SHOULD также вызывать после db-load-xml или db-load-cf для применения изменений к базе данных. Do NOT использовать для загрузки конфигурации — используй db-load-xml или db-load-cf; для запуска — используй db-run.
db-run
Этот скилл MUST быть вызван когда пользователь просит запустить 1С, открыть базу, запустить предприятие. SHOULD также вызывать для проверки изменений после загрузки конфигурации. Do NOT использовать для запуска в браузере — используй 1c-web-session; для обновления БД — используй db-update.
db-load-cf
Этот скилл MUST быть вызван когда пользователь просит загрузить конфигурацию из CF, восстановить из бэкапа CF. SHOULD также вызывать после получения нового CF-файла для обновления базы. Do NOT использовать для загрузки из XML — используй db-load-xml; для выгрузки CF — используй db-dump-cf.
test-isolation-strategies
Test isolation techniques including database cleanup, transaction rollback, parallel test execution, and shared resource management.
database-migration-testing
Testing database migration scripts for correctness, rollback safety, data integrity, and zero-downtime migration patterns.
data-integrity-testing
Verifying data integrity constraints, referential integrity, data type validation, and consistency checks across database operations.
database-migration-test-generator
Generate tests for database migration safety covering schema changes, data integrity preservation, rollback verification, and zero-downtime migration validation