Skip to content

Commit f3949ff

Browse files
committed
chore: clean repository for production release
Removed unnecessary files and organized structure: - Deleted development artifacts (cache, coverage, DS_Store) - Removed duplicate Venice_gitkraken_llm directory - Deleted screenshots that shouldn't be in code repo - Removed internal development docs and patches - Cleaned up tests directory (kept only test files) - Removed old WARP.md files (using AGENT_GUIDE.md) - Updated .gitignore with comprehensive Python patterns - Added REPOSITORY_STRUCTURE.md for clarity Repository now contains only production-ready files: - 5 core modules - 7 documentation files - 4 configuration files - 5 test files - 6 GitHub automation files Total: 28 essential files (clean, organized, public-ready)
1 parent 1d64186 commit f3949ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+724
-10881
lines changed

.gitignore

Lines changed: 140 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,148 @@
1-
# Python
1+
# Byte-compiled / optimized / DLL files
22
__pycache__/
33
*.py[cod]
44
*$py.class
5+
6+
# C extensions
57
*.so
8+
9+
# Distribution / packaging
610
.Python
7-
env/
8-
venv/
9-
.venv/
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
PIPFILE.lock
28+
29+
# PyInstaller
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
1034
pip-log.txt
1135
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
1239
.tox/
40+
.nox/
1341
.coverage
1442
.coverage.*
1543
.cache
1644
nosetests.xml
1745
coverage.xml
1846
*.cover
19-
*.log
20-
.gitattributes
21-
.next
22-
.pytest_cache/
47+
*.py,cover
2348
.hypothesis/
24-
.vscode/
49+
.pytest_cache/
50+
cover/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
db.sqlite3
60+
db.sqlite3-journal
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
.pybuilder/
74+
target/
75+
76+
# Jupyter Notebook
77+
.ipynb_checkpoints
2578

26-
# Environment
79+
# IPython
80+
profile_default/
81+
ipython_config.py
82+
83+
# pyenv
84+
.python-version
85+
86+
# pipenv
87+
Pipfile.lock
88+
89+
# poetry
90+
poetry.lock
91+
92+
# pdm
93+
.pdm.toml
94+
95+
# PEP 582
96+
__pypackages__/
97+
98+
# Celery stuff
99+
celerybeat-schedule
100+
celerybeat.pid
101+
102+
# SageMath parsed files
103+
*.sage.py
104+
105+
# Environments
27106
.env
28-
.env.local
29-
.env.backup
30-
.venv/
107+
.venv
108+
env/
31109
venv/
32110
ENV/
111+
env.bak/
112+
venv.bak/
113+
114+
# Spyder project settings
115+
.spyderproject
116+
.spyproject
117+
118+
# Rope project settings
119+
.ropeproject
33120

34-
# IDE
121+
# mkdocs documentation
122+
/site
123+
124+
# mypy
125+
.mypy_cache/
126+
.dmypy.json
127+
dmypy.json
128+
129+
# Pyre type checker
130+
.pyre/
131+
132+
# pytype static type analyzer
133+
.pytype/
134+
135+
# Cython debug symbols
136+
cython_debug/
137+
138+
# IDEs
35139
.vscode/
36140
.idea/
37141
*.swp
38142
*.swo
39143
*~
144+
*.sublime-project
145+
*.sublime-workspace
40146

41147
# OS
42148
.DS_Store
@@ -46,28 +152,36 @@ ENV/
46152
.Trashes
47153
ehthumbs.db
48154
Thumbs.db
155+
desktop.ini
49156

50-
# Secrets
157+
# Secrets and API keys
158+
.env*
159+
!.env.example
51160
secrets.json
52161
*.key
53162
*.pem
54-
id_rsa
55-
id_rsa.pub
163+
*.cert
56164
config.json
165+
api_keys.txt
57166

58-
# User data and generated content
167+
# Project specific
59168
generated/
60169
generated_images/
61170
output/
62171
*.generated.*
172+
screenshots/
173+
Screenshot*.png
174+
175+
# Development artifacts
176+
.ruff_cache/
177+
*.bak
178+
*.backup
179+
*.tmp
180+
*.temp
181+
diagnose_*.sh
182+
cleanup_list.txt
63183

64-
# Test artifacts
184+
# Test outputs
65185
test_output/
66186
test_results/
67-
68-
# Build outputs
69-
*.egg-info/
70-
dist/
71-
build/
72-
*.egg
73-
*.pyc
187+
.benchmarks/

AGENT.md

Lines changed: 0 additions & 127 deletions
This file was deleted.

0 commit comments

Comments
 (0)