.gitignore
.strictacode.yml
LICENSE
README.md
mkdocs.yml
pyproject.toml
.github/workflows/docs.yml
.github/workflows/lint.yml
.github/workflows/new_version.yml
.github/workflows/notify.yml
.github/workflows/publish.yml
.github/workflows/strictacode.yml
.github/workflows/tests.yml
.goga/config.yml
.goga/tools/mkdocs/traceability.yml
.goga/usages/conventions.md
.goga/usages/cooks/anthropic.md
.goga/usages/cooks/click.md
.goga/usages/cooks/deepdiff.md
.goga/usages/cooks/gitpython.md
.goga/usages/cooks/openai.md
.goga/usages/cooks/prance.md
.goga/usages/cooks/python-dotenv.md
.goga/usages/cooks/pyyaml.md
.goga/workflows/bugfix.yml
.goga/workflows/feature.yml
.goga/workflows/patch.yml
.goga/workflows/review.yml
docs/index.md
docs/architecture/conventions.md
docs/architecture/overview.md
docs/architecture/cells/applications.md
docs/architecture/cells/cli.md
docs/architecture/cells/commands.md
docs/architecture/cells/config.md
docs/architecture/cells/fs.md
docs/architecture/cells/git.md
docs/architecture/cells/index.md
docs/architecture/cells/llm.md
docs/architecture/cells/openapi.md
docs/architecture/cells/prompts.md
docs/architecture/cells/traceability.md
docs/getting-started/configuration.md
docs/getting-started/installation.md
docs/getting-started/quickstart.md
docs/guide/commands.md
docs/guide/impact-report.md
docs/guide/project-layout.md
docs/guide/traceability-graph.md
docs/overrides/main.html
swax.egg-info/PKG-INFO
swax.egg-info/SOURCES.txt
swax.egg-info/dependency_links.txt
swax.egg-info/entry_points.txt
swax.egg-info/requires.txt
swax.egg-info/top_level.txt
swax/applications/CODEMANIFEST
swax/applications/__init__.py
swax/applications/.usages/discover.md
swax/applications/.usages/init.md
swax/applications/.usages/plan.md
swax/applications/discover/CODEMANIFEST
swax/applications/discover/__init__.py
swax/applications/discover/run_discover.py
swax/applications/init/CODEMANIFEST
swax/applications/init/__init__.py
swax/applications/init/run_init.py
swax/applications/plan/CODEMANIFEST
swax/applications/plan/__init__.py
swax/applications/plan/impact_report.py
swax/applications/plan/render_impact_report.py
swax/applications/plan/run_plan.py
swax/cli/CODEMANIFEST
swax/cli/__init__.py
swax/cli/__main__.py
swax/cli/main.py
swax/cli/swax_context.py
swax/cli/.usages/cli-facade.md
swax/commands/CODEMANIFEST
swax/commands/__init__.py
swax/commands/.usages/discover.md
swax/commands/.usages/init.md
swax/commands/.usages/plan.md
swax/commands/discover/CODEMANIFEST
swax/commands/discover/__init__.py
swax/commands/discover/discover.py
swax/commands/init/CODEMANIFEST
swax/commands/init/__init__.py
swax/commands/init/init.py
swax/commands/plan/CODEMANIFEST
swax/commands/plan/__init__.py
swax/commands/plan/plan.py
swax/config/CODEMANIFEST
swax/config/__init__.py
swax/config/config.py
swax/config/env.py
swax/config/errors.py
swax/config/git_config.py
swax/config/specs_config.py
swax/config/storage.py
swax/config/.usages/environment.md
swax/config/.usages/project-config.md
swax/fs/CODEMANIFEST
swax/fs/__init__.py
swax/fs/copy_specs.py
swax/fs/ensure_swax_dir.py
swax/fs/.usages/project-layout.md
swax/git/CODEMANIFEST
swax/git/__init__.py
swax/git/clone_specs.py
swax/git/errors.py
swax/git/.usages/specs-repository.md
swax/llm/CODEMANIFEST
swax/llm/__init__.py
swax/llm/anthropic_adapter.py
swax/llm/build_anthropic_client.py
swax/llm/build_llm_client.py
swax/llm/build_openai_client.py
swax/llm/errors.py
swax/llm/llm_client.py
swax/llm/openai_adapter.py
swax/llm/.usages/llm-transport.md
swax/openapi/CODEMANIFEST
swax/openapi/__init__.py
swax/openapi/classify_endpoint_changes.py
swax/openapi/diff_specs.py
swax/openapi/discover_specs.py
swax/openapi/endpoint_diff.py
swax/openapi/errors.py
swax/openapi/extract_paths.py
swax/openapi/extract_schemas.py
swax/openapi/parse_spec.py
swax/openapi/.usages/diff.md
swax/openapi/.usages/extraction.md
swax/openapi/.usages/parsing.md
swax/prompts/CODEMANIFEST
swax/prompts/__init__.py
swax/prompts/build_graph_system_prompt.py
swax/prompts/build_graph_user_prompt.py
swax/prompts/build_impact_report_system_prompt.py
swax/prompts/build_impact_report_user_prompt.py
swax/prompts/build_refine_user_prompt.py
swax/prompts/.usages/impact-report-prompts.md
swax/prompts/.usages/traceability-llm-prompts.md
swax/traceability/CODEMANIFEST
swax/traceability/__init__.py
swax/traceability/errors.py
swax/traceability/find_affected_endpoints.py
swax/traceability/storage.py
swax/traceability/traceability_graph.py
swax/traceability/.usages/affected-endpoints.md
swax/traceability/.usages/graph-lifecycle.md
tests/__init__.py
tests/conftest.py
tests/applications/__init__.py
tests/applications/test_applications_facade.py
tests/applications/discover/__init__.py
tests/applications/discover/test_run_discover_contract.py
tests/applications/discover/test_run_discover_logic.py
tests/applications/init/__init__.py
tests/applications/init/test_run_init_contract.py
tests/applications/init/test_run_init_logic.py
tests/applications/plan/__init__.py
tests/applications/plan/test_models_and_render_contract.py
tests/applications/plan/test_models_and_render_logic.py
tests/applications/plan/test_run_plan_contract.py
tests/applications/plan/test_run_plan_logic.py
tests/cli/__init__.py
tests/cli/test_main_contract.py
tests/cli/test_main_logic.py
tests/commands/__init__.py
tests/commands/test_commands_facade.py
tests/commands/discover/__init__.py
tests/commands/discover/test_discover_contract.py
tests/commands/discover/test_discover_logic.py
tests/commands/init/__init__.py
tests/commands/init/test_init_contract.py
tests/commands/init/test_init_logic.py
tests/commands/plan/__init__.py
tests/commands/plan/test_plan_contract.py
tests/commands/plan/test_plan_logic.py
tests/config/__init__.py
tests/config/test_env_contract.py
tests/config/test_env_logic.py
tests/config/test_errors_contract.py
tests/config/test_errors_logic.py
tests/config/test_models_contract.py
tests/config/test_models_logic.py
tests/config/test_storage_contract.py
tests/config/test_storage_logic.py
tests/fs/__init__.py
tests/fs/test_fs_contract.py
tests/fs/test_fs_logic.py
tests/git/__init__.py
tests/git/test_git_contract.py
tests/git/test_git_logic.py
tests/integration/__init__.py
tests/integration/test_init_and_discover.py
tests/integration/test_plan.py
tests/llm/__init__.py
tests/llm/test_anthropic_adapter_contract.py
tests/llm/test_anthropic_adapter_logic.py
tests/llm/test_build_client_contract.py
tests/llm/test_build_client_logic.py
tests/llm/test_llm_contract.py
tests/llm/test_llm_logic.py
tests/llm/test_openai_adapter_contract.py
tests/llm/test_openai_adapter_logic.py
tests/openapi/__init__.py
tests/openapi/test_diff_contract.py
tests/openapi/test_diff_logic.py
tests/openapi/test_endpoint_diff_contract.py
tests/openapi/test_endpoint_diff_logic.py
tests/openapi/test_openapi_contract.py
tests/openapi/test_openapi_logic.py
tests/prompts/__init__.py
tests/prompts/test_impact_report_prompts_contract.py
tests/prompts/test_impact_report_prompts_logic.py
tests/prompts/test_prompts_contract.py
tests/prompts/test_prompts_logic.py
tests/traceability/__init__.py
tests/traceability/test_affected_and_error_contract.py
tests/traceability/test_affected_and_error_logic.py
tests/traceability/test_traceability_contract.py
tests/traceability/test_traceability_logic.py