split
Installation
SKILL.md
Split Primitive
Transform a Note's internal structure into a Collection of Notes.
Overview
The split primitive transforms a single Note into a Collection by splitting its content based on structure or delimiter. This is a structure transformation, not content inspection. To view Collection contents, use display (show to user) or flatten (merge into single Note).
Input Types
The split primitive handles four input types:
- JSON Array: Directly splits array elements (e.g.,
[1, 2, 3]→ Collection of 3 Notes) - JSON Object with Array Field: Extracts array from specified field (default:
results) - JSONL Format: Multiple JSON objects separated by newlines
- Plain Text: Splits by delimiter (default: sentence boundaries)