@omercnet/paseo-agent-crew 0.2.3
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/CHANGELOG.md +48 -0
- package/LICENSE +21 -0
- package/README.md +131 -0
- package/bun.lock +1213 -0
- package/client/crew.ts +267 -0
- package/client/main.tsx +1043 -0
- package/docs/images/agent-crew-action.png +0 -0
- package/docs/images/agent-crew-overview.png +0 -0
- package/index.client.tsx +24 -0
- package/package.json +57 -0
- package/paseo-plugin.json +6 -0
- package/tsconfig.json +16 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
### Migration
|
|
6
|
+
|
|
7
|
+
- migrate the plugin to the Paseo 0.8 runtime-entry layout
|
|
8
|
+
- move client modules under `client/` and shared code under `shared/`
|
|
9
|
+
- switch to first-class `parentAgentId` handling with bounded cycles
|
|
10
|
+
- add an explicit pending-permission modal with Allow and Deny actions
|
|
11
|
+
- pin Paseo plugin packages to `0.8.0-beta.1`
|
|
12
|
+
|
|
13
|
+
## [0.2.3](https://github.com/omercnet/paseo-plugins/compare/agent-crew-v0.2.2...agent-crew-v0.2.3) (2026-09-10)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* upgrade plugins to Paseo 0.8.0 ([c6b4e40](https://github.com/omercnet/paseo-plugins/commit/c6b4e4081fc9527de0ca6183a3903ff5ec4f93c4))
|
|
19
|
+
* upgrade plugins to Paseo 0.8.0 ([d7ad454](https://github.com/omercnet/paseo-plugins/commit/d7ad4540d2e1875bdf4a4d21f76ded25cac2f3dc))
|
|
20
|
+
|
|
21
|
+
## [0.2.2](https://github.com/omercnet/paseo-agent-crew/compare/v0.2.1...v0.2.2) (2026-09-08)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* derive client API types from host SDK ([#7](https://github.com/omercnet/paseo-agent-crew/issues/7)) ([ffdfacf](https://github.com/omercnet/paseo-agent-crew/commit/ffdfacf9e4f0bd43f84e973176b2b2ffd7fe6350))
|
|
27
|
+
|
|
28
|
+
## [0.2.1](https://github.com/omercnet/paseo-agent-crew/compare/v0.2.0...v0.2.1) (2026-09-08)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* clean up Paseo 0.8 migration ([#5](https://github.com/omercnet/paseo-agent-crew/issues/5)) ([02912fb](https://github.com/omercnet/paseo-agent-crew/commit/02912fbb73956420ae8315bceea7025e71dd7a71))
|
|
34
|
+
|
|
35
|
+
## [0.2.0](https://github.com/omercnet/paseo-agent-crew/compare/v0.1.0...v0.2.0) (2026-09-08)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* migrate agent crew to paseo 0.8 ([#3](https://github.com/omercnet/paseo-agent-crew/issues/3)) ([3014f1c](https://github.com/omercnet/paseo-agent-crew/commit/3014f1c2f1afb8187cb2ac0e86f2b442bb805911))
|
|
41
|
+
|
|
42
|
+
## 0.1.0 (2026-09-02)
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
- add the workspace-wide Agent Crew Explorer panel
|
|
47
|
+
- organize managed agents into collapsible cross-workspace delegation trees
|
|
48
|
+
- add status filters, search, navigation, and guarded agent controls
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Omer Cohen
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Agent Crew
|
|
2
|
+
|
|
3
|
+
See and control every managed Paseo agent working in a workspace. Agent Crew adds a
|
|
4
|
+
workspace-context Explorer panel plus an `Open Agent Crew` Command Center item.
|
|
5
|
+
|
|
6
|
+
It answers "which crews are active here, and which agent needs me now?" while preserving managed
|
|
7
|
+
parent-child relationships across workspace boundaries.
|
|
8
|
+
|
|
9
|
+
## Screenshots
|
|
10
|
+
|
|
11
|
+
Names, workspaces, and task details in these screenshots are synthetic. The rendered page was
|
|
12
|
+
rewritten before capture so no private project or session identifiers are published.
|
|
13
|
+
|
|
14
|
+
### Crew overview
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
### Safe action confirmation
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
## What it shows
|
|
23
|
+
|
|
24
|
+
- Every non-archived managed agent in the current workspace, organized into orchestration trees.
|
|
25
|
+
- Managed descendants remain in their crew when they run in another workspace.
|
|
26
|
+
- Out-of-workspace ancestors required to explain a local agent appear as dimmed, open-only context;
|
|
27
|
+
unrelated foreign branches are pruned.
|
|
28
|
+
- Independent agents appear as top-level rows, while collapsible tree rails and descendant counts
|
|
29
|
+
distinguish delegated crews.
|
|
30
|
+
- Provider and model, workspace, last error, state, and activity age for each visible agent.
|
|
31
|
+
- Counts and filters for Needs input, Failed, Working, Ready, Idle, and Closed.
|
|
32
|
+
- Text search over title, agent ID, provider, model, working directory, workspace, and labels.
|
|
33
|
+
- Live agent and workspace subscriptions, debounced by 500 ms, plus a 30-second backstop refresh.
|
|
34
|
+
- Direct navigation to a selected agent when the host provides agent navigation.
|
|
35
|
+
- Explicit Allow and Deny controls for visible pending permission requests.
|
|
36
|
+
|
|
37
|
+
## Controls
|
|
38
|
+
|
|
39
|
+
Each row exposes the operations available through the public Paseo SDK:
|
|
40
|
+
|
|
41
|
+
- **Open** navigates to the selected agent.
|
|
42
|
+
- **Expand or collapse** shows or hides a managed branch without changing agent state.
|
|
43
|
+
- **Nudge** sends a follow-up to an idle or waiting agent.
|
|
44
|
+
- **Interrupt and redirect** sends a new direction to a running agent. Paseo stops the active turn
|
|
45
|
+
before starting that direction, and the confirmation dialog says so explicitly.
|
|
46
|
+
- **Detach** removes a managed child branch from its parent while allowing it to continue
|
|
47
|
+
independently. Root agents and context-only ancestors do not expose this action.
|
|
48
|
+
- **Archive** stops and removes the selected agent. Same-workspace descendants may be archived with
|
|
49
|
+
it; cross-workspace descendants may detach and continue. The confirmation dialog describes that
|
|
50
|
+
behavior before the action runs.
|
|
51
|
+
- **Permission allow / deny** opens one explicit request modal for the selected pending request and
|
|
52
|
+
answers it with `request.id`; no automatic approval policy runs.
|
|
53
|
+
|
|
54
|
+
Every mutating control uses a confirmation dialog. Successful actions show a toast; SDK errors are
|
|
55
|
+
shown without hiding the failure.
|
|
56
|
+
|
|
57
|
+
## How it reads state
|
|
58
|
+
|
|
59
|
+
`usePaseo().agents.list()` and `usePaseo().workspaces.list()` page the selected daemon directory at
|
|
60
|
+
200 entries per page, up to 10 pages. Parent relationships come from the first-class
|
|
61
|
+
`parentAgentId` field when the public 0.8 SDK exposes it, with a legacy label fallback for older
|
|
62
|
+
snapshots. The workspace crew contains local agents, their managed descendants, and only the foreign
|
|
63
|
+
ancestor paths needed to explain local membership. Archived agents are omitted, malformed parent
|
|
64
|
+
cycles are bounded, and siblings are ordered by actionable state, creation time, then ID.
|
|
65
|
+
|
|
66
|
+
State precedence is:
|
|
67
|
+
|
|
68
|
+
1. Failed
|
|
69
|
+
2. Needs input
|
|
70
|
+
3. Working
|
|
71
|
+
4. Ready
|
|
72
|
+
5. Closed
|
|
73
|
+
6. Idle
|
|
74
|
+
|
|
75
|
+
Failed takes precedence over pending permission state so an errored agent is never presented as an
|
|
76
|
+
agent that can resume normally.
|
|
77
|
+
|
|
78
|
+
## Limits
|
|
79
|
+
|
|
80
|
+
Agent Crew intentionally stays inside the public Paseo plugin SDK.
|
|
81
|
+
|
|
82
|
+
- It shows managed Paseo agents only. Native provider subagents are not exposed by the public plugin
|
|
83
|
+
SDK.
|
|
84
|
+
- Workspace-less top-level agents are outside every workspace crew; workspace-less descendants of
|
|
85
|
+
visible members remain in that crew.
|
|
86
|
+
- It does not add heartbeat controls, private cancellation calls, or direct daemon API access.
|
|
87
|
+
- Sending to a running agent interrupts its active turn; there is no separate non-interrupting send
|
|
88
|
+
operation.
|
|
89
|
+
- If the daemon contains more than 2,000 agents, the panel warns that its directory snapshot may
|
|
90
|
+
omit agents in this workspace or their descendants.
|
|
91
|
+
|
|
92
|
+
## Install
|
|
93
|
+
|
|
94
|
+
Paseo plugins are trusted, unsandboxed code. Review the source before installing it.
|
|
95
|
+
|
|
96
|
+
From GitHub:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
paseo plugin add omercnet/paseo-plugins:agent-crew
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
From a local checkout on the Paseo daemon host:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
git clone https://github.com/omercnet/paseo-plugins.git
|
|
106
|
+
cd paseo-plugins/agent-crew
|
|
107
|
+
bun install --frozen-lockfile
|
|
108
|
+
paseo plugin install "$PWD"
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Open a workspace, choose **New tab** in Explorer, then select **Agent Crew**. The **Open Agent Crew**
|
|
112
|
+
Command Center action opens it directly.
|
|
113
|
+
|
|
114
|
+
## Develop
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
bun install
|
|
118
|
+
bun run check
|
|
119
|
+
bun test
|
|
120
|
+
bun run test:coverage
|
|
121
|
+
bun run typecheck
|
|
122
|
+
paseo plugin install /absolute/path/to/paseo-agent-crew
|
|
123
|
+
paseo plugin reload agent-crew
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
The manifest requires Paseo `^0.8.0`, which accepts Paseo 0.8.x including compatible prereleases.
|
|
127
|
+
The project pins `@getpaseo/cli`, `@getpaseo/client`, `@getpaseo/plugin`, and
|
|
128
|
+
`@getpaseo/protocol` to stable `0.8.0`. React 19.1 and React Native 0.81 match the host.
|
|
129
|
+
|
|
130
|
+
Release Please maintains versions, changelog entries, component tags, and GitHub releases from
|
|
131
|
+
Conventional Commits in the monorepo.
|