paseo-bm 0.3.0-alpha.5 → 0.3.0-alpha.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "paseo-bm",
3
- "version": "0.3.0-alpha.5",
3
+ "version": "0.3.0-alpha.6",
4
4
  "description": "Beads Management for Paseo: installs the paseo-bm plugin and its agent roles",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -13,7 +13,8 @@
13
13
  "files": [
14
14
  "dist/",
15
15
  "plugin/",
16
- "paseo-plugin.json"
16
+ "paseo-plugin.json",
17
+ "!plugin/images/**"
17
18
  ],
18
19
  "repository": {
19
20
  "type": "git",
package/plugin/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 hieu.nt10 (hieunt286)
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.
@@ -0,0 +1,53 @@
1
+ # paseo-bm-plugin — the paseo-bm payload
2
+
3
+ This package is the **plugin payload** of [paseo-bm](https://github.com/hieunt286/paseo-bm): the
4
+ screens it contributes to [Paseo](https://paseo.sh) and the instructions its three agent roles run
5
+ on. Loading it gives you **Metric** (what each request did and cost), **Beads** (the workspace's
6
+ beads) and **Setup** (tools, skills and role instructions).
7
+
8
+ ![The Beads screen: totals, progress, filters and the bead list](images/01-beads-screen.jpg)
9
+
10
+ ## Install paseo-bm with `npx paseo-bm`
11
+
12
+ ```bash
13
+ npx paseo-bm
14
+ ```
15
+
16
+ That is the supported install, and it is what you want. The installer copies this payload to a
17
+ stable path, registers it with the Paseo daemon, **registers the three agent roles** `bm-manager`,
18
+ `bm-worker` and `bm-reviewer`, and asks for the consent those roles need.
19
+
20
+ ## Limitations of installing this package directly
21
+
22
+ You can point Paseo at this payload on its own:
23
+
24
+ ```bash
25
+ # Paseo 0.9 and newer — npm source
26
+ paseo plugin add npm:paseo-bm-plugin@<version>
27
+
28
+ # Paseo 0.8 — Git source; 0.8 has no npm source type
29
+ paseo plugin add hieunt286/paseo-bm --ref <commit> --path plugin
30
+ ```
31
+
32
+ Either way the plugin **loads and the screens appear, but the three agent roles are missing**,
33
+ because the installer registers them, not the payload. Without those roles the Beads Manager cannot
34
+ create a Worker, so the product does not work end to end. Use `npx paseo-bm` instead.
35
+
36
+ Everything else worth knowing before you install — what paseo-bm writes on your machine, that Paseo
37
+ plugins run without a sandbox, and that the Worker runs without permission prompts — is in
38
+ [GUIDE.md](https://github.com/hieunt286/paseo-bm/blob/main/GUIDE.md#before-you-install-read-these-warnings).
39
+
40
+ ## Versions
41
+
42
+ This package always carries the same version as the `paseo-bm` CLI, published from the same commit
43
+ in the same release.
44
+
45
+ ## Documentation
46
+
47
+ - [Repository and README](https://github.com/hieunt286/paseo-bm#readme)
48
+ - [GUIDE.md](https://github.com/hieunt286/paseo-bm/blob/main/GUIDE.md) — requirements, install options, the screens, commands, exit codes, troubleshooting
49
+ - [Guided tour](https://paseo-bm.erai.pro)
50
+
51
+ ## License
52
+
53
+ MIT, see [LICENSE](LICENSE).
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "paseo-bm-plugin",
3
+ "version": "0.3.0-alpha.6",
4
+ "description": "Beads Management for Paseo — the plugin payload: the Metric, Beads and Setup screens plus the agent role instructions. Install with npx paseo-bm, which also registers the three agent roles.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/hieunt286/paseo-bm.git",
10
+ "directory": "plugin"
11
+ },
12
+ "engines": {
13
+ "node": ">=22"
14
+ },
15
+ "files": [
16
+ "paseo-plugin.json",
17
+ "index.client.tsx",
18
+ "index.server.ts",
19
+ "client/",
20
+ "server/",
21
+ "shared/",
22
+ "roles/",
23
+ "tsconfig.json",
24
+ "LICENSE",
25
+ "README.md"
26
+ ],
27
+ "scripts": {
28
+ "typecheck": "tsc -p tsconfig.json"
29
+ },
30
+ "keywords": [
31
+ "paseo",
32
+ "paseo-plugin",
33
+ "beads"
34
+ ]
35
+ }
@@ -3,4 +3,4 @@
3
3
  // which the build runs before packing. Design ref: docs/design/paseo-bm.md §2.4.
4
4
 
5
5
  /** Version of the paseo-bm payload, baked in at build time. */
6
- export const PLUGIN_VERSION = "0.3.0-alpha.5";
6
+ export const PLUGIN_VERSION = "0.3.0-alpha.6";