Implemented the next missing parity slice around a local web GUI for the agent.

This commit is contained in:
Abdelrahman Abdallah
2026-04-20 05:14:57 +02:00
parent 20aaad62b3
commit 84a563578e
9 changed files with 1978 additions and 1 deletions
+7 -1
View File
@@ -32,7 +32,11 @@ classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
]
dependencies = []
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.27",
"pydantic>=2.5",
]
[project.urls]
Homepage = "https://github.com/HarnessLab/claw-code-agent"
@@ -40,6 +44,7 @@ Repository = "https://github.com/HarnessLab/claw-code-agent"
[project.scripts]
claw-code-agent = "src.main:main"
claw-code-gui = "src.gui.__main__:main"
[tool.setuptools]
include-package-data = true
@@ -51,4 +56,5 @@ include = ["src*"]
[tool.setuptools.package-data]
src = [
"reference_data/*.json",
"gui/static/*",
]