@omercnet/paseo-agent-crew 0.3.0-next.111.1 → 0.3.0-next.133.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
@@ -100,46 +100,27 @@ From npm:
100
100
  paseo plugin install npm:@omercnet/paseo-agent-crew
101
101
  ```
102
102
 
103
- From GitHub:
104
-
105
- ```bash
106
- paseo plugin add omercnet/paseo-plugins:agent-crew
107
- ```
108
-
109
- Update a Git installation on either version, or an npm installation on Paseo 0.9, after reviewing
110
- the proposed revision:
103
+ Update the installed npm package after reviewing the proposed revision:
111
104
 
112
105
  ```bash
113
106
  paseo plugin update agent-crew
114
107
  ```
115
108
 
116
- From a local checkout on the Paseo daemon host, on Paseo 0.8 or 0.9:
117
-
118
- ```bash
119
- git clone https://github.com/omercnet/paseo-plugins.git
120
- cd paseo-plugins/agent-crew
121
- npm ci
122
- paseo plugin install "$PWD"
123
- ```
124
-
125
109
  Open a workspace, choose **New tab** in Explorer, then select **Agent Crew**. The **Open Agent Crew**
126
110
  Command Center action opens it directly.
127
111
 
128
112
  ## Develop
129
113
 
130
114
  ```bash
131
- npm ci
132
- npm run check
133
- npm test
134
- npm run test:coverage
135
- npm run typecheck
136
- paseo plugin install /absolute/path/to/paseo-agent-crew
137
- paseo plugin reload agent-crew
115
+ bun install
116
+ bun run check
117
+ bun run test
118
+ bun run test:coverage
119
+ bun run typecheck
138
120
  ```
139
121
 
140
- The manifest supports Paseo 0.8.x and the 0.9 beta line with
141
- `^0.8.0 || ^0.9.0-beta.1`. The project pins `@getpaseo/cli`, `@getpaseo/client`,
142
- `@getpaseo/plugin`, and `@getpaseo/protocol` to `0.9.0-beta.1` for development. React 19.1 and
122
+ The manifest supports Paseo `>=0.8.0 <0.10.0`. The project pins `@getpaseo/cli`, `@getpaseo/client`,
123
+ `@getpaseo/plugin`, and `@getpaseo/protocol` to `0.9.0` for development. React 19.1 and
143
124
  React Native 0.81 match the host.
144
125
 
145
126
  Release Please maintains versions, changelog entries, component tags, and GitHub releases from
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omercnet/paseo-agent-crew",
3
- "version": "0.3.0-next.111.1",
3
+ "version": "0.3.0-next.133.1",
4
4
  "type": "module",
5
5
  "description": "A Paseo Explorer panel for visualizing and controlling every managed agent crew in a workspace.",
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  },
19
- "packageManager": "npm@11.19.1",
19
+ "packageManager": "bun@1.4.2",
20
20
  "engines": {
21
21
  "node": ">=24"
22
22
  },
@@ -39,25 +39,24 @@
39
39
  "check": "biome check .",
40
40
  "check:write": "biome check --write .",
41
41
  "test": "vitest run",
42
- "package:release": "node scripts/package-release.ts",
43
42
  "test:coverage": "vitest run --coverage --coverage.reporter=text --coverage.reporter=lcov --coverage.thresholds.lines=90 --coverage.thresholds.functions=85",
44
43
  "typecheck": "tsc --noEmit"
45
44
  },
46
45
  "devDependencies": {
47
46
  "@biomejs/biome": "^2.5.10",
48
- "@getpaseo/cli": "0.9.0-beta.1",
49
- "@getpaseo/client": "0.9.0-beta.1",
50
- "@getpaseo/plugin": "0.9.0-beta.1",
51
- "@getpaseo/protocol": "0.9.0-beta.1",
47
+ "@getpaseo/cli": "0.9.0",
48
+ "@getpaseo/client": "0.9.0",
49
+ "@getpaseo/plugin": "0.9.0",
50
+ "@getpaseo/protocol": "0.9.0",
52
51
  "@tanstack/react-query": "^5.102.3",
53
- "@types/node": "^24.5.2",
54
- "@types/react": "~19.2.0",
52
+ "@types/node": "^24.10.1",
53
+ "@types/react": "^19.2.18",
55
54
  "@vitest/coverage-v8": "^5.0.0",
56
55
  "fflate": "^0.8.3",
57
56
  "react": "19.1.0",
58
57
  "react-native": "0.81.5",
59
- "typescript": "^7.0.0",
58
+ "typescript": "^7.0.2",
60
59
  "vitest": "^5.0.0",
61
- "zod": "^4.4.3"
60
+ "zod": "4.4.3"
62
61
  }
63
62
  }
package/paseo-plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "agent-crew",
3
3
  "requirements": {
4
- "paseo": "^0.8.0 || ^0.9.0-beta.1"
4
+ "paseo": ">=0.8.0 <0.10.0"
5
5
  }
6
6
  }