feat: Agent Orchestrator — multi-project agent dashboard

Tauri + Svelte 5 + Rust application for orchestrating multiple AI coding agents.
Includes Claude, Aider, Codex, and Ollama provider support, multi-agent
communication (btmsg/bttask), session anchors, plugin sandbox, FTS5 search,
Landlock sandboxing, and 507 vitest + 110 cargo tests.
This commit is contained in:
DexterFromLab 2026-03-15 15:45:27 +01:00
commit 3672e92b7e
272 changed files with 68600 additions and 0 deletions

11
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch BTerminal (v1)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/bterminal.py"
}
]
}

40
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,40 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#435746",
"activityBar.background": "#435746",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#1f1848",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#435746",
"statusBar.background": "#2d3a2f",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#435746",
"statusBarItem.remoteBackground": "#2d3a2f",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#2d3a2f",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#2d3a2f99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#2d3a2f",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/__pycache__": true,
"**/.pytest_cache": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/.git": true
},
"python.analysis.typeCheckingMode": "basic"
}

22
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "shell",
"command": "python3 ${workspaceFolder}/bterminal.py",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "install",
"type": "shell",
"command": "bash ${workspaceFolder}/install.sh",
"group": "none",
"problemMatcher": []
}
]
}