feat(commands): add side alias for btw

This commit is contained in:
Peter Steinberger
2026-05-03 18:22:13 +01:00
parent c30531ddaf
commit 2805bbd3d7
16 changed files with 174 additions and 14 deletions

View File

@@ -7,7 +7,7 @@ title: "BTW side questions"
---
`/btw` lets you ask a quick side question about the **current session** without
turning that question into normal conversation history.
turning that question into normal conversation history. `/side` is an alias.
It is modeled after Claude Code's `/btw` behavior, but adapted to OpenClaw's
Gateway and multi-channel architecture.
@@ -121,6 +121,7 @@ Examples:
```text
/btw what file are we editing?
/side what changed while the main run continued?
/btw what does this error mean?
/btw summarize the current task in one sentence
/btw what is 17 * 19?

View File

@@ -164,7 +164,7 @@ Current source-of-truth:
- `/skill <name> [input]` runs a skill by name.
- `/allowlist [list|add|remove] ...` manages allowlist entries. Text-only.
- `/approve <id> <decision>` resolves exec approval prompts.
- `/btw <question>` asks a side question without changing future session context. See [BTW](/tools/btw).
- `/btw <question>` asks a side question without changing future session context. Alias: `/side`. See [BTW](/tools/btw).
</Accordion>
<Accordion title="Subagents and ACP">
@@ -457,7 +457,7 @@ Examples:
## BTW side questions
`/btw` is a quick **side question** about the current session.
`/btw` is a quick **side question** about the current session. `/side` is an alias.
Unlike normal chat:
@@ -473,6 +473,7 @@ Example:
```text
/btw what are we doing right now?
/side what changed while the main run continued?
```
See [BTW Side Questions](/tools/btw) for the full behavior and client UX details.