@aliou/pi-processes 0.7.1 → 0.7.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.
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ![banner](https://assets.aliou.me/pi-extensions/banners/pi-processes.png)
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.7.1",
3
+ "version": "0.7.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -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 this tool for long-running commands such as dev servers, test watchers, build watchers, and log tails instead of bash.",
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.",