pi-usereq 0.6.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 +38 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +24470 -4561
- package/pi-usereq/docs/REQUIREMENTS.md +70 -50
- package/pi-usereq/docs/WORKFLOW.md +112 -77
- package/src/core/config.ts +84 -29
- package/src/core/extension-status.ts +49 -177
- package/src/core/pi-notify.ts +473 -313
- package/src/core/settings-menu.ts +21 -1
- package/src/core/token-counter.ts +55 -3
- package/src/index.ts +735 -438
- package/src/resources/images/favicon.svg +21 -0
- package/src/resources/images/pi.dev.png +0 -0
- package/tests/debug-extension-harness.test.ts +6 -6
- package/tests/extension-registration.test.ts +609 -129
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
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
|
+
|
|
3
39
|
## [0.6.0](https://github.com/Ogekuri/PI-useReq/compare/v0.5.0..v0.6.0) - 2026-04-20
|
|
4
40
|
### 🚜 Changes
|
|
5
41
|
- BREAKING CHANGE: optimize tool response payloads [useReq] *(core)*
|
|
@@ -253,6 +289,7 @@
|
|
|
253
289
|
- \[0.4.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.4.0
|
|
254
290
|
- \[0.5.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.5.0
|
|
255
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
|
|
256
293
|
|
|
257
294
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
258
295
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -260,3 +297,4 @@
|
|
|
260
297
|
[0.4.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.3.0..v0.4.0
|
|
261
298
|
[0.5.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.4.0..v0.5.0
|
|
262
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