Skip to content

Commands en

ZoyLuo edited this page Jun 5, 2026 · 1 revision

Command Reference

All commands start with /aibot and require command permission (OP). The game supports Tab completion — below are the common ones; full parameters via completion.

🧬 Lifecycle

Command Description
/aibot spawn <name> Spawn an AI player (e.g. Bob)
/aibot list List active bots
/aibot despawn <name> Remove a bot

🧠 Brain (natural language)

Command Description
/aibot brain say <bot> <message> Give a goal in natural language (LLM-planned)
/aibot brain status <bot> Brain state (turns, token usage…)
/aibot brain reset <bot> Reset the bot's conversation context
/aibot brain say Bob make me an iron pickaxe
/aibot brain say Bob mine 3 diamonds

See Goal Engine, Brain & Tools.

⚙️ Deterministic tasks

Command Description
/aibot task assign <bot> <type> [args…] Assign a deterministic task (no LLM)
/aibot task status <bot> Inspect task progress
/aibot task abort <bot> Abort the current task

Common type examples (verified):

/aibot task assign Bob move 0 64 0
/aibot task assign Bob mine minecraft:stone 16
/aibot task assign Bob mine_ore minecraft:iron_ore 5
/aibot task assign Bob craft minecraft:stone_pickaxe 1
/aibot task assign Bob smelt minecraft:raw_iron minecraft:iron_ingot 3
/aibot task assign Bob gather minecraft:oak_log 24
/aibot task assign Bob eat

More types: strip_mine, mine_vein, build, farm, harvest, fish, trade, breed, follow, guard, hold, sleep, light_area, stockpile, deposit, withdraw, forage, attack… All tasks in Task System.

🧩 Memory

Command Description
/aibot memory remember <bot> … Remember a fact / state injection
/aibot memory recall <bot> Recall remembered info
/aibot memory forget <bot> … Forget an entry
/aibot memory mark_place <bot> <name> Name the current location
/aibot memory set_base <bot> / set_goal <bot> … Set home base / long-term goal

🤝 Multi-bot coordination (Jobs)

Command Description
/aibot job post … Post a job to the board
/aibot job list View the job board

🔭 Observe & diagnose

Command Description
/aibot observe tps TPS & performance
/aibot observe profile <bot> Profiling
/aibot observe replay … Behavior replay
/aibot log … Logging

🛠️ Development / verification

Command Description
/aibot verify <bot> <feature> Run built-in verification scenarios
/aibot deplint <bot> <spec> Offline-audit a goal's plan chain (no execution)
/aibot test … Low-level action tests

See Developer Guide.

💾 Persistence

Command Description
/aibot persist save Save bot / task state
/aibot persist reload Reload

Tip: almost everything can be triggered from the client Client Panel without typing.

Clone this wiki locally