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
|`interrupted`| Agent was interrupted (e.g. Ctrl+C) |
65
66
|`workspace`| No prompt, manual workspace only |
66
67
67
68
## Session Capture
@@ -78,7 +79,7 @@ The core workflow is iterative:
78
79
4. Repeat until you're happy
79
80
5. Merge
80
81
81
-
Comments and pending prompts are stored in `.workstreams/comments/` and `.workstreams/pending-prompts/`. They're automatically included when resuming and cleared on success.
82
+
Comments are stored in `.workstreams/comments/` and automatically included when resuming. They're cleared on success.
Copy file name to clipboardExpand all lines: docs/guide/dashboard.md
+6-41Lines changed: 6 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,46 +1,24 @@
1
1
# Dashboard
2
2
3
-
The interactive dashboard is the central hub for managing workstreams.
3
+
The dashboard is the recommended way to interact with your workstreams. It shows all workstreams at a glance and lets you view diffs, review changes, resume agents, and open editors — all from a single screen.
4
4
5
5
```bash
6
6
ws dashboard
7
7
```
8
8
9
9

10
10
11
-
## Layout
12
-
13
-
The dashboard displays workstreams as compact cards:
Resume a workstream to send new instructions or review comments to the agent. Resuming is done via`ws run` with the `-p` flag.
3
+
Resume a workstream to send new instructions or review feedback to the agent. Use`ws run` with the `-p` flag.
4
4
5
5
## Resume with New Instructions
6
6
@@ -12,40 +12,19 @@ The agent continues from where it left off, with full context of its previous wo
12
12
13
13
## Resume with Review Comments
14
14
15
-
After adding inline comments in the [diff viewer](/guide/reviewing), resume the workstream. Pending comments are included automatically:
15
+
After adding inline comments in the [diff viewer](/guide/reviewing), resume the workstream. Comments are included automatically:
16
16
17
17
```bash
18
18
ws run auth -p "Address the review comments"
19
19
```
20
20
21
21
Comments are cleared after a successful resume.
22
22
23
-
## Combined Resume
24
-
25
-
When resuming, all pending context is combined in order:
26
-
27
-
1. Stored review comments (from diff viewer)
28
-
2. Pending prompt (set from dashboard)
29
-
3.`-p` flag text
30
-
31
-
```bash
32
-
ws run auth -p "And fix the edge case on line 42"
33
-
```
34
-
35
-
## Setting a Pending Prompt
36
-
37
-
From the dashboard (`ws dashboard`), select a workstream and choose "Set continuation prompt". This stores a prompt that will be included on the next resume.
38
-
39
23
## How Resume Works
40
24
41
-
When resuming a Claude session:
42
-
43
-
1. The stored `sessionId` is retrieved from state
25
+
1. The stored `session_id` is retrieved from state
44
26
2.`--resume <sessionId>` is passed to Claude
45
-
3. Your new instructions are passed via `-p`
46
-
4. The agent picks up with full conversation context
47
-
5. Any new changes are auto-committed on success
48
-
49
-
::: info
50
-
Session resume is currently supported for **Claude** only. For Codex and Aider, resume starts a fresh session in the existing worktree (changes from the previous run are still present).
51
-
:::
27
+
3. Any stored review comments are included in the prompt
28
+
4. Your `-p` text is appended
29
+
5. The agent picks up with full conversation context
0 commit comments