# Commands

The plugin registers 6 slash commands that are available in every Hermes session.

## Mode Commands

### `/fein`

Set the plugin to **fein** (full pipeline) mode. The orchestrator runs the complete specialist pipeline: adventurer → architect → builder → reviewer.

```
/fein
→ Mode set to fein
```

In fein mode, all stages are mandatory — the orchestrator does not skip phases.

> **Pro tip:** Pair `/fein` with `/goal` for multi-session work. Set `/goal draft Run the fein pipeline to implement OAuth` — the goal persists across sessions and restores your mode on `/goal resume`. See [Goals docs](https://hermes-agent.nousresearch.com/docs/user-guide/features/goals).

### `/sonar`

Set the plugin to **sonar** (research) mode. Only the adventurer and architect/planner run. No output is created.

```
/sonar
→ Mode set to sonar
```

The `pre_tool_call` hook blocks `edit`, `write`, and `bash` in sonar mode — read-only guarantees.

### `/blitz`

Set the plugin to **blitz** (fast execution) mode. The builder runs directly with minimal overhead. No adventurer exploration or reviewer validation.

```
/blitz
→ Mode set to blitz
```

Use for quick fixes on known territory where you trust the outcome.

### `/mode`

Show the current mode and read-only status.

```
/mode
→ **Maestria Status**
  Mode: **fein**
  Read-only: No
```

## Workflow Commands

### `/review`

Set the methodology pipeline to **fein** mode, enabling the full pipeline with review gate.

```
/review
→ Switched to fein mode. Pipeline: adventurer / architect -> builder -> reviewer
```

In the current implementation, `/review` activates the full pipeline mode. Dedicated review-trigger behavior is planned for a future release.

### `/plan`

Set the methodology pipeline to **fein** mode, enabling the full pipeline with planning phase.

```
/plan
→ Switched to fein mode. Pipeline: adventurer / architect -> builder -> reviewer
```

In the current implementation, `/plan` activates the full pipeline mode. Dedicated planning-trigger behavior is planned for a future release.

## Hermes Core Commands

These are available in every Hermes session regardless of plugin:

| Command        | What it does                                        |
| -------------- | --------------------------------------------------- |
| `/goal <text>` | Set a standing objective that survives across turns |
| `/goal pause`  | Pause auto-continuation without clearing the goal   |
| `/goal resume` | Resume the goal loop                                |
| `/goal clear`  | Drop the goal entirely                              |
| `/stop`        | Interrupt the current turn                          |
| `/resume`      | Resume a compacted session                          |

See the [Hermes Goals documentation](https://hermes-agent.nousresearch.com/docs/user-guide/features/goals) for details.