项目文件夹

文件
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

23 行
549 B
TOML

[tool.poetry]
name = "aisuite-code-cli"
version = "0.1.0"
description = "A local coding agent CLI built on aisuite."
authors = ["aisuite contributors"]
readme = "README.md"
packages = [{ include = "aisuite_code_cli" }]
[tool.poetry.dependencies]
python = "^3.10"
aisuite = { path = "../../..", develop = true }
openai = ">=1.107.0,<2.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
[tool.poetry.scripts]
aisuite-code = "aisuite_code_cli.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"