@mjasnikovs/pi-task 0.13.38 → 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/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-MIT-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-731%20passing-3fb950)](#development)
12
+ [![tests](https://img.shields.io/badge/tests-788%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>
@@ -106,7 +106,7 @@ Delivery is **server → push service → device** over the [Web Push](https://d
106
106
  2. **Share → Add to Home Screen**, then open the app from that icon. iOS only permits notifications for installed PWAs.
107
107
  3. Launch the app, **tap the bell**, and **Allow** when prompted.
108
108
 
109
- The subscription is kept in memory, so after restarting `pi` just reload the app (it re-subscribes automatically) or tap the bell again. Notifications are suppressed while the app is focused in the foreground — the in-page UI already shows the prompt there.
109
+ Subscriptions are mirrored to `${XDG_DATA_HOME:-~/.local/share}/pi-task/subscriptions.json` and reloaded on startup, so they survive a full `pi` restart the server keeps reaching a backgrounded device without waiting for it to re-register. Notifications are suppressed while the app is focused in the foreground — the in-page UI already shows the prompt there.
110
110
 
111
111
  VAPID keys are generated once and persisted to `${XDG_DATA_HOME:-~/.local/share}/pi-task/vapid.json` (deleting them invalidates existing subscriptions). The JWT contact (`sub`) defaults to the project URL; override it with `PI_REMOTE_PUSH_SUBJECT` (e.g. your own `mailto:you@domain.com`). To debug delivery, set `PI_REMOTE_PUSH_DEBUG=1` and tail `/tmp/pi-task-push.log` — it records each push and the **push-service HTTP status** (`201` delivered, `403`/`400` token/key problem, `410` stale subscription).
112
112
 
@@ -167,7 +167,7 @@ Tasks are persisted to `<cwd>/.pi-tasks/TASK_NNNN.md`. Add `.pi-tasks/` to your
167
167
 
168
168
  ```sh
169
169
  bun install
170
- bun test src/ # 731 tests across 57 files
170
+ bun test src/ # 788 tests across 60 files
171
171
  bun run lint # prettier + eslint + tsc --noEmit
172
172
  bun run build # tsc → dist/
173
173
  ```
@@ -74,6 +74,13 @@ export declare function classifyEnforceChildFailure(r: EnforceChildResult): stri
74
74
  * names of any new (untracked) files. Non-destructive — it does not touch the
75
75
  * index, so the later `git add -A` in gitCommitAll still stages everything
76
76
  * (including fixes the enforcement child makes).
77
+ *
78
+ * The `.pi-tasks/` directory is excluded from both git commands. Those task
79
+ * files are committable (tracked) by design, so they show up in `git diff HEAD`
80
+ * and `git ls-files --others` — git does not honor the fd/ripgrep `.ignore` that
81
+ * keeps them out of the worker's find/grep discovery. Without this pathspec the
82
+ * enforce child is handed its own TASK_*.md / TASK_AUTO_*.md bookkeeping as
83
+ * "changes to verify" and edits them, corrupting the front matter mid-run.
77
84
  */
78
85
  export declare function captureDiff(cwd: string, signal?: AbortSignal, spawnFn?: SpawnFn): Promise<string>;
79
86
  export interface EnforcementDeps {
@@ -20,6 +20,7 @@ import * as fsp from 'node:fs/promises';
20
20
  import * as path from 'node:path';
21
21
  import { runChildDefault } from '../shared/child-process.js';
22
22
  import { USER_CANCELLED } from './child-runner.js';
23
+ import { TASKS_DIR_NAME } from './task-types.js';
23
24
  /** Filenames discovered in the working directory (cwd only — no tree walk). */
24
25
  export const GUIDELINE_FILENAMES = ['AGENTS.md', 'CLAUDE.md'];
25
26
  /** Tools the fix pass is allowed: read/search to inspect, edit/write to fix. */
@@ -131,11 +132,28 @@ export function classifyEnforceChildFailure(r) {
131
132
  * names of any new (untracked) files. Non-destructive — it does not touch the
132
133
  * index, so the later `git add -A` in gitCommitAll still stages everything
133
134
  * (including fixes the enforcement child makes).
135
+ *
136
+ * The `.pi-tasks/` directory is excluded from both git commands. Those task
137
+ * files are committable (tracked) by design, so they show up in `git diff HEAD`
138
+ * and `git ls-files --others` — git does not honor the fd/ripgrep `.ignore` that
139
+ * keeps them out of the worker's find/grep discovery. Without this pathspec the
140
+ * enforce child is handed its own TASK_*.md / TASK_AUTO_*.md bookkeeping as
141
+ * "changes to verify" and edits them, corrupting the front matter mid-run.
134
142
  */
135
143
  export async function captureDiff(cwd, signal, spawnFn) {
144
+ // `:(exclude)<dir>` is a git pathspec that drops everything under the tasks
145
+ // directory from the result, leaving only real source changes to verify.
146
+ const excludeTasks = `:(exclude)${TASKS_DIR_NAME}`;
136
147
  const run = (args) => runChildDefault({ command: 'git', args }, cwd, signal, { mode: 'text' }, spawnFn);
137
- const tracked = await run(['diff', 'HEAD']);
138
- const untracked = await run(['ls-files', '--others', '--exclude-standard']);
148
+ const tracked = await run(['diff', 'HEAD', '--', '.', excludeTasks]);
149
+ const untracked = await run([
150
+ 'ls-files',
151
+ '--others',
152
+ '--exclude-standard',
153
+ '--',
154
+ '.',
155
+ excludeTasks
156
+ ]);
139
157
  const parts = [];
140
158
  if (tracked.exitCode === 0 && tracked.stdout.trim().length > 0)
141
159
  parts.push(tracked.stdout.trim());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjasnikovs/pi-task",
3
- "version": "0.13.38",
3
+ "version": "0.14.1",
4
4
  "description": "Deterministic spec-orchestration for local models, with a bundled real-time remote web view and web/docs/fetch/worker subagent tools.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",