mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-16 17:55:26 -04:00
c1674fc2aa
* refactor(tools): implement strict cohesive class coordinator pattern per #2917 * test: update edit_file tests to use EditFileTool class * fix(tools): restore tool_policy param and security backstop in coordinator * refactor(tools): migrate domain tools to agent_tools package per #2917 * test: update test imports for new agent_tools package * fix: resolve circular import between tool_execution and agent_tools * fix: remove leftover git conflict markers * fix(tools): resolve pytest failure and document _apply method * fix(tools): clean up whitespace and remove dead _tool_python helper --------- Co-authored-by: Alexandre Teixeira <111787685+alteixeira20@users.noreply.github.com>
93 lines
1.2 KiB
Plaintext
93 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
!static/js/editor/build/
|
|
venv/
|
|
.venv/
|
|
*.egg
|
|
|
|
# Environment
|
|
.env
|
|
.env.bak.*
|
|
!.env.example
|
|
|
|
# Data — all user data stays local
|
|
data/
|
|
!services/hwfit/data/
|
|
!services/hwfit/data/hf_models.json
|
|
logs/
|
|
*.log
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Node
|
|
node_modules/
|
|
services/node_modules/
|
|
services/data/
|
|
|
|
# IDE / Editor
|
|
.aider*
|
|
.claude/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Test capture artifacts (browser session dumps may contain personal content)
|
|
.playwright-mcp/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
*.cache
|
|
cache/
|
|
output.txt.txt
|
|
|
|
# Media (uploaded/generated)
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
*.gif
|
|
*.bmp
|
|
*.webp
|
|
*.tiff
|
|
*.pdf
|
|
|
|
# …except shipped demo assets in docs/ that the README links to.
|
|
!docs/*.jpg
|
|
!docs/*.jpeg
|
|
!docs/*.png
|
|
!docs/*.gif
|
|
!docs/*.webp
|
|
# …and curated docs/ subfolder assets (e.g. accessibility before/after shots).
|
|
!docs/**/*.png
|
|
!docs/**/*.jpg
|
|
!docs/**/*.gif
|
|
!docs/**/*.webp
|
|
|
|
# Reports and temp files
|
|
reports/
|
|
tasks/
|
|
scripts/compound/*.json
|
|
research_data/
|
|
**/search_analytics.json
|
|
|
|
# Internal dev/review notes — not for public repo
|
|
dev-docs/
|
|
# Windows-port working docs (local only, not for public repo)
|
|
docs/windows-port/
|
|
|
|
# Local config
|
|
compound.config.json
|
|
*.error.log
|
|
_scratch/
|
|
/odysseus/
|