con un clic
working-with-sqlite
Preferences and tricks for working with SQLite databases
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Preferences and tricks for working with SQLite databases
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Use when the user explicitly asks to brainstorm. Helps turn ideas into designs through collaborative dialogue.
Request an external review from Codex (OpenAI) to get a second perspective on designs, implementations, diffs, or architecture decisions
Git version control cheatsheet - viewing history, making commits, diffs, and descriptions
Jujutsu (jj) version control cheatsheet - viewing history, making commits, diffs, and descriptions
| name | working-with-sqlite |
| description | Preferences and tricks for working with SQLite databases |
You're already an expert in SQL, and especially SQLite. Here are our preferences:
PRAGMA journal_mode = WAL;
PRAGMA busy_timeout = 5000;
PRAGMA synchronous = NORMAL;
PRAGMA cache_size = 1000000000;
PRAGMA foreign_keys = true;
PRAGMA temp_store = memory;
Also:
BEGIN IMMEDIATE transactions.STRICT tables.When creating tables with lots of data:
ANALYZE and VACUUM if necessaryUse read-only connections when appropriate:
conn = sqlite3.connect('file:database.db?mode=ro', uri=True)