7a670fd5e2
Add user-facing launchers for the incremental update system: - update.bat: one-click update launcher - rollback.bat: rollback to previous version - tests/test_update_integration.py: integration tests for the update system - README.md: add incremental update guide (section 10) - .gitignore: add .update_cache/ entry Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
39 lines
396 B
Plaintext
39 lines
396 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
.pytest_cache/
|
|
|
|
# Python runtime (portable)
|
|
runtime/
|
|
|
|
# Virtual environments
|
|
.venv
|
|
|
|
# Database
|
|
*.sqlite3
|
|
*.sqlite3-wal
|
|
*.sqlite3-shm
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# System
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OpenCode state
|
|
.omo/
|
|
|
|
# Update cache (auto-generated by build_update.py)
|
|
.update_cache/
|
|
RUNTIME_CHANGED.txt
|