README.md
pyproject.toml
setup.py
src/sqlfy/__init__.py
src/sqlfy/__main__.py
src/sqlfy/cache.py
src/sqlfy/clustering.py
src/sqlfy/config.py
src/sqlfy/core.py
src/sqlfy/dialects.py
src/sqlfy/main.py
src/sqlfy/migration_graph.py
src/sqlfy/models.py
src/sqlfy/reconstructor.py
src/sqlfy/analysis/__init__.py
src/sqlfy/analysis/asker.py
src/sqlfy/analysis/chunk_cache.py
src/sqlfy/analysis/classifier.py
src/sqlfy/analysis/cost_estimator.py
src/sqlfy/analysis/deps.py
src/sqlfy/analysis/differ.py
src/sqlfy/analysis/domains.py
src/sqlfy/analysis/drift_repair.py
src/sqlfy/analysis/health.py
src/sqlfy/analysis/impact.py
src/sqlfy/analysis/insights.py
src/sqlfy/analysis/integrity.py
src/sqlfy/analysis/lineage.py
src/sqlfy/analysis/linter.py
src/sqlfy/analysis/naming.py
src/sqlfy/analysis/ordering.py
src/sqlfy/analysis/pii_scanner.py
src/sqlfy/analysis/provenance.py
src/sqlfy/analysis/query.py
src/sqlfy/analysis/retriever.py
src/sqlfy/analysis/rollback.py
src/sqlfy/analysis/safety.py
src/sqlfy/analysis/simulator.py
src/sqlfy/analysis/stability.py
src/sqlfy/analysis/validator.py
src/sqlfy/cli/__init__.py
src/sqlfy/cli/analysis.py
src/sqlfy/cli/devtools.py
src/sqlfy/cli/evolution.py
src/sqlfy/cli/graph.py
src/sqlfy/cli/intelligence.py
src/sqlfy/cli/provenance.py
src/sqlfy/cli/schema.py
src/sqlfy/commands/__init__.py
src/sqlfy/commands/_git_diff.py
src/sqlfy/commands/_utils.py
src/sqlfy/commands/ai.py
src/sqlfy/commands/analysis.py
src/sqlfy/commands/build_graph.py
src/sqlfy/commands/devtools.py
src/sqlfy/commands/evolution.py
src/sqlfy/commands/export.py
src/sqlfy/commands/graph.py
src/sqlfy/commands/hooks.py
src/sqlfy/commands/impact.py
src/sqlfy/commands/provenance.py
src/sqlfy/commands/schema.py
src/sqlfy/commands/watch.py
src/sqlfy/contract_gen/__init__.py
src/sqlfy/contract_gen/generate_contracts.py
src/sqlfy/contracts/__init__.py
src/sqlfy/contracts/registry.py
src/sqlfy/contracts/analysis/__init__.py
src/sqlfy/contracts/analysis/pii_v1.py
src/sqlfy/contracts/analysis/v1.py
src/sqlfy/contracts/common/__init__.py
src/sqlfy/contracts/common/base.py
src/sqlfy/contracts/common/envelope.py
src/sqlfy/contracts/common/metadata.py
src/sqlfy/contracts/evolution/__init__.py
src/sqlfy/contracts/evolution/v1.py
src/sqlfy/contracts/graph/__init__.py
src/sqlfy/contracts/graph/v1.py
src/sqlfy/contracts/impact/__init__.py
src/sqlfy/contracts/impact/v1.py
src/sqlfy/domain/__init__.py
src/sqlfy/domain/models.py
src/sqlfy/domain/schema_state.py
src/sqlfy/domain/sqlglot_compat.py
src/sqlfy/domain/utils.py
src/sqlfy/graph/__init__.py
src/sqlfy/graph/builder.py
src/sqlfy/graph/clustering.py
src/sqlfy/graph/migration_graph.py
src/sqlfy/intelligence/__init__.py
src/sqlfy/intelligence/asker.py
src/sqlfy/intelligence/chunk_cache.py
src/sqlfy/intelligence/chunker.py
src/sqlfy/intelligence/retriever.py
src/sqlfy/migrations/__init__.py
src/sqlfy/migrations/cache.py
src/sqlfy/migrations/loader.py
src/sqlfy/migrations/parser.py
src/sqlfy/output/__init__.py
src/sqlfy/output/chunker.py
src/sqlfy/output/drawio_exporter.py
src/sqlfy/output/excalidraw_exporter.py
src/sqlfy/output/exporter.py
src/sqlfy/output/graph_export.py
src/sqlfy/output/grapher.py
src/sqlfy/output/layout.py
src/sqlfy/parsing/__init__.py
src/sqlfy/parsing/ast_helpers.py
src/sqlfy/parsing/column_parser.py
src/sqlfy/parsing/constraint_parser.py
src/sqlfy/parsing/ddl_handlers.py
src/sqlfy/parsing/dialects.py
src/sqlfy/parsing/extractors/__init__.py
src/sqlfy/parsing/extractors/alter_table.py
src/sqlfy/parsing/extractors/base.py
src/sqlfy/parsing/extractors/create_table.py
src/sqlfy/parsing/extractors/drop.py
src/sqlfy/semantic/__init__.py
src/sqlfy/semantic/normalizer.py
src/sqlfy/semantic/operations.py
src/sqlfy_cli.egg-info/PKG-INFO
src/sqlfy_cli.egg-info/SOURCES.txt
src/sqlfy_cli.egg-info/dependency_links.txt
src/sqlfy_cli.egg-info/entry_points.txt
src/sqlfy_cli.egg-info/requires.txt
src/sqlfy_cli.egg-info/top_level.txt
tests/test_cache.py
tests/test_chunk_cache.py
tests/test_chunker.py
tests/test_classifier.py
tests/test_cli_integration.py
tests/test_clustering.py
tests/test_core.py
tests/test_cost_estimation.py
tests/test_deps.py
tests/test_dialects.py
tests/test_diff_versions.py
tests/test_domains.py
tests/test_drawio_export.py
tests/test_drift_repair.py
tests/test_excalidraw_export.py
tests/test_git_diff.py
tests/test_graph_construction.py
tests/test_graph_export.py
tests/test_health.py
tests/test_hooks.py
tests/test_impact.py
tests/test_insights.py
tests/test_insights_migrations.py
tests/test_integrity.py
tests/test_layout.py
tests/test_lineage.py
tests/test_linter.py
tests/test_manifest.py
tests/test_migration_graph.py
tests/test_models.py
tests/test_modify_dual_path.py
tests/test_naming.py
tests/test_ordering.py
tests/test_pii_scan.py
tests/test_provenance.py
tests/test_provenance_more.py
tests/test_reconstructor.py
tests/test_rollback.py
tests/test_safety.py
tests/test_schema_state.py
tests/test_simulator.py
tests/test_sqlglot_compat.py
tests/test_stability.py
tests/test_watch.py