decomposer: generate deliverable files for Inspect the single_agent template and target repository conventions to identify the required project structure, configuration, interfaces, and implementation patterns for the application landing zone agent.; Define the application landing zone agent's behavior, input and output contracts, document-generation workflow, and architecture-diagram requirements using the extracted template conventions.; Validate the implemented application_landing_zone_agent by running repository tests and checking the TSD document generation, draw.io diagram generation, agent packaging, configuration, and committed implementation against the defined contracts.; Commit and push the validated application_landing_zone_agent implementation to the target repository.

This commit is contained in:
2026-08-31 14:46:50 +00:00
parent 221f31d824
commit fb20521880
14 changed files with 258 additions and 172 deletions

View File

@@ -1,15 +1,20 @@
[build-system]
requires = ["setuptools>=61"]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "application-landing-zone-agent"
version = "0.1.0"
description = "Generate TSD documents and draw.io diagrams from application requirements"
description = "Generate TSD documents and draw.io architecture diagrams from application requirements"
requires-python = ">=3.10"
dependencies = []
[project.scripts]
application-landing-zone-agent = "landing_zone_agent.cli:main"
application-landing-zone-agent = "application_landing_zone_agent.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.setuptools.packages.find]
where = ["src"]