> For the complete documentation index, see [llms.txt](https://simplymines.gitbook.io/simplymines-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://simplymines.gitbook.io/simplymines-docs/introduction/commands.md).

# Commands

## Commands

All commands use `/sm`, `/simplymines`, or `/simplymine`.

Running `/sm` with no arguments opens the Mine Browser GUI.

#### Usage: `/sm`

#### Permission: `simplymines.admin`

{% hint style="info" %}
All commands that take `<name>` tab-complete with the list of existing mine names.
{% endhint %}

### Mine Management

### 🆕 Create Mine

Creates a new mine from your current wand selection. See [Mine Management](/simplymines-docs/introduction/features/mine-management.md).

#### Usage: `/sm create <name>`

#### Permission: `simplymines.create`

### ✏️ Edit Mine

Opens the mine editor GUI directly for a mine — block composition, requirements, reset settings, and more.

#### Usage: `/sm edit <name>`

#### Permission: `simplymines.admin`

### 📐 Reassign Mine

Moves an existing mine's region to your current wand selection.

#### Usage: `/sm reassign <name>`

#### Permission: `simplymines.move`

### ✍️ Rename Mine

Renames a mine, including its JSON file on disk.

#### Usage: `/sm rename <old> <new>`

#### Permission: `simplymines.rename`

### 🗑️ Delete Mine

Permanently deletes a mine and removes its JSON file.

#### Usage: `/sm delete <name>`

#### Permission: `simplymines.delete`

{% hint style="danger" %}
There's no confirmation prompt or undo — the mine's JSON file is deleted immediately.
{% endhint %}

### Resets

### ⏱️ Force Reset

Force-resets a specific mine immediately, regardless of its configured reset requirements.

#### Usage: `/sm reset <name>`

#### Permission: `simplymines.reset`

### ⏸️ Disable / ▶️ Enable

Disables or re-enables the automatic reset timer for a mine.

#### Usage: `/sm disable <name>` and `/sm enable <name>`

#### Permission: `simplymines.disable` / `simplymines.enable`

### 💾 Save

Force-saves a mine to disk immediately, instead of waiting for the next periodic auto-save.

#### Usage: `/sm save <name>`

#### Permission: `simplymines.save`

### Teleport and Tools

### 🪓 Toggle Wand

Toggles your selection wand (Wooden Hoe) on/off.

#### Usage: `/sm tool`

#### Permission: `simplymines.tool`

### 📍 Set Teleport

Sets the mine's reset teleport point to your exact current location.

#### Usage: `/sm setteleport <name>`

#### Permission: `simplymines.setteleport`

### 🚀 Teleport

Teleports you to the mine's designated teleport point.

#### Usage: `/sm teleport <name>`

#### Permission: `simplymines.teleport` **and** `simplymines.teleport.<name>`

{% hint style="warning" %}
Unlike other subcommands, `/sm teleport <name>` checks **both** the base `simplymines.teleport` permission and a per-mine `simplymines.teleport.<name>` permission. See [Permissions](/simplymines-docs/introduction/permissions.md) for details.
{% endhint %}

### Administration

### 🔃 Reload

Reloads the config, reloads mines from disk, and clears the workload queue.

#### Usage: `/sm reload`

#### Permission: `simplymines.reload`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://simplymines.gitbook.io/simplymines-docs/introduction/commands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
