Remove 110+ files not referenced by SKILL.md or the core tools: - .clarity/ (internal planning docs) - docs/ (14 auxiliary docs) - integrations/ (optional AgentDB code — reference doc stays) - scenarios/ (67 test scenario files) - article-to-prototype/ (old generated example) - 9 unreferenced references/ files (activation, detection, testing) - Old export artifacts and migration guide - .ruff_cache/ added to .gitignore What remains: SKILL.md, README, 5 scripts, 14 reference docs (all referenced by SKILL.md), templates, stock-analyzer example, and the shared registry. Everything the skill needs to work. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
365 B
Text
45 lines
365 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Linter cache
|
|
.ruff_cache/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Runtime directories
|
|
cache/
|
|
data/
|
|
|
|
# AgentDB databases
|
|
*.db
|
|
agentdb.db
|
|
|
|
# Test files
|
|
test_*.py
|
|
!test_agentdb_learning.py
|
|
tests/
|