pi-crew 0.1.1 → 0.1.3
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 +18 -22
- package/install.mjs +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
`pi-crew` is a Pi extension/package for coordinated AI teams: autonomous routing, manual slash-command controls, durable run state, artifacts, async/background execution, optional worktree isolation, resource management, validation, import/export, dashboard helpers, and safe API interop.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
NPM package:
|
|
6
6
|
|
|
7
7
|
```text
|
|
8
|
-
pi-crew
|
|
8
|
+
pi-crew
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
GitHub repository:
|
|
12
|
+
|
|
13
|
+
```text
|
|
14
|
+
https://github.com/baphuongna/pi-crew
|
|
15
|
+
```
|
|
12
16
|
|
|
13
17
|
## Status
|
|
14
18
|
|
|
15
|
-
`pi-crew` is
|
|
19
|
+
`pi-crew` is published on npm and implemented with safe execution defaults and product-oriented foundations.
|
|
16
20
|
|
|
17
21
|
Current highlights:
|
|
18
22
|
|
|
@@ -63,7 +67,13 @@ From the workspace root for local development:
|
|
|
63
67
|
pi install ./pi-crew
|
|
64
68
|
```
|
|
65
69
|
|
|
66
|
-
Optional config bootstrap:
|
|
70
|
+
Optional config bootstrap after npm install:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
pi-crew
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Optional config bootstrap from a local clone:
|
|
67
77
|
|
|
68
78
|
```bash
|
|
69
79
|
node ./pi-crew/install.mjs
|
|
@@ -663,25 +673,11 @@ pi-crew/docs/live-mailbox-runtime.md
|
|
|
663
673
|
pi-crew/docs/publishing.md
|
|
664
674
|
```
|
|
665
675
|
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
```text
|
|
669
|
-
docs/pi-crew-source-review-and-lessons.md
|
|
670
|
-
docs/pi-crew-architecture.md
|
|
671
|
-
docs/pi-crew-mvp-plan.md
|
|
672
|
-
docs/pi-crew-*-progress-2026-04-26.md
|
|
673
|
-
```
|
|
674
|
-
|
|
675
|
-
## Known remaining release metadata
|
|
676
|
-
|
|
677
|
-
Package metadata still needs real project values before publishing:
|
|
676
|
+
Historical workspace-level design/progress docs may exist in the original development workspace under `docs/pi-crew-*`, but package-maintained docs live under `pi-crew/docs/`.
|
|
678
677
|
|
|
679
|
-
|
|
680
|
-
- `repository`
|
|
681
|
-
- `homepage`
|
|
682
|
-
- `bugs`
|
|
678
|
+
## Local Pi smoke
|
|
683
679
|
|
|
684
|
-
|
|
680
|
+
A local Pi smoke test requires an installed Pi CLI and a real Pi environment:
|
|
685
681
|
|
|
686
682
|
```bash
|
|
687
683
|
cd pi-crew
|
package/install.mjs
CHANGED
|
@@ -13,7 +13,9 @@ if (!fs.existsSync(configPath)) {
|
|
|
13
13
|
console.log(`pi-crew config already exists: ${configPath}`);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
console.log("\nInstall
|
|
17
|
-
console.log(" pi install
|
|
16
|
+
console.log("\nInstall the published package in Pi with:");
|
|
17
|
+
console.log(" pi install npm:pi-crew");
|
|
18
|
+
console.log("\nFor local development from a cloned repo:");
|
|
19
|
+
console.log(" pi install .");
|
|
18
20
|
console.log("\nEnable real child workers by setting either config executeWorkers=true or environment:");
|
|
19
21
|
console.log(" PI_TEAMS_EXECUTE_WORKERS=1 pi");
|