# ============================================
# kimi-tachi (君たち) - Python .gitignore
# Multi-agent task orchestration for Kimi CLI
# ============================================

# ----------------------------------------
# Python
# ----------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# ----------------------------------------
# PyInstaller
# ----------------------------------------
*.manifest
*.spec

# ----------------------------------------
# Installer logs
# ----------------------------------------
pip-log.txt
pip-delete-this-directory.txt

# ----------------------------------------
# Unit test / coverage reports
# ----------------------------------------
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# ----------------------------------------
# Translations
# ----------------------------------------
*.mo
*.pot

# ----------------------------------------
# Django/Flask (not used but keep for safety)
# ----------------------------------------
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
instance/
.webassets-cache

# ----------------------------------------
# Jupyter Notebook
# ----------------------------------------
.ipynb_checkpoints

# ----------------------------------------
# IPython
# ----------------------------------------
profile_default/
ipython_config.py

# ----------------------------------------
# pyenv
# ----------------------------------------
.python-version

# ----------------------------------------
# pipenv
# ----------------------------------------
Pipfile.lock

# ----------------------------------------
# poetry
# ----------------------------------------
poetry.lock

# ----------------------------------------
# pdm
# ----------------------------------------
.pdm.toml

# ----------------------------------------
# PEP 582
# ----------------------------------------
__pypackages__/

# ----------------------------------------
# Celery
# ----------------------------------------
celerybeat-schedule
celerybeat.pid

# ----------------------------------------
# SageMath
# ----------------------------------------
*.sage.py

# ----------------------------------------
# Environments
# ----------------------------------------
.env
.env.local
.env.*.local
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/

# ----------------------------------------
# Spyder project settings
# ----------------------------------------
.spyderproject
.spyproject

# ----------------------------------------
# Rope project settings
# ----------------------------------------
.ropeproject

# ----------------------------------------
# mkdocs documentation
# ----------------------------------------
/site

# ----------------------------------------
# Type checkers
# ----------------------------------------
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/

# ----------------------------------------
# Cython debug symbols
# ----------------------------------------
cython_debug/

# ----------------------------------------
# IDEs and Editors
# ----------------------------------------

# PyCharm
.idea/

# VS Code
.vscode/
*.code-workspace

# Vim
*.swp
*.swo
*~

# Emacs
*~
\#*\#
\.\#*

# Sublime Text
*.sublime-project
*.sublime-workspace

# ----------------------------------------
# Operating Systems
# ----------------------------------------

# macOS
.DS_Store
.AppleDouble
.LSOverride
._*

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk

# Linux
*~
.nfs*

# ----------------------------------------
# kimi-tachi specific
# ----------------------------------------

# Kimi CLI local config (may contain sensitive info)
.kimi/

# MemNexus storage (project-specific memory)
.mnx/
.memnexus/

# Backup files
*.bak
*.backup
*~

# Session and state files (user-specific)
.kimi-tachi/
sessions/

# Temporary files during development
/tmp/
temp/
.tmp/

# Local test data
test_data/
fixtures/local/

# Coverage and reports (generated)
reports/

# Build artifacts (additional)
*.zip
*.tar.gz
out/
benchmark/
results/

# Design documents and examples (not for distribution)
docs/ARCHITECTURE_*.md
docs/BUILD_IN_PUBLIC_*.md
docs/CHANGELOG_*.md
docs/INSTALL.md
docs/MIGRATION_PLAN_*.md
docs/PHASE*_GUIDE.md
docs/phase*_design.md
docs/phase*_metrics_design.md
examples/
