@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
|
Binary file
|
|
Binary file
|
package/index.client.tsx
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { PluginClientContext } from "@getpaseo/plugin/client";
|
|
2
|
+
import { AgentCrew } from "./client/main";
|
|
3
|
+
|
|
4
|
+
export default function contribute(client: PluginClientContext) {
|
|
5
|
+
client.addWorkspacePanel({
|
|
6
|
+
id: "crew",
|
|
7
|
+
title: "Agent Crew",
|
|
8
|
+
icon: "Network",
|
|
9
|
+
context: "workspace",
|
|
10
|
+
locations: ["explorer"],
|
|
11
|
+
Component: AgentCrew,
|
|
12
|
+
});
|
|
13
|
+
client.addCommandCenterItem({
|
|
14
|
+
id: "open-crew",
|
|
15
|
+
title: "Open Agent Crew",
|
|
16
|
+
icon: "Network",
|
|
17
|
+
keywords: ["agents", "subagents", "orchestration", "delegation", "workers", "workspace"],
|
|
18
|
+
context: "workspace",
|
|
19
|
+
onSelect({ openPanel }) {
|
|
20
|
+
openPanel("crew", { location: "explorer" });
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
|
+
return () => {};
|
|
24
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@omercnet/paseo-agent-crew",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A Paseo Explorer panel for visualizing and controlling every managed agent crew in a workspace.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"packageManager": "bun@1.4.0",
|
|
11
|
+
"engines": {
|
|
12
|
+
"bun": ">=1.4.0"
|
|
13
|
+
},
|
|
14
|
+
"author": "Omer Cohen",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"paseo",
|
|
17
|
+
"paseo-plugin",
|
|
18
|
+
"agent-crew",
|
|
19
|
+
"coding-agents",
|
|
20
|
+
"orchestration"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"bun.lock",
|
|
24
|
+
"CHANGELOG.md",
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"README.md",
|
|
27
|
+
"client",
|
|
28
|
+
"docs",
|
|
29
|
+
"index.client.tsx",
|
|
30
|
+
"paseo-plugin.json",
|
|
31
|
+
"package.json",
|
|
32
|
+
"tsconfig.json"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"check": "biome check .",
|
|
36
|
+
"check:write": "biome check --write .",
|
|
37
|
+
"test": "bun test",
|
|
38
|
+
"package:release": "bun scripts/package-release.ts",
|
|
39
|
+
"test:coverage": "bun test --coverage",
|
|
40
|
+
"typecheck": "tsc --noEmit"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@biomejs/biome": "^2.5.10",
|
|
44
|
+
"@getpaseo/cli": "0.8.0",
|
|
45
|
+
"@getpaseo/client": "0.8.0",
|
|
46
|
+
"@getpaseo/plugin": "0.8.0",
|
|
47
|
+
"@getpaseo/protocol": "0.8.0",
|
|
48
|
+
"@tanstack/react-query": "^5.102.3",
|
|
49
|
+
"@types/bun": "^1.4.0",
|
|
50
|
+
"@types/react": "~19.2.0",
|
|
51
|
+
"fflate": "^0.8.3",
|
|
52
|
+
"react": "19.1.0",
|
|
53
|
+
"react-native": "0.81.5",
|
|
54
|
+
"typescript": "^5.9.3",
|
|
55
|
+
"zod": "^4.4.3"
|
|
56
|
+
}
|
|
57
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "Bundler",
|
|
6
|
+
"lib": ["ES2023"],
|
|
7
|
+
"jsx": "react-jsx",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"noEmit": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"allowSyntheticDefaultImports": true,
|
|
13
|
+
"types": ["bun"]
|
|
14
|
+
},
|
|
15
|
+
"include": ["**/*.ts", "**/*.tsx"]
|
|
16
|
+
}
|