Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Working with diverse data formats: binary, text, structured, and custom
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-18 | ✗→✓ | ▲ Improved | 94% | 0% |
| case-11 | ✓→✓ | = Same ✓ | 28% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 0% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 65% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 36% | 0% |
How to work with diverse and unknown data formats.
Always inspect before parsing:
bashfile <filename> # MIME type detection xxd <filename> | head -5 # hex dump (first bytes) head -3 <filename> # text preview python3 -c " with open('<filename>', 'rb') as f: h = f.read(16) print(h, h.hex()) "
\x7fELF, PNG: \x89PNG)struct.unpack('<I', ...) vs '>I')python3 -c "import json; json.load(open('f'))"python3 -c "import tomllib; ...".pt, .pth → torch.load(f, map_location='cpu').ckpt → index + data files, use tf.train.load_checkpoint().npy, .npz → numpy.load()config.json + model.safetensorsonnx.load()file says "SQLite 3.x database" → sqlite3 <file> ".tables"sqlite3 PRAGMAxxd file | head -16head, tail, shuf -n 10head -1 file | awk -F',' '{print NF}'Other measured skills in the registry, with their headline benchmark lift.