Files
Mortdecai/ingame/package.json
T
Seth 827850b8d7 Initial project scaffold: dataset schema, 31 seed training examples, Mineflayer bot framework, and 7-phase roadmap
- 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)
2026-03-18 01:51:28 -04:00

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"
}
}