ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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
| 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.