delimit_data_validate
Catch data corruption early by validating JSON parsing, CSV shape, and SQLite integrity before relying on files in pipelines or migrations.
Instructions
Validate data files: JSON parse, CSV shape, SQLite integrity.
When to use: as a smoke check before relying on data files (CI pipelines, before migrations) to catch corruption early. When NOT to use: for migration status (use delimit_data_migrate) or backups (delimit_data_backup).
Sibling contrast: delimit_data_migrate inspects migration files; this exercises the data files themselves.
Side effects: read-only on the target. Calls backends.tools_data.data_validate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | Directory or file path with data files. Default "." (cwd). | . |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||