원클릭으로
sqlite-incremental-reconcile-audit-transfer
Incremental reconcile workflow with dedupe, invalid-amount rejects, and batch audit logging.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Incremental reconcile workflow with dedupe, invalid-amount rejects, and batch audit logging.
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.
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
Use when the task is to create a 4-on-the-floor kick pattern in FL Studio Channel Rack (steps 1,5,9,13) with keyboard-first verification.
| name | sqlite-incremental-reconcile-audit-transfer |
| description | Incremental reconcile workflow with dedupe, invalid-amount rejects, and batch audit logging. |
| version | 1 |
Use this skill for incremental_reconcile_audit_transfer tasks.
fixture_seed.event_id is the idempotency key.event_id into ledger.rejects with reason duplicate_event.rejects with reason invalid_amount.batch_audit with tag BATCH-MAY-01.BEGIN IMMEDIATE or BEGIN TRANSACTION).fixture_seed into ledger(event_id, category, amount, batch_id).rejects(event_id, reason).rejects(event_id, reason).batch_audit(batch_tag, accepted_count, rejected_count).COMMIT).SELECT category, SUM(amount) AS total FROM ledger GROUP BY category ORDER BY category;SELECT reason, COUNT(*) FROM rejects GROUP BY reason ORDER BY reason;SELECT batch_tag, accepted_count, rejected_count FROM batch_audit ORDER BY batch_tag;ledger or rejects.rejects; it only stores event_id and reason.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.