pi-messenger 0.14.0 → 0.14.1
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 +5 -0
- package/index.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.14.1] - 2026-04-04
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Added a `promptSnippet` for `pi_messenger` so Pi 0.59+ includes it in the default tool prompt section and reliably surfaces Crew/coordination workflows.
|
|
9
|
+
|
|
5
10
|
## [0.14.0] - 2026-04-03
|
|
6
11
|
|
|
7
12
|
### Added
|
package/index.ts
CHANGED
|
@@ -392,6 +392,8 @@ Usage (action-based API - preferred):
|
|
|
392
392
|
|
|
393
393
|
// Crew: Review
|
|
394
394
|
pi_messenger({ action: "review", target: "task-1" }) → Review impl`,
|
|
395
|
+
promptSnippet:
|
|
396
|
+
"Use for multi-agent coordination and Crew workflows: join/status/feed, create plans, run work waves, manage tasks, reserve files, and message agents.",
|
|
395
397
|
parameters: Type.Object({
|
|
396
398
|
action: Type.Optional(Type.String({
|
|
397
399
|
description: "Action to perform (e.g., 'join', 'plan', 'work', 'task.start')"
|