Type-safe data pipelines with compile-time validation.
Deploy autonomous agents with tool use, memory, and constraints.
Coordinate agent swarms for complex distributed tasks.
DAG-based workflows with automatic parallelization.
Git-native workflows. Branch, merge, and deploy pipelines.
Isolated execution environments for secure agent operation.
# Typed data pipeline — structured values, not text
let readings = ls("./telemetry")
| where(fn(f) => f.ext == ".json")
| map(fn(f) => json_parse(read_text(f.path)))
# Multi-stage transformation
readings
| where(fn(d) => d.quality > 0.9)
| map(fn(d) => {ts: d.timestamp, val: d.reading * 1.05})
| sort_by("ts")
| take(100)
| to_json()
| write_text("cleaned_data.json")