decomposer: scaffold crucible-agent-build-lightweight-rest

This commit is contained in:
2026-08-19 11:37:08 +00:00
parent ccb08fa05b
commit 878957c05a
20 changed files with 13 additions and 0 deletions

1
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1 @@
# pip + docker + github-actions, agents-sdk excluded.

1
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1 @@
# Thin caller into crucible-agent-factory-harness's build-agent.yml.

1
.image-version Normal file
View File

@@ -0,0 +1 @@
0.0.0

1
Dockerfile Normal file
View File

@@ -0,0 +1 @@
# TODO: generation subagent fills this in.

0
app/__init__.py Normal file
View File

1
app/agent.py Normal file
View File

@@ -0,0 +1 @@
"""crucible-agent-build-lightweight-rest: create_agent_app wiring + REST route handlers only."""

1
app/card.py Normal file
View File

@@ -0,0 +1 @@
"""AgentCard + skill list."""

1
app/config.py Normal file
View File

@@ -0,0 +1 @@
"""Typed settings."""

0
app/nodes/__init__.py Normal file
View File

0
app/states/__init__.py Normal file
View File

0
app/tools/__init__.py Normal file
View File

View File

1
k8s/configmap.yaml Normal file
View File

@@ -0,0 +1 @@
# TODO: generation subagent fills this in.

1
k8s/deployment.yaml Normal file
View File

@@ -0,0 +1 @@
# TODO: generation subagent fills this in.

1
k8s/service.yaml Normal file
View File

@@ -0,0 +1 @@
# TODO: generation subagent fills this in.

2
pytest.ini Normal file
View File

@@ -0,0 +1,2 @@
[pytest]
testpaths = tests

0
requirements-dev.txt Normal file
View File

0
requirements.txt Normal file
View File

0
tests/__init__.py Normal file
View File

1
tests/conftest.py Normal file
View File

@@ -0,0 +1 @@
# Env var setup that must run before app.config is imported.