pi-extended-teams 2.2.4 → 2.2.5
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 +2 -0
- package/extensions/ui/agent-follow-view.ts +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,8 @@ This works well for multi-angle code review, root-cause investigation, parallel
|
|
|
55
55
|
|
|
56
56
|
With the editor empty, press Down to open agent navigation. Use Down/Up to move, `l` to expand large tool logs, `m` to message an agent, `i` to interrupt its currently running tool command, `x` to stop the whole agent, and Escape to return.
|
|
57
57
|
|
|
58
|
+
Scroll the transcript with Page Up/Page Down or the mouse wheel, including under Herdr. Press End or scroll back to the bottom to follow new output.
|
|
59
|
+
|
|
58
60
|
The lead can invoke the same command-only behavior with `interrupt_teammate({ agent_name: "agent" })`. It keeps the agent's session, task context, and file claims intact so you can send follow-up work. In-process cancellation is cooperative and may report that it is still pending; for tmux-backed agents, success means Pi's Escape key was delivered, not that command settlement was independently confirmed.
|
|
59
61
|
|
|
60
62
|
[](https://raw.githubusercontent.com/dantetekanem/pi-extended-teams/main/assets/pi-extended-teams-agent-navigation.png)
|
|
@@ -466,6 +466,13 @@ export function createAgentFollowComponent(
|
|
|
466
466
|
|
|
467
467
|
const sortedAgents = () => options.getAgents().slice().sort((a, b) => a.name.localeCompare(b.name));
|
|
468
468
|
|
|
469
|
+
const scrollTranscript = (delta: number) => {
|
|
470
|
+
if (!Number.isFinite(delta)) return;
|
|
471
|
+
const maxOffset = Math.max(0, lastTranscriptRows - lastBodyHeight);
|
|
472
|
+
offsetFromBottom = Math.max(0, Math.min(maxOffset, offsetFromBottom - Math.trunc(delta)));
|
|
473
|
+
tui.requestRender();
|
|
474
|
+
};
|
|
475
|
+
|
|
469
476
|
const selectRelative = (delta: number) => {
|
|
470
477
|
const agents = sortedAgents();
|
|
471
478
|
if (agents.length === 0) return;
|
|
@@ -713,7 +720,22 @@ export function createAgentFollowComponent(
|
|
|
713
720
|
clearInterval(refreshTimer);
|
|
714
721
|
if (forwardHerdrPageKeys) tui.terminal.write("\x1b[?1000l");
|
|
715
722
|
},
|
|
723
|
+
handleMouse(event: { type: string; wheelDelta?: number }) {
|
|
724
|
+
if (event.type !== "wheel") return;
|
|
725
|
+
scrollTranscript(event.wheelDelta ?? 0);
|
|
726
|
+
return { handled: true };
|
|
727
|
+
},
|
|
716
728
|
handleInput(data: string) {
|
|
729
|
+
const sgrMouse = /^\x1b\[<(\d+);\d+;\d+([Mm])$/.exec(data);
|
|
730
|
+
const mouseButton = sgrMouse ? Number(sgrMouse[1])
|
|
731
|
+
: data.length === 6 && data.startsWith("\x1b[M") ? data.charCodeAt(3) - 32 : undefined;
|
|
732
|
+
if (mouseButton !== undefined) {
|
|
733
|
+
if (sgrMouse?.[2] !== "m" && mouseButton >= 64 && mouseButton <= 93) {
|
|
734
|
+
const wheelButton = mouseButton & ~28;
|
|
735
|
+
if (wheelButton === 64 || wheelButton === 65) scrollTranscript(wheelButton === 64 ? -3 : 3);
|
|
736
|
+
}
|
|
737
|
+
return;
|
|
738
|
+
}
|
|
717
739
|
if (composingMessage) {
|
|
718
740
|
if (matchesKey(data, Key.ctrl("c"))) {
|
|
719
741
|
done();
|