@sztlink/pi-ensemble 0.1.0-alpha.12 → 0.1.0-alpha.13
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 +6 -0
- package/README.md +31 -5
- package/docs/PROMOTION.md +72 -0
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.1.0-alpha.13
|
|
4
|
+
|
|
5
|
+
- Added npm-first install docs now that `@sztlink/pi-ensemble` is published.
|
|
6
|
+
- Expanded npm/Pi package discoverability metadata keywords.
|
|
7
|
+
- Added `docs/PROMOTION.md` with public alpha framing, install snippets, and Pi gallery eligibility notes.
|
|
8
|
+
|
|
3
9
|
## v0.1.0-alpha.12
|
|
4
10
|
|
|
5
11
|
- Documented neutral-root runtime usage: keep Pi/Claude in their natural runtime root and point to the canonical ledger with `PI_ENSEMBLE_ROOT` or `--root`.
|
package/README.md
CHANGED
|
@@ -30,10 +30,22 @@ See [`docs/QUICKSTART.md`](docs/QUICKSTART.md) for the shortest path. See [`docs
|
|
|
30
30
|
|
|
31
31
|
## Install
|
|
32
32
|
|
|
33
|
+
### Pi package from npm (recommended)
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pi install npm:@sztlink/pi-ensemble@alpha
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Reload Pi or start a new session, then run:
|
|
40
|
+
|
|
41
|
+
```txt
|
|
42
|
+
/ensemble status
|
|
43
|
+
```
|
|
44
|
+
|
|
33
45
|
### Pi package from GitHub
|
|
34
46
|
|
|
35
47
|
```bash
|
|
36
|
-
pi install git:github.com/sztlink/pi-ensemble@v0.1.0-alpha.
|
|
48
|
+
pi install git:github.com/sztlink/pi-ensemble@v0.1.0-alpha.13
|
|
37
49
|
```
|
|
38
50
|
|
|
39
51
|
Reload Pi or start a new session, then run:
|
|
@@ -55,12 +67,11 @@ pi install /absolute/path/to/pi-ensemble
|
|
|
55
67
|
node /absolute/path/to/pi-ensemble/bin/ensemble.mjs init
|
|
56
68
|
```
|
|
57
69
|
|
|
58
|
-
### npm
|
|
59
|
-
|
|
60
|
-
The npm package is not published yet. Once published:
|
|
70
|
+
### CLI via npm
|
|
61
71
|
|
|
62
72
|
```bash
|
|
63
|
-
|
|
73
|
+
npm install -g @sztlink/pi-ensemble@alpha
|
|
74
|
+
ensemble --help
|
|
64
75
|
```
|
|
65
76
|
|
|
66
77
|
## CLI
|
|
@@ -131,6 +142,21 @@ See [`SECURITY.md`](SECURITY.md). In short: no network, no spawning, no command
|
|
|
131
142
|
|
|
132
143
|
Pi can use the package extension and tool directly. Claude Code can participate directly or through a lead session that also uses Agent Teams internally. Codex and other terminal agents can participate through the same CLI/files. Tmux wakeups should remain an adapter outside the core protocol. See [`docs/ADAPTERS.md`](docs/ADAPTERS.md) and [`examples/ensemble-tmux`](examples/ensemble-tmux).
|
|
133
144
|
|
|
145
|
+
## Discovery / Pi package gallery
|
|
146
|
+
|
|
147
|
+
`pi-ensemble` is published to npm with the `pi-package` keyword and a `pi.extensions` manifest, so Pi can install it directly and package indexes can discover it:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
pi install npm:@sztlink/pi-ensemble@alpha
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
Public alpha framing:
|
|
154
|
+
|
|
155
|
+
```txt
|
|
156
|
+
Local coordination ledger for Pi, Claude Code, tmux, and terminal agents.
|
|
157
|
+
Not an orchestrator. Not a daemon. Just readable files for handoffs, claims, and audit.
|
|
158
|
+
```
|
|
159
|
+
|
|
134
160
|
## Relationship to existing workflows
|
|
135
161
|
|
|
136
162
|
`pi-ensemble` generalizes a simple bridge pattern: blackboard for durable shared facts, inboxes for handoffs, audit log for traceability. Integrations with tmux, watchers, or external dashboards should remain outside v0.1.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Promoting pi-ensemble
|
|
2
|
+
|
|
3
|
+
`pi-ensemble` is useful for a narrow but real audience: people running multiple coding-agent runtimes side by side and losing context in manual handoffs.
|
|
4
|
+
|
|
5
|
+
## One-line framing
|
|
6
|
+
|
|
7
|
+
```txt
|
|
8
|
+
Local coordination ledger for Pi, Claude Code, tmux, and terminal agents.
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Short framing
|
|
12
|
+
|
|
13
|
+
```txt
|
|
14
|
+
pi-ensemble is not an orchestrator, daemon, scheduler, or team manager.
|
|
15
|
+
It is a small file-only ledger for handoffs, claims, inboxes, and audit trails across local coding agents.
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Who it is for
|
|
19
|
+
|
|
20
|
+
- Pi users who also run Claude Code, Codex, or shell agents.
|
|
21
|
+
- Developers using tmux panes/sessions for parallel agent work.
|
|
22
|
+
- People who want durable local handoffs without a daemon or remote service.
|
|
23
|
+
- Workflows where the human has become the copy/paste relay between agents.
|
|
24
|
+
|
|
25
|
+
## Who it is not for
|
|
26
|
+
|
|
27
|
+
- Users who want auto-spawning agent teams.
|
|
28
|
+
- Users who want a cloud dashboard or remote queue.
|
|
29
|
+
- Users who want a scheduler/supervisor.
|
|
30
|
+
- Casual single-agent chat workflows.
|
|
31
|
+
|
|
32
|
+
## Install snippets
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pi install npm:@sztlink/pi-ensemble@alpha
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm install -g @sztlink/pi-ensemble@alpha
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pi install git:github.com/sztlink/pi-ensemble@v0.1.0-alpha.13
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Demo script
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
ensemble init --agent pi
|
|
50
|
+
ensemble send claude "Please inspect docs and reply with findings." --from pi --type question
|
|
51
|
+
ensemble inbox --agent claude --since-last-read
|
|
52
|
+
ensemble ack msg_xxx --from claude --body "received"
|
|
53
|
+
ensemble send pi "Result: docs look good." --from claude --type result
|
|
54
|
+
ensemble done msg_xxx --from pi --body "closed"
|
|
55
|
+
ensemble messages --open
|
|
56
|
+
ensemble doctor
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Pi gallery eligibility
|
|
60
|
+
|
|
61
|
+
The package includes:
|
|
62
|
+
|
|
63
|
+
- npm public package: `@sztlink/pi-ensemble`
|
|
64
|
+
- `pi-package` keyword
|
|
65
|
+
- `pi.extensions` manifest in `package.json`
|
|
66
|
+
- public repository: `https://github.com/sztlink/pi-ensemble`
|
|
67
|
+
|
|
68
|
+
If Pi's package gallery indexes npm packages by keyword, this package is eligible for discovery.
|
|
69
|
+
|
|
70
|
+
## Notes for posts/issues
|
|
71
|
+
|
|
72
|
+
Use the phrase **ledger, not orchestrator**. The value proposition is durable coordination without hidden runtime state.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sztlink/pi-ensemble",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.0-alpha.13",
|
|
4
|
+
"description": "Local coordination ledger for Pi, Claude Code, tmux, and terminal agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -22,10 +22,15 @@
|
|
|
22
22
|
"pi-package",
|
|
23
23
|
"pi",
|
|
24
24
|
"pi-coding-agent",
|
|
25
|
+
"claude-code",
|
|
26
|
+
"tmux",
|
|
27
|
+
"multi-agent",
|
|
25
28
|
"coding-workflow",
|
|
26
29
|
"agents",
|
|
27
30
|
"coordination",
|
|
28
|
-
"blackboard"
|
|
31
|
+
"blackboard",
|
|
32
|
+
"ledger",
|
|
33
|
+
"local-first"
|
|
29
34
|
],
|
|
30
35
|
"license": "MIT",
|
|
31
36
|
"pi": {
|