CHANGELOG.md
CONTRIBUTING.md
FAQ.md
LICENSE
MANIFEST.in
README.md
SECURITY.md
pyproject.toml
examples/README.md
examples/celery/README.md
examples/celery/Stackfile.py
examples/celery/worker/celery.py
examples/celery/worker/requirements.txt
examples/django/README.md
examples/django/Stackfile.py
examples/django/web/manage.py
examples/django/web/requirements.txt
examples/django/web/project/__init__.py
examples/django/web/project/settings.py
examples/django/web/project/urls.py
examples/express/README.md
examples/express/Stackfile.py
examples/express/app/package-lock.json
examples/express/app/package.json
examples/express/app/server.js
examples/external-deps/README.md
examples/external-deps/Stackfile.py
examples/external-deps/auth/main.py
examples/external-deps/auth/requirements.txt
examples/external-deps/gateway/main.py
examples/external-deps/gateway/requirements.txt
examples/fastapi/README.md
examples/fastapi/Stackfile.py
examples/fastapi/api/main.py
examples/fastapi/api/requirements.txt
examples/flask/README.md
examples/flask/Stackfile.py
examples/flask/web/app.py
examples/flask/web/requirements.txt
examples/minimal/README.md
examples/minimal/Stackfile.py
examples/minimal/app/main.py
examples/nestjs/README.md
examples/nestjs/Stackfile.py
examples/nestjs/app/app.controller.ts
examples/nestjs/app/main.js
examples/nestjs/app/package-lock.json
examples/nestjs/app/package.json
src/stackpilot/__init__.py
src/stackpilot/__main__.py
src/stackpilot/cli.py
src/stackpilot/config.py
src/stackpilot/dashboard.py
src/stackpilot/dependency_graph.py
src/stackpilot/discovery.py
src/stackpilot/doctor.py
src/stackpilot/executable.py
src/stackpilot/external_validation.py
src/stackpilot/generator.py
src/stackpilot/graph_view.py
src/stackpilot/health.py
src/stackpilot/http_checker.py
src/stackpilot/ignore.py
src/stackpilot/issues.py
src/stackpilot/launch_env.py
src/stackpilot/logger.py
src/stackpilot/models.py
src/stackpilot/orchestrator.py
src/stackpilot/paths.py
src/stackpilot/port_detect.py
src/stackpilot/process_checker.py
src/stackpilot/process_manager.py
src/stackpilot/process_tree.py
src/stackpilot/py.typed
src/stackpilot/relation_infer.py
src/stackpilot/runner.py
src/stackpilot/runtime_control.py
src/stackpilot/scanner.py
src/stackpilot/service_catalog.py
src/stackpilot/status.py
src/stackpilot/sync.py
src/stackpilot/tcp_checker.py
src/stackpilot/utils.py
src/stackpilot/watch_manager.py
src/stackpilot/watcher.py
src/stackpilot.egg-info/PKG-INFO
src/stackpilot.egg-info/SOURCES.txt
src/stackpilot.egg-info/dependency_links.txt
src/stackpilot.egg-info/entry_points.txt
src/stackpilot.egg-info/requires.txt
src/stackpilot.egg-info/top_level.txt
src/stackpilot/adapters/__init__.py
src/stackpilot/adapters/base.py
src/stackpilot/adapters/celery.py
src/stackpilot/adapters/django.py
src/stackpilot/adapters/express.py
src/stackpilot/adapters/fastapi.py
src/stackpilot/adapters/flask.py
src/stackpilot/adapters/generic.py
src/stackpilot/adapters/mongodb.py
src/stackpilot/adapters/nestjs.py
src/stackpilot/adapters/postgres.py
src/stackpilot/adapters/rabbitmq.py
src/stackpilot/adapters/redis.py
src/stackpilot/adapters/registry.py
src/stackpilot/adapters/detect/__init__.py
src/stackpilot/adapters/detect/entrypoint.py
src/stackpilot/adapters/detect/health_probe.py
src/stackpilot/adapters/detect/health_routes.py
src/stackpilot/adapters/detect/package_manager.py
src/stackpilot/adapters/detect/ports.py
src/stackpilot/adapters/detect/scan.py
src/stackpilot/adapters/detect/scripts.py
src/stackpilot/adapters/detect/validation.py
src/stackpilot/adapters/detect/venv.py
src/stackpilot/diagnostics/__init__.py
src/stackpilot/diagnostics/dependency_check.py
src/stackpilot/diagnostics/errors.py
src/stackpilot/diagnostics/external_check.py
src/stackpilot/diagnostics/health_check.py
src/stackpilot/diagnostics/models.py
src/stackpilot/diagnostics/ports.py
src/stackpilot/diagnostics/project.py
src/stackpilot/diagnostics/python_check.py
src/stackpilot/diagnostics/runtime_check.py
src/stackpilot/diagnostics/service_check.py
src/stackpilot/diagnostics/summary.py
tests/__init__.py
tests/conftest.py
tests/test_adapters.py
tests/test_adaptive_health.py
tests/test_adaptive_health_demo.py
tests/test_cli_surface.py
tests/test_cli_ux.py
tests/test_dependency_graph.py
tests/test_dependency_system.py
tests/test_detection.py
tests/test_discovery.py
tests/test_doctor.py
tests/test_dx_day10.py
tests/test_executable_resolution.py
tests/test_external_dependencies.py
tests/test_external_dependency_integration.py
tests/test_external_retry.py
tests/test_fault_tolerance.py
tests/test_graph_view.py
tests/test_health.py
tests/test_hot_reload.py
tests/test_hot_reload_integration.py
tests/test_integration_lifecycle.py
tests/test_issues.py
tests/test_launch_env.py
tests/test_logger.py
tests/test_monitor_crash_isolation.py
tests/test_p0_external_graph_health.py
tests/test_p0_false_healthy_circular_cleanup.py
tests/test_p0_release_blockers.py
tests/test_p1_graph_metadata_failure.py
tests/test_p1_improvements.py
tests/test_p1_release_readiness.py
tests/test_p2_release.py
tests/test_packaging_cli.py
tests/test_packaging_regression.py
tests/test_performance_release.py
tests/test_port_detect.py
tests/test_process_manager.py
tests/test_production_lifecycle.py
tests/test_project_root_artifacts.py
tests/test_relation_infer.py
tests/test_release_polish.py
tests/test_release_refactor.py
tests/test_release_validation_fixes.py
tests/test_runner.py
tests/test_scalability_day14.py
tests/test_scanner_sync.py
tests/test_service_catalog.py
tests/test_startup_errors.py
tests/test_sync_runnable_stackfiles.py
tests/test_v010_release.py
tests/fixtures/adaptive-health/README.md
tests/fixtures/adaptive-health/Stackfile.py
tests/fixtures/adaptive-health/verify_demo.py
tests/fixtures/adaptive-health/api_none/main.py
tests/fixtures/adaptive-health/api_ready/main.py
tests/fixtures/adaptive-health/api_root/main.py
tests/fixtures/adaptive-health/api_v1_health/main.py
tests/fixtures/adaptive-health/app_express/package.json
tests/fixtures/adaptive-health/app_express/server.js
tests/fixtures/adaptive-health/app_nestjs/app.controller.ts
tests/fixtures/adaptive-health/app_nestjs/main.js
tests/fixtures/adaptive-health/app_nestjs/package.json
tests/fixtures/adaptive-health/web_django/manage.py
tests/fixtures/adaptive-health/web_django/project/__init__.py
tests/fixtures/adaptive-health/web_django/project/settings.py
tests/fixtures/adaptive-health/web_django/project/urls.py
tests/fixtures/adaptive-health/web_django/project/wsgi.py
tests/fixtures/adaptive-health/web_flask/app.py
tests/fixtures/stackpilot-test/Stackfile.py
tests/fixtures/stackpilot-test/analytics/main.py
tests/fixtures/stackpilot-test/auth/main.py
tests/fixtures/stackpilot-test/email/main.py
tests/fixtures/stackpilot-test/gateway/main.py
tests/fixtures/stackpilot-test/notifications/main.py
tests/fixtures/stackpilot-test/payments/main.py
tests/fixtures/stackpilot-test/postgres/main.py
tests/fixtures/stackpilot-test/redis/main.py
tests/fixtures/stackpilot-test/users/main.py
tests/helpers/__init__.py
tests/helpers/dependency_qa.py
tests/helpers/expected.py