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 +14 -1
- package/package.json +1 -1
- package/src/app.tsx +495 -37
- package/src/check-mode-prompt.ts +94 -0
- package/src/check-mode.ts +14 -3
- package/src/check-mutation.ts +36 -5
- package/src/check-policy.ts +89 -20
- package/src/clipboard.ts +17 -1
- package/src/commands.ts +4 -0
- package/src/config.ts +20 -0
- package/src/help-popup.tsx +3 -0
- package/src/login-flow.ts +27 -8
- package/src/main.tsx +19 -16
- package/src/news-popup.tsx +122 -0
- package/src/news.ts +118 -0
- package/src/pasted-text.ts +65 -0
- package/src/settings.ts +7 -2
- package/src/status-bar.tsx +11 -2
- package/src/subagents/manager.ts +16 -10
- package/src/tool-groups.ts +318 -0
- package/src/transcript.tsx +15 -3
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:
|