pi-usereq 0.38.0 → 0.40.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 +30 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +377 -318
- package/pi-usereq/docs/REQUIREMENTS.md +23 -5
- package/pi-usereq/docs/WORKFLOW.md +21 -10
- package/src/core/config.ts +42 -3
- package/src/core/prompts.ts +115 -4
- package/src/index.ts +177 -8
- package/src/resources/prompts/analyze.md +22 -10
- package/src/resources/prompts/change.md +19 -8
- package/src/resources/prompts/check.md +21 -10
- package/src/resources/prompts/cover.md +19 -8
- package/src/resources/prompts/create.md +18 -8
- package/src/resources/prompts/fix.md +22 -11
- package/src/resources/prompts/flowchart.md +21 -10
- package/src/resources/prompts/implement.md +19 -8
- package/src/resources/prompts/new.md +19 -8
- package/src/resources/prompts/readme.md +20 -9
- package/src/resources/prompts/recreate.md +19 -8
- package/src/resources/prompts/refactor.md +19 -8
- package/src/resources/prompts/renumber.md +19 -8
- package/src/resources/prompts/workflow.md +19 -8
- package/src/resources/prompts/write.md +18 -8
- package/src/resources/templates/Requirements_Template.md +2 -22
- package/tests/extension-registration.test.ts +7 -3
- package/tests/prompt-rendering.test.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.40.0](https://github.com/Ogekuri/PI-useReq/compare/v0.39.0..v0.40.0) - 2026-07-10
|
|
4
|
+
### 🚜 Changes
|
|
5
|
+
- hide full prompt on screen, show command summary [useReq] *(prompt-delivery)*
|
|
6
|
+
- Deliver rendered prompt to LLM via sendMessage(display:false, triggerTurn:true)
|
|
7
|
+
- Display command invocation summary (command name, args, config) on screen
|
|
8
|
+
- Fall back to sendUserMessage when sendMessage is unavailable
|
|
9
|
+
- Add renderPromptCommandSummary in src/core/prompts.ts
|
|
10
|
+
- Update deliverPromptCommand in src/index.ts for all req-<prompt> commands
|
|
11
|
+
- Add requirements DES-016, REQ-334..337, TST-121
|
|
12
|
+
- Update WORKFLOW.md call-traces and REFERENCES.md
|
|
13
|
+
|
|
14
|
+
## [0.39.0](https://github.com/Ogekuri/PI-useReq/compare/v0.38.0..v0.39.0) - 2026-07-09
|
|
15
|
+
### ⛰️ Features
|
|
16
|
+
- Add Context Files menu and %%CONTEXT_FILES%% prompt injection [useReq] *(context-files)*
|
|
17
|
+
- Add top-level `Context Files` menu between `Unit tests directory` and `Auto git commit` with per-file toggles for REQUIREMENTS.md, REFERENCES.md, WORKFLOW.md
|
|
18
|
+
- Persist context-files-requirements/references/workflow boolean flags in local config, defaulting enabled
|
|
19
|
+
- Replace %%CONTEXT_FILES%% with per-file markdown sections (file-name heading, pre-substituted HTML file reference, four-backtick fences) in documented order
|
|
20
|
+
- Update REQ-190/191 ordering, add REQ-326..333/TST-117..120, and refresh WORKFLOW/REFERENCES
|
|
21
|
+
- Update prompts.
|
|
22
|
+
|
|
23
|
+
### 🚜 Changes
|
|
24
|
+
- Align stale tests with Context Files menu and verbatim injection [useReq] *(tests)*
|
|
25
|
+
- Add Context Files to expected top-level menu list in extension-registration test
|
|
26
|
+
- Disable context-file injection in prompt-rendering placeholder/read-only tests so template-body assertions hold per REQ-332
|
|
27
|
+
- Refine TST-060 to exclude the verbatim %%CONTEXT_FILES%% block from placeholder-absence assertions
|
|
28
|
+
|
|
3
29
|
## [0.38.0](https://github.com/Ogekuri/PI-useReq/compare/v0.37.0..v0.38.0) - 2026-07-09
|
|
4
30
|
### ⛰️ Features
|
|
5
31
|
- Add Google_TypeScript_Style_Guide.md and RFC2119.md.
|
|
@@ -519,6 +545,8 @@
|
|
|
519
545
|
- \[0.36.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.36.0
|
|
520
546
|
- \[0.37.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.37.0
|
|
521
547
|
- \[0.38.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.38.0
|
|
548
|
+
- \[0.39.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.39.0
|
|
549
|
+
- \[0.40.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.40.0
|
|
522
550
|
|
|
523
551
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
524
552
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -556,3 +584,5 @@
|
|
|
556
584
|
[0.36.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.35.0..v0.36.0
|
|
557
585
|
[0.37.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.36.0..v0.37.0
|
|
558
586
|
[0.38.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.37.0..v0.38.0
|
|
587
|
+
[0.39.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.38.0..v0.39.0
|
|
588
|
+
[0.40.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.39.0..v0.40.0
|
package/README.md
CHANGED