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 |
|---|
| function warden_ngrok () { | |
| network_name=$(docker network ls --filter name=$1 --format '{{.Name}}') | |
| nginx_name=$(docker ps --filter name=$1_nginx --format '{{.Names}}') | |
| docker run --rm -it --link $nginx_name --net $network_name wernight/ngrok ngrok http $nginx_name:80 | |
| } | |
| # Example: "myapp" is WARDEN_ENV_NAME from .env | |
| warden_ngrok myapp |
Only the images associated to the currently selected variant are shown. Other images are hidden.
| function make_shipping_rates(id, low, mid, high) { | |
| $.post('/admin/price_based_shipping_rates.json', { | |
| price_based_shipping_rate: { | |
| country_id: id, | |
| min_order_subtotal: "0", | |
| max_order_subtotal: "500", | |
| name: "DHL Premiumversand", | |
| offsets: [], | |
| price: low | |
| } |