Go API server + Preact UI + Claude Code adapter. - App-centric model (ideas, not repos) - AgentProvider interface for multi-agent support - K8s pod lifecycle for sandboxed agent sessions - Gitea integration (create repos, push branches) - WebSocket streaming for live session output - Woodpecker CI/CD pipelines (kaniko build + kubectl deploy)
17 lines
627 B
JSON
17 lines
627 B
JSON
{
|
|
"name": "agent-mgr-ui",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "esbuild src/index.tsx --bundle --outdir=dist --servedir=dist --loader:.tsx=tsx --loader:.ts=ts --jsx=automatic --jsx-import-source=preact --define:process.env.NODE_ENV=\\\"development\\\"",
|
|
"build": "esbuild src/index.tsx --bundle --outdir=dist --minify --loader:.tsx=tsx --loader:.ts=ts --jsx=automatic --jsx-import-source=preact --define:process.env.NODE_ENV=\\\"production\\\""
|
|
},
|
|
"dependencies": {
|
|
"preact": "^10.25.0",
|
|
"preact-router": "^4.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.24.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|