项目文件夹

文件
Devika eb160aae74 Add agent runs viewer and aisuite-code CLI
Two developer surfaces on top of the agent runtime: a local web viewer
for inspecting agent runs and traces, and a coding-agent CLI.

Viewer:
- aisuite/tracing: a local ViewerServer that serves a runs/trace UI,
  plus HttpTraceSink, TraceStoreSink, and InMemoryTraceStore
- viewer-ui: React/Vite single-page app for browsing runs, with the
  prebuilt bundle shipped under aisuite/tracing/static/viewer

CLI:
- cli/py/aisuite-code-cli: the aisuite-code coding-agent CLI (app, agent
  loop, approval flow, config, rendering) as a standalone package
- scripts/aisuite-code launcher and examples/cli usage

- tests for the viewer server, trace sinks, and the CLI

Co-authored-by: Rohit <rohit.prasad15@gmail.com>
2026-06-07 20:30:00 -07:00

25 行
533 B
JSON

{
"name": "aisuite-viewer-ui",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"lucide-react": "^0.468.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.8.0",
"vite": "^7.0.0"
}
}