@mjasnikovs/pi-task 0.40.27 → 0.40.28

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/README.md +6 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  [![npm](https://img.shields.io/npm/v/@mjasnikovs/pi-task?color=cb3837&logo=npm)](https://www.npmjs.com/package/@mjasnikovs/pi-task)
10
10
  [![license](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)](./LICENSE)
11
11
  [![pi extension](https://img.shields.io/badge/pi-extension-7c3aed)](https://www.npmjs.com/package/@earendil-works/pi-coding-agent)
12
- [![tests](https://img.shields.io/badge/tests-4280%20passing-3fb950)](#development)
12
+ [![tests](https://img.shields.io/badge/tests-4508%20passing-3fb950)](#development)
13
13
  [![types](https://img.shields.io/badge/TypeScript-strict-3178c6?logo=typescript&logoColor=white)](./tsconfig.json)
14
14
 
15
15
  </div>
@@ -148,9 +148,10 @@ Prompts use a **first-answer-wins race**: the same question shows in the local T
148
148
 
149
149
  Tap the bell (◯ → ◉) in the remote header to get pushed a notification — even with the app backgrounded or the phone locked — when:
150
150
 
151
- - a **grill / clarify question** needs answering (*"pi needs your input"*),
152
- - a **task finishes** (*"Task finished"*), or
153
- - the agent hits an **error** (*"Agent error"*).
151
+ - a **grill / clarify question** needs answering (*"pi needs your input"*), or
152
+ - a **task finishes** (*"Task finished"*).
153
+
154
+ Host agent errors are deliberately **not** pushed — most of them happen outside any task, and a push on every one is just noise.
154
155
 
155
156
  Delivery is **server → push service → device** over the [Web Push](https://developer.mozilla.org/en-US/docs/Web/API/Push_API) standard (service worker + VAPID), so it reaches a suspended device. It works on desktop browsers and on iOS home-screen PWAs.
156
157
 
@@ -259,7 +260,7 @@ them checked in.
259
260
 
260
261
  ```sh
261
262
  bun install
262
- bun run test # 4281 tests across 234 files
263
+ bun run test # 4508 tests pass across 243 files (1 skip)
263
264
  bun run lint # prettier + eslint + tsc --noEmit
264
265
  bun run build # tsc → dist/
265
266
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjasnikovs/pi-task",
3
- "version": "0.40.27",
3
+ "version": "0.40.28",
4
4
  "description": "Deterministic task planning and spec-orchestration for local models — crash-safe /task pipelines with verify/enforce gates, a real-time remote web view, and web/docs/fetch/worker subagent tools.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",