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.
9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
import { mount } from 'svelte'
|
|
import './app.css'
|
|
import App from './App.svelte'
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app')!,
|
|
})
|
|
|
|
export default app
|