pum-agent 0.2.7-beta.1 → 0.2.9-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -140,6 +140,7 @@ Set `PUM_DIR` to override PUM's complete configuration and data directory. Run `
140
140
  | `Ctrl+L` | Open the agent transcript selector |
141
141
  | `Shift+Tab` / `Ctrl+Shift+Tab` | Cycle through agent transcripts |
142
142
  | `Ctrl+H` | Open session history when the terminal reports the key distinctly |
143
+ | `Ctrl+N` | Open recent answers (News) |
143
144
  | `Ctrl+End` | Scroll to the end of the selected transcript |
144
145
  | `Ctrl+P` | Open settings |
145
146
  | `Ctrl+T` | Open supervised external triggers |
@@ -147,7 +148,7 @@ Set `PUM_DIR` to override PUM's complete configuration and data directory. Run `
147
148
  | `Ctrl+C` | Clear the selected non-empty draft; on an empty draft, press twice to quit |
148
149
  | `?` | Show all controls when the prompt is empty |
149
150
 
150
- Useful commands include `/login`, `/history`, `/triggers`, `/check-path`, `/clear`, `/compress`, and `/worktree`.
151
+ Useful commands include `/login`, `/history`, `/news`, `/triggers`, `/check-path`, `/clear`, `/compress`, and `/worktree`.
151
152
 
152
153
  ### Copy transcript text
153
154
 
@@ -171,6 +172,18 @@ Reload the `tmux` configuration after this change. Use the terminal's Shift-drag
171
172
 
172
173
  PUM limits remote OSC 52 payloads to 100,000 Base64 characters. This limit prevents large selections from corrupting terminal output.
173
174
 
175
+ ### Recent answers (News)
176
+
177
+ Open the News popup with `Ctrl+N` or `/news`. It lists the final answers of user-initiated turns, newest first. Each entry shows the user prompt and any follow-up steers that produced the answer, above the answer itself.
178
+
179
+ - `←` / `→` — move between answers
180
+ - `Space` — toggle an answer between read and unread
181
+ - `c` — copy the current answer to the clipboard
182
+ - `Enter` — reply to the current answer with a quoted draft
183
+ - `Esc` — close the popup
184
+
185
+ PUM marks an answer read automatically only when a new user prompt follows it directly in the transcript. If anything else appears between the answer and the next prompt — a subagent message, a trigger event, a queued message, or an in-progress stream — the answer stays unread.
186
+
174
187
  ## Parallel subagents
175
188
 
176
189
  PUM runs up to 10 active subagents by default. Configure a limit from 1 through 25 in Settings. Only starting and running agents count toward the limit. Each subagent has these resources:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pum-agent",
3
- "version": "0.2.7-beta.1",
3
+ "version": "0.2.9-beta.1",
4
4
  "description": "A compact terminal coding agent powered by pi and OpenTUI.",
5
5
  "license": "MIT",
6
6
  "type": "module",