pi-usereq 0.5.0 → 0.7.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/CHANGELOG.md +48 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +24470 -4590
- package/pi-usereq/docs/REQUIREMENTS.md +89 -68
- package/pi-usereq/docs/WORKFLOW.md +133 -106
- package/src/core/agent-tool-json.ts +42 -193
- package/src/core/compress-payload.ts +7 -15
- package/src/core/config.ts +84 -29
- package/src/core/extension-status.ts +49 -177
- package/src/core/find-payload.ts +21 -44
- package/src/core/pi-notify.ts +473 -313
- package/src/core/reference-payload.ts +6 -14
- package/src/core/settings-menu.ts +21 -1
- package/src/core/token-counter.ts +58 -124
- package/src/index.ts +798 -537
- package/src/resources/images/favicon.svg +21 -0
- package/src/resources/images/pi.dev.png +0 -0
- package/tests/debug-extension-harness.test.ts +17 -23
- package/tests/extension-registration.test.ts +632 -215
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0](https://github.com/Ogekuri/PI-useReq/compare/v0.6.0..v0.7.0) - 2026-04-20
|
|
4
|
+
### ⛰️ Features
|
|
5
|
+
- Add src/resources/images/ files.
|
|
6
|
+
|
|
7
|
+
### 🐛 Bug Fixes
|
|
8
|
+
- defer js-tiktoken loading for token tools [useReq] *(extension)*
|
|
9
|
+
- lazy-load js-tiktoken inside token counting instead of at extension import time
|
|
10
|
+
- return structured token-tool failures when the dependency is unavailable
|
|
11
|
+
- add coverage for deferred loading and dependency error handling
|
|
12
|
+
|
|
13
|
+
### 🚜 Changes
|
|
14
|
+
- BREAKING CHANGE: rename menus and notify defaults [useReq] *(config-menu)*
|
|
15
|
+
- update requirements for tilde config-path display and guided static-check menus
|
|
16
|
+
- remove legacy startup-tool status and static-check raw-spec/reference actions
|
|
17
|
+
- add %%RESULT%% defaults for notify and Pushover templates with tests/docs refresh
|
|
18
|
+
- BREAKING CHANGE: move event toggles into shared submenus [useReq] *(notifications)*
|
|
19
|
+
- update requirements for completed/interrupted/failed event contracts
|
|
20
|
+
- replace direct notification toggles with shared event submenus
|
|
21
|
+
- rename persisted notification keys and refresh extension docs/tests
|
|
22
|
+
- BREAKING CHANGE: remove terminal bell notification support [useReq] *(core)*
|
|
23
|
+
- update requirements and workflow docs for the breaking removal
|
|
24
|
+
- delete terminal bell config and runtime handling
|
|
25
|
+
- refresh notification UI tests and references
|
|
26
|
+
- BREAKING CHANGE: replace status context bar and notification menus [useReq] *(config-ui)*
|
|
27
|
+
- update requirements for breaking status and configuration UI behavior
|
|
28
|
+
- switch context footer rendering to icon-based thresholds
|
|
29
|
+
- remove notify, beep, and pushover footer fields
|
|
30
|
+
- flatten Pushover settings into Notifications and add scoped submenu resets
|
|
31
|
+
- preserve menu focus after toggles and edits
|
|
32
|
+
- update configuration UI tests and debug harness assertions
|
|
33
|
+
- BREAKING CHANGE: unify notify beep sound and pushover [useReq] *(pi-notify)*
|
|
34
|
+
- update SRS for breaking notification model changes
|
|
35
|
+
- replace legacy terminal notification implementations with PI_NOTIFY_CMD and terminal bell routing
|
|
36
|
+
- add global and per-event toggles for notify, beep, sound, and pushover
|
|
37
|
+
- update status bar, configuration menus, workflow, references, and tests
|
|
38
|
+
|
|
39
|
+
## [0.6.0](https://github.com/Ogekuri/PI-useReq/compare/v0.5.0..v0.6.0) - 2026-04-20
|
|
40
|
+
### 🚜 Changes
|
|
41
|
+
- BREAKING CHANGE: optimize tool response payloads [useReq] *(core)*
|
|
42
|
+
- Update requirements for token-minimized tool responses.
|
|
43
|
+
- Move static response facts into tool registration metadata.
|
|
44
|
+
- Reduce runtime payload sections and remove repeated request echoes.
|
|
45
|
+
- Update workflow, references, and targeted tool-contract tests.
|
|
46
|
+
|
|
3
47
|
## [0.5.0](https://github.com/Ogekuri/PI-useReq/compare/v0.4.0..v0.5.0) - 2026-04-19
|
|
4
48
|
### ⛰️ Features
|
|
5
49
|
- add pushover completion notifications [useReq] *(notify)*
|
|
@@ -244,9 +288,13 @@
|
|
|
244
288
|
- \[0.3.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.3.0
|
|
245
289
|
- \[0.4.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.4.0
|
|
246
290
|
- \[0.5.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.5.0
|
|
291
|
+
- \[0.6.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.6.0
|
|
292
|
+
- \[0.7.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.7.0
|
|
247
293
|
|
|
248
294
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
249
295
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
250
296
|
[0.3.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.2.0..v0.3.0
|
|
251
297
|
[0.4.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.3.0..v0.4.0
|
|
252
298
|
[0.5.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.4.0..v0.5.0
|
|
299
|
+
[0.6.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.5.0..v0.6.0
|
|
300
|
+
[0.7.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.6.0..v0.7.0
|
package/README.md
CHANGED