* feat(memory): add memory-setup tool and rewrite script * fix(memory): correct OPENCODE_MEMORY_DIR in docker-compose * test(memory): add setup-memory tests with mock remote * docs(memory): add ADR and handoff * docs(handoff): set PR number * fix(docs): correct handoff and ADR filenames to PR number * docs: update project map + handoff + ADR * fix(memory): address code review comments --------- Co-authored-by: opencode-agent <agent@slaid098.dev>
46 lines
685 B
Text
46 lines
685 B
Text
# app_data (runtime, not in git except .gitkeep structure)
|
|
app_data/*
|
|
!app_data/.gitkeep
|
|
!app_data/workspaces/
|
|
app_data/workspaces/*
|
|
!app_data/workspaces/.gitkeep
|
|
!app_data/ssh/
|
|
app_data/ssh/*
|
|
!app_data/ssh/.gitkeep
|
|
|
|
# opencode-memory lives in app_data/ as a separate git repo (clone target of memory-setup)
|
|
app_data/opencode-memory/
|
|
|
|
# opencode plugin node_modules
|
|
.opencode/node_modules/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
*.egg
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.spec
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
!.env.template
|
|
|
|
# Testing / quality caches
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# OS
|
|
.DS_Store
|