aethershell 0.3.1

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
Documentation
1
2
3
4
5
6
7
# Arrays + pipelines
result1 = [1,2,3,4] | map(fn(x) => x * 2) | reduce(fn(a,b) => a + b, 0)
print(result1)  # => 20

# Filter, take, and print
result2 = [5,4,3,2,1] | where(fn(x) => x > 2) | take(2)
print(result2)  # => [5,4]