paseo-bm 0.3.0-alpha.4 → 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/README.md +2 -2
- package/package.json +4 -2
- package/paseo-plugin.json +6 -0
- package/plugin/LICENSE +21 -0
- package/plugin/README.md +53 -0
- package/plugin/package.json +35 -0
- package/plugin/shared/version.ts +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
> **Status:** prerelease (`0.3.0-alpha.*`). Command names, flags, exit codes and the `--json` shape are a public contract, but expect rough edges.
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Install
|
|
15
15
|
|
|
16
16
|
1. Open the Paseo app so its daemon is running. You need Paseo 0.8.0 or newer with the `paseo` CLI on your PATH, Node 22 or newer, and macOS or Linux.
|
|
17
17
|
2. In a terminal, run the installer and answer its questions:
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
> **Run it, don't add it as a dependency.** `paseo-bm` is a command-line tool you run with `npx`. `npm i paseo-bm` only adds a useless dependency to your project.
|
|
26
26
|
|
|
27
|
-
##
|
|
27
|
+
## Limitations and warnings
|
|
28
28
|
|
|
29
29
|
- **Paseo plugins run without a sandbox.** The plugin has the same access to your machine as the Paseo daemon: files, processes, credentials and network.
|
|
30
30
|
- **One consent grants Paseo's agent tools to every agent on this machine**, not only to paseo-bm's roles. Any agent can then create, prompt and stop other agents, and spend money on your model providers.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paseo-bm",
|
|
3
|
-
"version": "0.3.0-alpha.
|
|
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",
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"dist/",
|
|
15
|
-
"plugin/"
|
|
15
|
+
"plugin/",
|
|
16
|
+
"paseo-plugin.json",
|
|
17
|
+
"!plugin/images/**"
|
|
16
18
|
],
|
|
17
19
|
"repository": {
|
|
18
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.
|
package/plugin/README.md
ADDED
|
@@ -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
|
+

|
|
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
|
+
}
|
package/plugin/shared/version.ts
CHANGED