praisonai code interactive REPL, /btw <question> answers a side question from a parallel, throwaway context โ the main taskโs history, place, and momentum stay untouched.
Quick Start
1
Launch a coding session
2
Ask a side question with /btw
Type The answer renders in a distinct Nothing is appended to the main conversation โ your refactor context is untouched.
/btw followed by your question:btw panel:3
Keep a one-line note (optional)
Add
--keep to record a single one-line note in the main history:How It Works
/btw builds a fresh, read-only Agent with minimal context โ just your question plus the current working directory โ and no tools, then runs it in isolation and renders the answer in a btw panel.
The main agent is never invoked for a side question. An empty question (/btw with no text) prints a usage hint instead of running anything.
Options
The only flag is--keep.
/btw vs /queue
Both defer work, but they touch the main task differently โ/btw is a throwaway parallel context, /queue costs the main context.
Reach for
/btw when the answer is just for you; reach for /queue when the answer should feed the main task.
Common Patterns
Look up an environment variable mid-refactor without derailing:Best Practices
Use /btw for context lookups, not follow-up work
Use /btw for context lookups, not follow-up work
/btw answers from a throwaway context with no tools โ perfect for โwhat does this mean?โ lookups. For work that changes files or should build on the main task, ask in the main conversation instead.Prefer /queue when the answer should influence the main task
Prefer /queue when the answer should influence the main task
If the side answer needs to feed back into the task,
/queue keeps it in the main history where the main agent can act on it. /btw intentionally discards its context.Keep questions self-contained
Keep questions self-contained
The side agent sees only your question and the current working directory โ not the main conversation. Phrase the question so it stands on its own.
Related
/queue
Defer a prompt into the main history for the main task to act on.
/recap
Render a read-only โwhere were weโ summary of the session.
Shell Escape
Run a shell command inline with
!cmd without spending a model turn.Slash Commands
The full interactive
/command reference.
