pi-goal-x 0.7.0 → 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 +10 -19
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
The extension is designed around one rule: **the user owns intent; the agent executes only after the goal is explicit and confirmed**.
|
|
8
8
|
|
|
9
|
+
## What's new in pi-goal-x
|
|
10
|
+
|
|
11
|
+
pi-goal-x adds a handful of quality-of-life features on top of the original:
|
|
12
|
+
|
|
13
|
+
- **See what the auditor is doing.** When a goal completes and the auditor kicks in, you get a live view — a spinner, the tool it's running, and recent output lines. No more wondering if anything is happening.
|
|
14
|
+
- **Skip the audit with Escape.** If you're in a hurry or just don't need an audit right now, press Escape. The goal completes immediately without waiting.
|
|
15
|
+
- **Turn off the auditor entirely.** If you never want audits, set it once in `/goal-settings` and you're done. The agent can bypass it by asking you to confirm.
|
|
16
|
+
- **Know why an audit was skipped.** Whether you pressed Escape or had it disabled, the ledger records the reason.
|
|
17
|
+
- **Faster, safer audit lifecycle.** The audit starts and stops cleanly — no more stuck goals, ghost states, or having to kill the session.
|
|
18
|
+
|
|
9
19
|
## What it provides
|
|
10
20
|
|
|
11
21
|
- **Two goal styles**: regular goals for open-ended work, and Sisyphus goals for patient ordered execution.
|
|
@@ -267,25 +277,6 @@ extensions/widgets/goal-notifications.ts widget-style notification text
|
|
|
267
277
|
- **Disk-backed continuity**: goal state survives context churn and can be audited from `.pi/goals/`.
|
|
268
278
|
- **Human-owned focus**: the agent may work on the focused goal, but only user commands/UI selection switch focus.
|
|
269
279
|
|
|
270
|
-
## Divergence from upstream
|
|
271
|
-
|
|
272
|
-
This fork adds the following features beyond `@capyup/pi-goal`:
|
|
273
|
-
|
|
274
|
-
| Feature | Description |
|
|
275
|
-
|---|---|
|
|
276
|
-
| **Auditor progress widget** | Live spinner, current tool tracking, and recent output lines displayed during audit runs |
|
|
277
|
-
| **Escape-to-skip audit** | Press `Escape` during a running audit to abort it; the goal completes as bypassed |
|
|
278
|
-
| **Disable the auditor** | `disabled` flag in `GoalAuditorConfig`, toggleable from `/goal-settings` |
|
|
279
|
-
| **`confirmBypassAuditor`** | `update_goal` accepts `confirmBypassAuditor: true` to skip the auditor without running it |
|
|
280
|
-
| **`audit_skipped` ledger event** | New event type recording `disabled` or `user_aborted` bypasses in the goal ledger |
|
|
281
|
-
| **Audit lifecycle hardening** | Abort signal wiring, escape-key consumption, proper cleanup, and completion-on-abort instead of leaving the goal open |
|
|
282
|
-
|
|
283
|
-
See the git log for the full commit history:
|
|
284
|
-
|
|
285
|
-
```bash
|
|
286
|
-
git log upstream/main..HEAD
|
|
287
|
-
```
|
|
288
|
-
|
|
289
280
|
## Upstream
|
|
290
281
|
|
|
291
282
|
This repository is a downstream fork of [@capyup/pi-goal](https://github.com/capyup/pi-goal). To sync with upstream changes:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-x",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Goal mode extension for pi: persistent long-running objectives, /goal-set drafting, Sisyphus prompt style, autoContinue, and an above-editor status overlay. Fork of @capyup/pi-goal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "pi-goal-x contributors",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"pi": {
|
|
33
33
|
"extensions": [
|
|
34
34
|
"extensions/goal.ts"
|
|
35
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"image": "https://github.com/tmonk/pi-goal-x/raw/main/screenshot.png"
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
39
|
"check": "tsc --noEmit",
|