BREAKING: Removes 746,569 lines of outdated documentation from root folder ## Summary - Deleted 2,060 report/documentation files from root folder - Kept only essential files: README.md, CLAUDE.md - Updated .gitignore and config/tarpaulin.toml - Reorganized config files into config/ directory ## Removed Content Categories - Agent reports (AGENT_*.md, AGENT*.txt) - Wave reports (WAVE_*.md, DQN_*.md) - Implementation summaries - Quick references and summaries - Test reports and validation docs - Deployment scripts (obsolete .sh files) - Legacy config files and logs ## Preserved - README.md - Main project documentation - CLAUDE.md - Claude Code configuration - docs/archive/ - Historical files for reference - docs/ folder - Current documentation - All source code unchanged 🐝 Hive Mind Collective Intelligence Cleanup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
142 lines
2.0 KiB
Plaintext
142 lines
2.0 KiB
Plaintext
# Build artifacts
|
|
/target/
|
|
target/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment variables and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.runpod
|
|
!.env.runpod.template
|
|
|
|
# Secret files and directories
|
|
/config/secrets/
|
|
secrets/
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
*.cert
|
|
|
|
# Credential files
|
|
credentials.json
|
|
credentials.toml
|
|
auth.json
|
|
auth.toml
|
|
|
|
# Certificate security files
|
|
certs/security.env
|
|
certs/production.env.template
|
|
certs/*.serial
|
|
certs/**/*.serial
|
|
|
|
# API keys and tokens
|
|
*api_key*
|
|
*token*
|
|
*secret*
|
|
!*secret*.example
|
|
|
|
# Database credentials
|
|
database.conf
|
|
db_config.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# GPU test artifacts
|
|
gpu_test.rs
|
|
simd_bench
|
|
simd_bench.rs
|
|
temp_script.sh
|
|
|
|
# Build artifacts (additional)
|
|
**/*.rs.bk
|
|
*.pdb
|
|
Cargo.lock
|
|
|
|
# Coverage reports
|
|
tarpaulin-report.html
|
|
cobertura.xml
|
|
lcov.info
|
|
|
|
# Benchmark results
|
|
target/criterion/
|
|
target/bench/
|
|
|
|
# CI artifacts
|
|
audit-results.json
|
|
geiger-report.md
|
|
security-report.md
|
|
outdated.json*.profraw
|
|
|
|
# Python virtual environments and cache
|
|
venv/
|
|
.venv/
|
|
.venv_databento/
|
|
venv_databento/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
.python-version
|
|
|
|
# ML model checkpoints (keep only best/final)
|
|
ml/trained_models/*_epoch_*.safetensors
|
|
ml/trained_models/*_interrupted_*.safetensors
|
|
!ml/trained_models/*_best_model.safetensors
|
|
!ml/trained_models/*_final_epoch*.safetensors
|
|
|
|
|
|
# Removed Windows wrapper files per user request
|
|
hive-mind-prompt-*.txt
|
|
|
|
|
|
# Removed Windows wrapper files per user request
|
|
hive-mind-prompt-*.txt
|
|
|
|
# Claude Flow generated files
|
|
.claude/settings.local.json
|
|
.mcp.json
|
|
claude-flow.config.json
|
|
.swarm/
|
|
.hive-mind/
|
|
.claude-flow/
|
|
memory/
|
|
coordination/
|
|
memory/claude-flow-data.json
|
|
memory/sessions/*
|
|
!memory/sessions/README.md
|
|
memory/agents/*
|
|
!memory/agents/README.md
|
|
coordination/memory_bank/*
|
|
coordination/subtasks/*
|
|
coordination/orchestration/*
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-journal
|
|
*.sqlite-wal
|
|
claude-flow
|
|
# Removed Windows wrapper files per user request
|
|
hive-mind-prompt-*.txt
|