decomposer: generate files for Create and commit a registry-ready single-agent repository that generates technical solution design documents and draw.io architecture diagrams from application requirements.

This commit is contained in:
2026-08-31 14:48:28 +00:00
parent de91ff188d
commit ca18e8db08
9 changed files with 288 additions and 3 deletions

19
pyproject.toml Normal file
View File

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