@aliou/pi-processes 0.7.1 → 0.8.0
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 +3 -1
- package/package.json +1 -2
- package/src/tools/index.ts +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# pi-processes
|
|
2
4
|
|
|
3
5
|
Manage background processes from Pi without blocking the conversation.
|
|
@@ -183,4 +185,4 @@ For development, testing, docs generation, and extension internals, see [CONTRIB
|
|
|
183
185
|
|
|
184
186
|
## License
|
|
185
187
|
|
|
186
|
-
MIT
|
|
188
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aliou/pi-processes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@aliou/biome-plugins": "^0.3.2",
|
|
47
|
-
"@aliou/pi-evals": "^0.3.0",
|
|
48
47
|
"@biomejs/biome": "^2.3.13",
|
|
49
48
|
"@changesets/cli": "^2.27.11",
|
|
50
49
|
"@mariozechner/pi-ai": "0.65.0",
|
package/src/tools/index.ts
CHANGED
|
@@ -144,7 +144,7 @@ Note: User always sees process updates in the UI. The notify flags control wheth
|
|
|
144
144
|
promptSnippet:
|
|
145
145
|
"Manage background processes without blocking the conversation",
|
|
146
146
|
promptGuidelines: [
|
|
147
|
-
"Use
|
|
147
|
+
"Use the process tool for long-running commands such as dev servers, test watchers, build watchers, and log tails instead of bash.",
|
|
148
148
|
"Avoid shell background patterns such as &, nohup, disown, or setsid when the process tool fits.",
|
|
149
149
|
"After starting a process, continue other work instead of waiting for it.",
|
|
150
150
|
"Use the pi-processes skill for examples and best practices when a task depends on background processes.",
|