chore: add Codex and agent workflow foundation

This commit is contained in:
bisco
2026-03-20 19:01:17 +01:00
parent e8363733de
commit f0c6cbf49f
13 changed files with 490 additions and 0 deletions

65
.gitignore vendored Normal file
View File

@ -0,0 +1,65 @@
# OS / editor
.DS_Store
Thumbs.db
*.swp
*.swo
.idea/
.vscode/
# Python
__pycache__/
*.py[cod]
*$py.class
.python-version
# Virtualenvs
.venv/
venv/
env/
# Packaging / build
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
# Type check / lint caches
.mypy_cache/
.ruff_cache/
.pyre/
# Django
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
local_settings.py
# Environment / secrets
.env
.env.*
!.env.example
# Logs / pid
*.log
*.pid
# Jupyter
.ipynb_checkpoints/
# Codex / agents local-only state
.codex/tmp/
.codex/cache/
# Project runtime data
data/
tmp/