pi-crew 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/install.mjs +4 -2
  2. package/package.json +15 -1
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 this package in Pi with:");
17
- console.log(" pi install ./pi-crew");
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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-crew",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Pi extension for coordinated AI teams, workflows, worktrees, and async task orchestration",
5
5
  "author": "baphuongna",
6
6
  "license": "MIT",
@@ -75,5 +75,19 @@
75
75
  "@mariozechner/pi-ai": "^0.65.0",
76
76
  "@mariozechner/pi-coding-agent": "^0.65.0",
77
77
  "typescript": "^5.9.3"
78
+ },
79
+ "peerDependenciesMeta": {
80
+ "@mariozechner/pi-agent-core": {
81
+ "optional": true
82
+ },
83
+ "@mariozechner/pi-ai": {
84
+ "optional": true
85
+ },
86
+ "@mariozechner/pi-coding-agent": {
87
+ "optional": true
88
+ },
89
+ "@mariozechner/pi-tui": {
90
+ "optional": true
91
+ }
78
92
  }
79
93
  }