sqlseed-cli 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sqlseed_cli-0.2.4/.gitignore +125 -0
- sqlseed_cli-0.2.4/LICENSE +679 -0
- sqlseed_cli-0.2.4/PKG-INFO +118 -0
- sqlseed_cli-0.2.4/README.md +95 -0
- sqlseed_cli-0.2.4/pyproject.toml +61 -0
- sqlseed_cli-0.2.4/src/sqlseed_cli/__init__.py +66 -0
- sqlseed_cli-0.2.4/src/sqlseed_cli/_utils.py +22 -0
- sqlseed_cli-0.2.4/src/sqlseed_cli/main.py +619 -0
- sqlseed_cli-0.2.4/tests/.pylintrc +22 -0
- sqlseed_cli-0.2.4/tests/__init__.py +0 -0
- sqlseed_cli-0.2.4/tests/conftest.py +14 -0
- sqlseed_cli-0.2.4/tests/test_cli.py +504 -0
- sqlseed_cli-0.2.4/tests/test_cli_ai_commands.py +1294 -0
- sqlseed_cli-0.2.4/tests/test_cli_utils.py +160 -0
- sqlseed_cli-0.2.4/tests/test_cli_yaml_priority.py +336 -0
- sqlseed_cli-0.2.4/tests/test_config_execution_safety.py +216 -0
- sqlseed_cli-0.2.4/tests/test_snapshot_transform.py +102 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
*.egg-info/
|
|
20
|
+
.installed.cfg
|
|
21
|
+
*.egg
|
|
22
|
+
*.whl
|
|
23
|
+
*.tar.gz
|
|
24
|
+
|
|
25
|
+
# Virtual Environment
|
|
26
|
+
.venv/
|
|
27
|
+
venv/
|
|
28
|
+
env/
|
|
29
|
+
ENV/
|
|
30
|
+
|
|
31
|
+
# IDE
|
|
32
|
+
.vscode/
|
|
33
|
+
.idea/
|
|
34
|
+
.trae/
|
|
35
|
+
.claude/
|
|
36
|
+
.gemini/
|
|
37
|
+
.sonarlint/
|
|
38
|
+
*.swp
|
|
39
|
+
*.swo
|
|
40
|
+
*~
|
|
41
|
+
|
|
42
|
+
# Testing & Quality
|
|
43
|
+
.pytest_cache/
|
|
44
|
+
.benchmarks/
|
|
45
|
+
.coverage
|
|
46
|
+
coverage.xml
|
|
47
|
+
htmlcov/
|
|
48
|
+
.mutmut-cache
|
|
49
|
+
mutmut_*.log
|
|
50
|
+
mutmut_results_*.txt
|
|
51
|
+
.mypy_cache/
|
|
52
|
+
.dmypy.json
|
|
53
|
+
dmypy.json
|
|
54
|
+
.ruff_cache/
|
|
55
|
+
.hypothesis/
|
|
56
|
+
.import_linter_cache/
|
|
57
|
+
|
|
58
|
+
# sqlseed
|
|
59
|
+
*.db
|
|
60
|
+
*.sqlite
|
|
61
|
+
*.sqlite3
|
|
62
|
+
.sqlseed_cache/
|
|
63
|
+
snapshots/
|
|
64
|
+
.env
|
|
65
|
+
# validation harness scratch artifacts
|
|
66
|
+
scripts/complex_validation/dbs/_*.yaml
|
|
67
|
+
examples/notebooks/_*.yaml
|
|
68
|
+
examples/notebooks/_*.json
|
|
69
|
+
examples/notebooks/batch_config.yaml
|
|
70
|
+
*.nbconvert.ipynb
|
|
71
|
+
.ipynb_checkpoints/
|
|
72
|
+
|
|
73
|
+
# AI-generated config outputs
|
|
74
|
+
*_config.yaml
|
|
75
|
+
ai_analyze_out.yaml
|
|
76
|
+
ai_suggest_out/
|
|
77
|
+
out.yaml
|
|
78
|
+
full_config_v2.yaml
|
|
79
|
+
products_order_items.yaml
|
|
80
|
+
test_merchants.yaml
|
|
81
|
+
|
|
82
|
+
# OS
|
|
83
|
+
.DS_Store
|
|
84
|
+
|
|
85
|
+
# AI agent work directories
|
|
86
|
+
.agents/
|
|
87
|
+
|
|
88
|
+
# Other
|
|
89
|
+
.worktrees/
|
|
90
|
+
.sisyphus/
|
|
91
|
+
|
|
92
|
+
# IDE knowledge graph cache (local only)
|
|
93
|
+
.understand-anything/
|
|
94
|
+
|
|
95
|
+
# AI batch edit scripts (one-shot, not for repo)
|
|
96
|
+
.edits/
|
|
97
|
+
_edit_helper.py
|
|
98
|
+
|
|
99
|
+
# Local agent tool cache (not for repo)
|
|
100
|
+
.omo/
|
|
101
|
+
|
|
102
|
+
# Node.js (for ctxlint)
|
|
103
|
+
node_modules/
|
|
104
|
+
|
|
105
|
+
# mkdocs build output (deployed via GitHub Actions, not committed)
|
|
106
|
+
site/
|
|
107
|
+
|
|
108
|
+
# CodeFlow warning/issue reports (local analysis artifacts, not for repo)
|
|
109
|
+
codeflow-warnings*.md
|
|
110
|
+
codeflow_issues_report.md
|
|
111
|
+
|
|
112
|
+
# Temporary tool outputs (not for repo)
|
|
113
|
+
test.log
|
|
114
|
+
.understand-anything/
|
|
115
|
+
.playwright-mcp/
|
|
116
|
+
|
|
117
|
+
# LLM validation loop engineering (temporary, not committed)
|
|
118
|
+
scripts/_*.py
|
|
119
|
+
data_quality_demo/*.db
|
|
120
|
+
data_quality_demo/*.log
|
|
121
|
+
data_quality_demo/*_config.yaml
|
|
122
|
+
data_quality_demo/*_config_v*.yaml
|
|
123
|
+
data_quality_demo/_*.json
|
|
124
|
+
data_quality_demo/_report_*.md
|
|
125
|
+
data_quality_demo/_phase1_catalog.md
|