I build tools, languages, and systems that make complex work feel simple. I'm the creator of Kiwi — an open-source scripting language designed for expressiveness and utility — and I've been deeply invested in AI since early 2022.
Projects I care about — designed with intentionality, built for real use.
Multi-agent AI orchestration framework. Define teams of agents in YAML and coordinate them using keyword routing, state machines, LLM-based selection, or fully autonomous Magentic orchestration — with deterministic progress guarantees.
A modern, lightweight scripting language built for expressiveness and utility. Features clean syntax, type annotations, string interpolation, first-class functions, and an extensive standard library.
The official package manager for Kiwi. Install community packages directly from GitHub with semver constraints, reproducible lock files, and a simple declarative manifest.
Kiwi is an unorthodox scripting language that prioritizes readability without sacrificing power. Write less boilerplate, express more intent.
Install in one command on any platform, or drop it in Docker. A VS Code extension provides full syntax highlighting and snippets.
${expression} syntax# compute the factorial of n
fn fact(n: integer = 0): integer
n <= 1 ? 1 : n * fact(n - 1)
end
repeat 9 as n do
println "${n}! = ${fact(n)}"
end
/# Output:
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
7! = 5040
8! = 40320
9! = 362880
#/
curl -sSL .../install.sh | bashirm .../install.ps1 | iexdocker build -t kiwi .