827850b8d7
- IDEA.md: project scope (Minecraft ops AI assistant via qwen3-coder LoRA/SFT) - PLAN.md: complete roadmap with prior art analysis, architecture, phased plan, dev server docs - data/schema.json: training example JSON Schema with negative_output support - data/processed/seed_dataset.jsonl: 31 validated examples from repair code, prayer logs, session history - data/validate_dataset.py: schema validator with summary statistics - ingame/: Mineflayer bot framework (test_connect, spawn_bots, aware_bots with full event logging) - Directory structure for knowledge/, eval/, training/, agent/ (Phase 1.3+ work)
48 lines
497 B
Plaintext
48 lines
497 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
.venv/
|
|
venv/
|
|
*.so
|
|
|
|
# Node / Mineflayer
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Training checkpoints (large binary files)
|
|
training/checkpoints/
|
|
*.bin
|
|
*.safetensors
|
|
*.pt
|
|
*.gguf
|
|
|
|
# Eval results (regenerable)
|
|
eval/results/
|
|
|
|
# Secrets and credentials
|
|
GITEA_API.md
|
|
*.env
|
|
.env.*
|
|
credentials.json
|
|
*.key
|
|
*.pem
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Session-specific (kept locally, not shared)
|
|
SESSION.md
|