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 |
|---|
These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.
Hardware used: Orange Pi 4 LTS
OS: Armbian Jammy
Should work everywhere on Debian or Ubuntu
Usually gstreamer uses newer version of meson then available in apt packages, so we need to also build and install it from source. This is super easy. Here I am using 1.2.3 version that is currently latest, but you can use any other version.
sudo apt install pip
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| # Fixes shaders from GLideN64-Scene-Ripper for OBJ/etc export. | |
| # Instructions: select objects you want to fix, then run this | |
| # script from the Text editor. | |
| # Tested with Blender 3.6. | |
| import bpy | |
| # Whether to connect the diffuse texture's alpha to the | |
| # Principled Alpha socket in the simplified material. | |
| CONNECT_ALPHA = True |
| { | |
| /* UI */ | |
| "workbench.colorTheme": "Monokai +Blue", | |
| "workbench.sideBar.location": "right", | |
| "window.zoomLevel": 2, | |
| "breadcrumbs.enabled": false, | |
| "workbench.iconTheme": "vscode-icons", | |
| "telemetry.telemetryLevel": "off", | |
| "window.commandCenter": false, |