@omercnet/paseo-beads 0.1.0 → 0.2.0-next.94.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/omercnet/paseo-plugins/compare/paseo-beads-v0.1.0...paseo-beads-v0.2.0) (2026-09-18)
4
+
5
+
6
+ ### Features
7
+
8
+ * **release:** publish plugins to npm ([#80](https://github.com/omercnet/paseo-plugins/issues/80)) ([3c93048](https://github.com/omercnet/paseo-plugins/commit/3c93048cfefda97d8c2bc1631e3428fb64bdad09))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **paseo-beads:** support Paseo 0.9 beta ([#87](https://github.com/omercnet/paseo-plugins/issues/87)) ([7c895c8](https://github.com/omercnet/paseo-plugins/commit/7c895c8a82541e2e2d7d626a8f1d9ef28d6c7536))
14
+
3
15
  ## [0.1.0](https://github.com/omercnet/paseo-plugins/compare/paseo-beads-v0.0.1...paseo-beads-v0.1.0) (2026-09-11)
4
16
 
5
17
 
package/README.md CHANGED
@@ -55,7 +55,7 @@ failures provide a retry action.
55
55
 
56
56
  ## Limits
57
57
 
58
- - Paseo `^0.8.0` with plugins enabled is required.
58
+ - Paseo 0.8.x or 0.9.x, starting with `0.9.0-beta.1`, with plugins enabled is required.
59
59
  - Beads `bd` 1.0 or newer must be available on the Paseo daemon's `PATH`.
60
60
  - A Beads project must be initialized in the workspace for issue data to appear.
61
61
  - CLI calls time out after 10 seconds and accept at most 8 MiB of output. Unexpected CLI details stay
@@ -75,18 +75,35 @@ failures provide a retry action.
75
75
  Paseo plugins are trusted, unsandboxed code. Review the source before installing it on the daemon
76
76
  host.
77
77
 
78
+ From npm:
79
+
80
+ ```bash
81
+ paseo plugin install npm:@omercnet/paseo-beads
82
+ ```
83
+
78
84
  From GitHub:
79
85
 
80
86
  ```bash
81
87
  paseo plugin add omercnet/paseo-plugins:paseo-beads
82
88
  ```
83
89
 
90
+ With Paseo 0.9.0-beta.1 or newer, update an npm or Git installation with:
91
+
92
+ ```bash
93
+ paseo plugin update paseo-beads
94
+ ```
95
+
96
+ Paseo shows the installed and proposed revisions and asks for approval before applying an ordinary
97
+ update. Review the source changes before approving them. Use `--check` to check for an update without
98
+ installing it; installing an exact npm version or Git ref selects that revision once rather than
99
+ pinning future updates.
100
+
84
101
  From a local checkout on the Paseo daemon host:
85
102
 
86
103
  ```bash
87
104
  git clone https://github.com/omercnet/paseo-plugins.git
88
105
  cd paseo-plugins/paseo-beads
89
- bun install --frozen-lockfile
106
+ npm ci
90
107
  paseo plugin install "$PWD"
91
108
  ```
92
109
 
@@ -96,14 +113,14 @@ Beads** from the Command Center while viewing a workspace or one of its agents.
96
113
  ## Develop
97
114
 
98
115
  ```bash
99
- bun install
100
- bun run check
101
- bun test
102
- bun run test:coverage
103
- bun run typecheck
104
- paseo plugin install "$PWD"
105
- paseo plugin reload paseo-beads
116
+ npm ci
117
+ npm run check
118
+ npm test
119
+ npm run test:coverage
120
+ npm run typecheck
121
+ npx paseo plugin install "$PWD"
122
+ npx paseo plugin reload paseo-beads
106
123
  ```
107
124
 
108
- The package is `@omercnet/paseo-beads` at version `0.0.1`. Release Please maintains versions,
125
+ The package is `@omercnet/paseo-beads` at version `0.1.0`. Release Please maintains versions,
109
126
  changelog entries, component tags, and GitHub releases from Conventional Commits in the monorepo.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omercnet/paseo-beads",
3
- "version": "0.1.0",
3
+ "version": "0.2.0-next.94.1",
4
4
  "type": "module",
5
5
  "description": "A dependency-aware Beads work queue for each Paseo workspace.",
6
6
  "license": "MIT",
@@ -17,9 +17,9 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "packageManager": "bun@1.4.0",
20
+ "packageManager": "npm@11.19.1",
21
21
  "engines": {
22
- "bun": ">=1.4.0"
22
+ "node": ">=24"
23
23
  },
24
24
  "keywords": [
25
25
  "paseo",
@@ -30,7 +30,6 @@
30
30
  "coding-agents"
31
31
  ],
32
32
  "files": [
33
- "bun.lock",
34
33
  "CHANGELOG.md",
35
34
  "LICENSE",
36
35
  "README.md",
@@ -45,25 +44,27 @@
45
44
  "scripts": {
46
45
  "check": "biome check .",
47
46
  "check:write": "biome check --write .",
48
- "test": "bun test",
49
- "test:coverage": "bun test --coverage",
47
+ "test": "vitest run",
48
+ "test:coverage": "vitest run --coverage --coverage.reporter=text --coverage.reporter=lcov --coverage.thresholds.lines=90 --coverage.thresholds.functions=85",
50
49
  "typecheck": "tsc --noEmit",
51
- "package:release": "bun scripts/package-release.ts",
52
- "verify:package": "bun scripts/verify-package.ts"
50
+ "package:release": "node scripts/package-release.ts",
51
+ "verify:package": "node scripts/verify-package.ts"
53
52
  },
54
53
  "devDependencies": {
55
54
  "@biomejs/biome": "^2.5.10",
56
- "@getpaseo/cli": "0.8.0",
57
- "@getpaseo/client": "0.8.0",
58
- "@getpaseo/plugin": "0.8.0",
59
- "@getpaseo/protocol": "0.8.0",
55
+ "@getpaseo/cli": "0.9.0-beta.1",
56
+ "@getpaseo/client": "0.9.0-beta.1",
57
+ "@getpaseo/plugin": "0.9.0-beta.1",
58
+ "@getpaseo/protocol": "0.9.0-beta.1",
60
59
  "@tanstack/react-query": "^5.102.3",
61
- "@types/bun": "^1.4.0",
60
+ "@types/node": "^24.5.2",
62
61
  "@types/react": "~19.2.0",
62
+ "@vitest/coverage-v8": "^5.0.0",
63
63
  "fflate": "^0.8.3",
64
64
  "react": "19.1.0",
65
65
  "react-native": "0.81.5",
66
- "typescript": "^5.9.3",
66
+ "typescript": "^7.0.0",
67
+ "vitest": "^5.0.0",
67
68
  "zod": "^4.4.3"
68
69
  }
69
70
  }
package/paseo-plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "paseo-beads",
3
3
  "requirements": {
4
- "paseo": "^0.8.0"
4
+ "paseo": "^0.8.0 || ^0.9.0-beta.1"
5
5
  }
6
6
  }