You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Replace blockquotes with semantic containers
Blockquotes were overloaded — same visual for user prompts and agent
reasoning. Split into two distinct admonition types:
- .prompt — purple-tinted left bar for copy-paste LLM prompts
- .agent-thought — gray italic for agent chain-of-thought
Quickstart prompts → {admonition} with :class: prompt
Recipe reasoning blocks → {admonition} with :class: agent-thought
why: Blockquotes imply passive commentary, but the content is either
actionable prompts or structured reasoning. The semantic mismatch
creates subtle DX friction under reading load.
Copy file name to clipboardExpand all lines: docs/quickstart.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,19 +16,35 @@ Using a different client? See {ref}`installation` and {ref}`clients`.
16
16
17
17
Ask your LLM:
18
18
19
-
> List all my tmux sessions and show me what's running in each pane.
19
+
```{admonition} Prompt
20
+
:class: prompt
21
+
22
+
List all my tmux sessions and show me what's running in each pane.
23
+
```
20
24
21
25
The agent will call `list_sessions`, then `list_panes` and `capture_pane` to inspect your workspace. You should see your tmux sessions, windows, and pane contents in the response.
22
26
23
27
## 3. Try it
24
28
25
29
Here are a few things to try:
26
30
27
-
> Create a new tmux session called "workspace" with a window named "build".
31
+
```{admonition} Prompt
32
+
:class: prompt
33
+
34
+
Create a new tmux session called "workspace" with a window named "build".
35
+
```
36
+
37
+
```{admonition} Prompt
38
+
:class: prompt
39
+
40
+
Send `make test` to the pane in my build window, then wait for it to finish and capture the output.
41
+
```
28
42
29
-
> Send `make test` to the pane in my build window, then wait for it to finish and capture the output.
0 commit comments