SeequentEvo/evo-data-converters
Skill Claude CodeCodex
Use when building a complete new Evo data converter from scratch, end to end. Orchestrates the four phases — scaffolding, discovery, mapping to Evo geoscience objects, and testing — for turning a third-party geoscience file format into published Evo objects. Use for: 'build a converter for X', 'add support for a new…
SeequentEvo/evo-data-converters
Skill Claude CodeCodex
Use when starting a new Evo data converter and you need to understand the input file format before writing code. Inspects sample data, identifies the format, finds a suitable open-source reader library (license-checked), and maps the data to Evo geoscience object types. Use for: 'build a converter for X format', 'what…
SeequentEvo/evo-data-converters
Skill Claude CodeCodex
Use when implementing the reader and geoscience-object builder for an Evo data converter — turning a parsed file into evo-schemas objects. Covers implementing read file, building Pointset/TriangleMesh/grid/etc. objects, uploading arrays via dataclient.savetable or the parquet-hash pattern, and setting CRS, bounding…
SeequentEvo/evo-data-converters
Skill Claude CodeCodex
Use when creating the package skeleton for a new Evo data converter with the create-converter CLI. Runs the scaffolding generator, chooses the converter type and import/export mode, installs the package, and verifies it was registered. Use for: 'scaffold a converter', 'set up a new converter package', 'run…
SeequentEvo/evo-data-converters
Skill Claude CodeCodex
Use when writing and running tests for an Evo data converter, and validating it with linting and type checks. Replaces the generated placeholder tests with real ones using sample data, then runs uv run test- , ruff, and mypy until green. Use for: 'test the converter', 'write converter tests', 'the converter tests…
SeequentEvo/evo-data-converters
Instructions file CodexOpenCode
AGENTS.md instructions for SeequentEvo/evo-data-converters, covering agents.md — building evo data converters, what this repo is, the build workflow, converter architecture (what you implement) and key commands.