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)
14 lines
316 B
JSON
14 lines
316 B
JSON
{
|
|
"name": "mc-ai-training-bots",
|
|
"version": "0.1.0",
|
|
"description": "Mineflayer bots for Minecraft AI model training and evaluation",
|
|
"private": true,
|
|
"scripts": {
|
|
"test-connect": "node test_connect.js",
|
|
"spawn-bots": "node spawn_bots.js"
|
|
},
|
|
"dependencies": {
|
|
"mineflayer": "^4.23.0"
|
|
}
|
|
}
|