rein-aharness/pyproject.toml
tegwick 4144eba160 feat: instance manifest, tool profiles, metrics, and budget enforcement
Land HARNESS-WP-0001 T01/T02/T04/T05: extend ADR-005 schedule.yml with
harness fields, named tool-profile registry, ADR-004 metrics writes, and
BudgetTracker wiring. CLI gains validate/profiles; task-file path kept.
2026-07-17 23:49:03 +02:00

26 lines
636 B
TOML

[project]
name = "agent-harness"
version = "0.1.0"
description = "Thin executor worker: consumes emitted activity-core tasks and executes them via llm-connect adapters with kaizen persona orientation"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"PyYAML>=6.0",
]
[project.scripts]
agent-harness = "agent_harness.cli:main"
[tool.uv.sources]
llm-connect = { path = "../llm-connect", editable = true }
[project.optional-dependencies]
llm = ["llm-connect"]
dev = ["pytest>=8"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agent_harness"]