pi-must-have-extension 0.4.3 → 0.4.5
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 +11 -0
- package/README.md +1 -1
- package/package.json +70 -70
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.5] - 2026-03-12
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Updated `@mariozechner/pi-coding-agent` peer dependency to `^0.57.0`
|
|
7
|
+
- Updated `@types/node` dev dependency to `^25.3.5`
|
|
8
|
+
|
|
9
|
+
## [0.4.4] - 2026-03-04
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Use absolute GitHub raw URL for README image to fix npm display
|
|
13
|
+
|
|
3
14
|
## [0.4.3] - 2026-03-04
|
|
4
15
|
|
|
5
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Normalize RFC 2119 language in Pi prompts by automatically rewriting lowercase modal terms (`must`, `should not`, `optional`) into uppercase normative forms (`MUST`, `SHOULD NOT`, `OPTIONAL`).
|
|
4
4
|
|
|
5
|
-

|
|
5
|
+

|
|
6
6
|
|
|
7
7
|
## Demo
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "pi-must-have-extension",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "RFC 2119 keyword normalizer extension for the Pi coding agent.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./index.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": "./index.ts"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"index.ts",
|
|
12
|
-
"src",
|
|
13
|
-
"asset",
|
|
14
|
-
"config/config.example.jsonc",
|
|
15
|
-
"config/replacements.custom-sample.jsonc",
|
|
16
|
-
"README.md",
|
|
17
|
-
"CHANGELOG.md",
|
|
18
|
-
"LICENSE",
|
|
19
|
-
"tsconfig.json"
|
|
20
|
-
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.json --noEmit",
|
|
23
|
-
"lint": "npm run build",
|
|
24
|
-
"test": "node --experimental-strip-types --test test/**/*.test.ts",
|
|
25
|
-
"check": "npm run lint && npm run test"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"pi-package",
|
|
29
|
-
"pi-extension",
|
|
30
|
-
"pi-coding-agent",
|
|
31
|
-
"pi",
|
|
32
|
-
"coding-agent",
|
|
33
|
-
"rfc2119",
|
|
34
|
-
"rfc8174",
|
|
35
|
-
"bcp14",
|
|
36
|
-
"prompt-normalization",
|
|
37
|
-
"prompt-rewrite",
|
|
38
|
-
"compliance",
|
|
39
|
-
"jsonc"
|
|
40
|
-
],
|
|
41
|
-
"author": "MasuRii",
|
|
42
|
-
"license": "MIT",
|
|
43
|
-
"repository": {
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/MasuRii/pi-must-have-extension.git"
|
|
46
|
-
},
|
|
47
|
-
"homepage": "https://github.com/MasuRii/pi-must-have-extension#readme",
|
|
48
|
-
"bugs": {
|
|
49
|
-
"url": "https://github.com/MasuRii/pi-must-have-extension/issues"
|
|
50
|
-
},
|
|
51
|
-
"engines": {
|
|
52
|
-
"node": ">=20"
|
|
53
|
-
},
|
|
54
|
-
"publishConfig": {
|
|
55
|
-
"access": "public"
|
|
56
|
-
},
|
|
57
|
-
"pi": {
|
|
58
|
-
"extensions": [
|
|
59
|
-
"./index.ts"
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
|
-
"peerDependencies": {
|
|
63
|
-
"@mariozechner/pi-coding-agent": "*"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
67
|
-
"@types/node": "^
|
|
68
|
-
"typescript": "^5.7.3"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-must-have-extension",
|
|
3
|
+
"version": "0.4.5",
|
|
4
|
+
"description": "RFC 2119 keyword normalizer extension for the Pi coding agent.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./index.ts"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.ts",
|
|
12
|
+
"src",
|
|
13
|
+
"asset",
|
|
14
|
+
"config/config.example.jsonc",
|
|
15
|
+
"config/replacements.custom-sample.jsonc",
|
|
16
|
+
"README.md",
|
|
17
|
+
"CHANGELOG.md",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"tsconfig.json"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsc -p tsconfig.json --noEmit",
|
|
23
|
+
"lint": "npm run build",
|
|
24
|
+
"test": "node --experimental-strip-types --test test/**/*.test.ts",
|
|
25
|
+
"check": "npm run lint && npm run test"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"pi-package",
|
|
29
|
+
"pi-extension",
|
|
30
|
+
"pi-coding-agent",
|
|
31
|
+
"pi",
|
|
32
|
+
"coding-agent",
|
|
33
|
+
"rfc2119",
|
|
34
|
+
"rfc8174",
|
|
35
|
+
"bcp14",
|
|
36
|
+
"prompt-normalization",
|
|
37
|
+
"prompt-rewrite",
|
|
38
|
+
"compliance",
|
|
39
|
+
"jsonc"
|
|
40
|
+
],
|
|
41
|
+
"author": "MasuRii",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/MasuRii/pi-must-have-extension.git"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/MasuRii/pi-must-have-extension#readme",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/MasuRii/pi-must-have-extension/issues"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=20"
|
|
53
|
+
},
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
},
|
|
57
|
+
"pi": {
|
|
58
|
+
"extensions": [
|
|
59
|
+
"./index.ts"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"@mariozechner/pi-coding-agent": "*"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@mariozechner/pi-coding-agent": "^0.57.0",
|
|
67
|
+
"@types/node": "^25.3.5",
|
|
68
|
+
"typescript": "^5.7.3"
|
|
69
|
+
}
|
|
70
|
+
}
|