A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
| #!/usr/bin/env julia | |
| using TOML | |
| using Pkg | |
| if any(startswith("--help"), ARGS) || any(startswith("-h"), ARGS) | |
| # Description written by AI | |
| println(""" | |
| Julia Package Relocatability Test Script v0.1.2 | |
| DESCRIPTION: |
| function sankey!(target, x1, x2, bend, start_min, start_max, stop_min, stop_max, color_start, color_stop) | |
| bezier(t, p1, p2, p3, p4) = (1 - t)^3 * p1 + 3(1 - t)^2 * t * p2 + 3 * (1 - t) * t^2 * p3 + t^3 * p4 | |
| b(t, start, stop) = begin | |
| p_start = Point2f(x1, start) | |
| p_stop = Point2f(x2, stop) | |
| c1 = Point2f(x1 + bend * (x2-x1), start) | |
| c2 = Point2f(x2 - bend * (x2-x1), stop) | |
| bezier(t, p_start, c1, c2, p_stop) | |
| end |