pi-usereq 0.42.0 → 0.43.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.43.0](https://github.com/Ogekuri/PI-useReq/compare/v0.42.0..v0.43.0) - 2026-07-10
4
+ ### 🚜 Changes
5
+ - make tsx a runtime dependency so postinstall resolves [useReq] *(packaging)*
6
+ - Move tsx from devDependencies to dependencies in package.json and the root entry of package-lock.json. The package ships .ts source with noEmit and no dist build, so node --import tsx is required for package scripts, the postinstall checker installer, and the .ts extension entry. tsx was only a devDependency, hence absent on consumer installs, causing ERR_MODULE_NOT_FOUND during pi update --extensions.
7
+ - Requirements: add CTN-020; update Section 5.2 note; bump front-matter to 0.0.75
8
+ - Verified: npm install --legacy-peer-deps runs postinstall with exit 0
9
+
3
10
  ## [0.42.0](https://github.com/Ogekuri/PI-useReq/compare/v0.41.0..v0.42.0) - 2026-07-10
4
11
  ### 🚜 Changes
5
12
  - bundle pyright/ruff/eslint and add bundled-bin resolution [useReq] *(static-check)*
@@ -593,6 +600,7 @@
593
600
  - \[0.40.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.40.0
594
601
  - \[0.41.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.41.0
595
602
  - \[0.42.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.42.0
603
+ - \[0.43.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.43.0
596
604
 
597
605
  [0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
598
606
  [0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
@@ -634,3 +642,4 @@
634
642
  [0.40.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.39.0..v0.40.0
635
643
  [0.41.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.40.0..v0.41.0
636
644
  [0.42.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.41.0..v0.42.0
645
+ [0.43.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.42.0..v0.43.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # PI-useReq/pi-usereq (0.42.0)
1
+ # PI-useReq/pi-usereq (0.43.0)
2
2
 
3
3
  <p align="center">
4
4
  <img src="https://img.shields.io/badge/python-3.11%2B-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python 3.11+">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-usereq",
3
- "version": "0.42.0",
3
+ "version": "0.43.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Ogekuri/PI-useReq.git"
@@ -38,11 +38,11 @@
38
38
  "fast-glob": "^3.3.3",
39
39
  "js-tiktoken": "^1.0.21",
40
40
  "pyright": "^1.1.411",
41
- "ruff": "^1.5.4"
41
+ "ruff": "^1.5.4",
42
+ "tsx": "^4.21.0"
42
43
  },
43
44
  "devDependencies": {
44
45
  "@eslint/js": "^10.0.1",
45
- "tsx": "^4.21.0",
46
46
  "typescript": "^5.9.3",
47
47
  "typescript-eslint": "^8.58.2"
48
48
  }
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  title: "PI-useReq Requirements"
3
3
  description: Software requirements specification
4
- version: "0.0.74"
4
+ version: "0.0.75"
5
5
  date: "2026-07-10"
6
6
  author: "OpenAI Codex"
7
7
  scope:
@@ -70,6 +70,7 @@ PI-useReq is a TypeScript pi extension plus companion Node CLI and standalone ex
70
70
  - **CTN-016**: MUST NOT modify any path under `docs/` during analysis, implementation, verification, or bug fixing.
71
71
  - **CTN-017**: MUST NOT modify any path under `pi.dev-src/` during analysis, implementation, verification, or bug fixing.
72
72
  - **CTN-019**: MUST persist local `DEBUG_TOOL_COMMANDS_ENABLED` with allowed values `enable` and `disable`, defaulting to `disable`.
73
+ - **CTN-020**: MUST declare `tsx` as a runtime `package.json` dependency so `node --import tsx` package scripts, the `postinstall` checker installer, and the `.ts` extension entry resolve on clean consumer installs.
73
74
 
74
75
  ## 3. Requirements
75
76
 
@@ -556,7 +557,7 @@ PI-useReq is a TypeScript pi extension plus companion Node CLI and standalone ex
556
557
  - `@sinclair/typebox` provides runtime tool parameter schemas and is declared as a peer dependency evidenced by `src/index.ts`, `package.json`, and `package-lock.json`.
557
558
  - `js-tiktoken` provides token counting evidence in `src/core/token-counter.ts`, `package.json`, and `package-lock.json`.
558
559
  - `fast-glob` provides wildcard expansion for static-check inputs evidence in `src/core/static-check.ts`, `package.json`, and `package-lock.json`.
559
- - `tsx` is the manifest-declared TypeScript execution runner for tests and CLI scripts evidenced by `package.json` and `package-lock.json`.
560
+ - `tsx` is the manifest-declared runtime dependency and TypeScript execution runner for package scripts, the `postinstall` checker installer, and the `.ts` extension entry, evidenced by `package.json` and `package-lock.json`.
560
561
  - `typescript` is the manifest-declared compiler and type-checker evidenced by `package.json`, `package-lock.json`, and `tsconfig.json`.
561
562
  - `git` CLI is a runtime dependency for repository discovery, source-file collection, bundled prompt-command worktree orchestration, and direct `req-references` commit orchestration evidenced in `src/core/tool-runner.ts`, `src/core/prompt-command-runtime.ts`, and `src/core/req-references-command.ts`.
562
563