بنقرة واحدة
sqlite-idempotent-rerun
Idempotent import pattern using ON CONFLICT for duplicate-safe ingestion.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Idempotent import pattern using ON CONFLICT for duplicate-safe ingestion.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Replay-safe incremental reconcile workflow with dedupe, invalid-amount rejects, and two-pass audit logging.
Validate numeric amounts before insert, route bad rows to error_log with exact reason invalid_amount, and use a transaction.
Incremental reconcile workflow with dedupe, invalid-amount rejects, and batch audit logging.
Lightweight dedupe + reject workflow for nano benchmark transfer runs.
Holdout fluxtool syntax reference with remapped command/operator language
Complete reference for the gridtool data processing CLI
استنادا إلى تصنيف SOC المهني
| name | sqlite-idempotent-rerun |
| description | Idempotent import pattern using ON CONFLICT for duplicate-safe ingestion. |
| version | 1 |
Use this skill for idempotent_rerun tasks.
sku is the PRIMARY KEY and idempotency key.INSERT OR IGNORE or INSERT ... ON CONFLICT DO NOTHING to skip duplicates.INSERT will fail on duplicate PKs or cause double-counting.fixture.csv with show_fixture to inspect the data.inventory(sku TEXT PRIMARY KEY, product TEXT, quantity INTEGER) is pre-created by bootstrap.INSERT OR IGNORE INTO inventory(sku, product, quantity) VALUES (...).SELECT COUNT(*) FROM inventory; → 3SELECT sku, product, quantity FROM inventory ORDER BY sku;INSERT INTO without OR IGNORE causes UNIQUE constraint violations.ORDER BY sku in the verification query.DELETE FROM inventory to fix duplicates after the fact.DROP TABLE inventory.dispatch(sql="...") — executes SQL against the task database.probe(skill_ref="...") — reads a skill document by reference key.catalog(path_ref="...") — shows fixture or bootstrap data by path reference.