بنقرة واحدة
sql
SQL database patterns: schema migrations, query safety, index design, and transaction hygiene for this repo.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
SQL database patterns: schema migrations, query safety, index design, and transaction hygiene for this repo.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Operate Harkonnen through the repo-local MCP server and CLI. TRIGGER: user asks about run history, PackChat threads or messages, checkpoints, board snapshots, reasoning trails, benchmark suites or reports, wants to diagnose a failure, wants a run report, or wants to start, queue, or watch a run. Preferred over raw shell commands for Harkonnen interactions.
Databricks on Azure: cluster lifecycle, Delta Lake operations, MLflow tracking, and Unity Catalog patterns for this repo.
Azure cloud resources: ARM/Bicep templates, Azure CLI patterns, RBAC, service principals, and subscription safety for this repo.
Docker and Compose: image builds, container lifecycle, networking, volume management, and safety conventions for this repo.
WinCC OA SCADA: CTRL scripts, panels, datapoint operations, manager lifecycle, and live-system safety for this repo.
Linux environment conventions: shell idioms, systemd, package management, file permissions, and path conventions for this repo.
| name | sql |
| description | SQL database patterns: schema migrations, query safety, index design, and transaction hygiene for this repo. |
| user-invocable | false |
| allowed-tools | [] |
This repo uses SQL databases. Apply these patterns.
down migration alongside up.SELECT * is banned in application code — list columns explicitly to avoid silent breakage on schema changes.DELETE and UPDATE without a WHERE clause must never appear in application code.WHERE deleted_at IS NULL).EXPLAIN ANALYZE.SERIALIZABLE isolation only when you can demonstrate the need — it increases contention.diesel migration run, diesel migration redoalembic upgrade head, alembic downgrade -1flyway migrate, flyway validate