docs(HAI-115): remove --engine flag references from hai-board skill

- Update SKILL.md to reflect that AI engine starts automatically with dashboard
- Remove --engine option from documented CLI flags
- Consolidate AI engine feature list into main command description
- Update development mode example to use plain 'hai dashboard' command
This commit is contained in:
Dustin Byrne
2026-03-26 21:51:45 -04:00
parent e4f6582c59
commit d147a51d16

View File

@@ -11,33 +11,26 @@ description: Start and manage the hai dashboard web UI and AI engine. Use when a
hai dashboard
```
Opens the kanban board at http://localhost:4040.
Opens the kanban board at http://localhost:4040 and starts the AI engine.
Options:
- `--port <N>` or `-p <N>` — custom port (default: 4040)
- `--engine` — enable the AI engine (auto-triage, scheduling, execution)
- `--no-open` — don't open the browser automatically
### With AI engine
```bash
hai dashboard --engine
```
Enables:
The AI engine provides:
- **Triage processor** — auto-specifies tasks in the triage column
- **Scheduler** — moves todo tasks to in-progress when dependencies are met
- **Executor** — runs tasks in git worktrees via AI agents
- **Auto-merge** — squash-merges completed tasks to main
- **Cross-model review** — independent reviewer agent checks work at step boundaries
Options:
- `--port <N>` or `-p <N>` — custom port (default: 4040)
- `--no-open` — don't open the browser automatically
### Development mode
Run in two terminals:
```bash
# Terminal 1: start the server + engine
hai dashboard --engine
hai dashboard
# Terminal 2: watch-rebuild the React dashboard UI
pnpm dev:ui