Read-only methods orchestration plans over pipeline contracts and evidence.
Location: infrastructure/methods/
The methods module turns existing project surfaces into one inspectable plan:
- pipeline DAG stages and contracts
- manuscript methods/methodology files
- artifact manifest
- evidence registry
- validation commands
It does not execute analysis or rewrite manuscripts. It reports whether the source and evidence layers needed for a publishable methods section are present.
uv run python -m infrastructure.methods plan --project template_code_project --format markdown
uv run python -m infrastructure.methods plan --project template_code_project --format json --checkfrom infrastructure.methods import (
build_methods_orchestration_plan,
render_methods_orchestration_markdown,
validate_methods_orchestration_plan,
)
plan = build_methods_orchestration_plan(".", "template_code_project")
issues = validate_methods_orchestration_plan(plan)
markdown = render_methods_orchestration_markdown(plan)uv run pytest tests/infra_tests/methods -q