pi-permission-system 0.4.0 → 0.4.1
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 +7 -0
- package/README.md +10 -2
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.1] - 2026-04-01
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated npm keywords for improved discoverability (`pi-coding-agent`, `coding-agent`, `access-control`, `authorization`, `security`)
|
|
12
|
+
- Updated README permission prompt example image
|
|
13
|
+
- Added Related Pi Extensions cross-linking section to README
|
|
14
|
+
|
|
8
15
|
## [0.4.0] - 2026-04-01
|
|
9
16
|
|
|
10
17
|
### Added
|
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# 🔐 pi-permission-system
|
|
2
2
|
|
|
3
|
-
[](package.json)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
|
|
6
6
|
Permission enforcement extension for the Pi coding agent that provides centralized, deterministic permission gates for tool, bash, MCP, skill, and special operations.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
<img width="1360" height="752" alt="image" src="https://github.com/user-attachments/assets/3e85190a-17fa-4d94-ac8e-efa54337df5d" />
|
|
9
|
+
|
|
9
10
|
|
|
10
11
|
## Features
|
|
11
12
|
|
|
@@ -473,6 +474,13 @@ npm run check # Run lint + test
|
|
|
473
474
|
|
|
474
475
|
---
|
|
475
476
|
|
|
477
|
+
## Related Pi Extensions
|
|
478
|
+
|
|
479
|
+
- [pi-multi-auth](https://github.com/MasuRii/pi-multi-auth) — Multi-provider credential management and quota-aware rotation
|
|
480
|
+
- [pi-tool-display](https://github.com/MasuRii/pi-tool-display) — Compact tool rendering and diff visualization
|
|
481
|
+
- [pi-rtk-optimizer](https://github.com/MasuRii/pi-rtk-optimizer) — RTK command rewriting and output compaction
|
|
482
|
+
- [pi-MUST-have-extension](https://github.com/MasuRii/pi-MUST-have-extension) — RFC 2119 keyword normalization for prompts
|
|
483
|
+
|
|
476
484
|
## License
|
|
477
485
|
|
|
478
486
|
[MIT](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-permission-system",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Permission enforcement extension for the Pi coding agent.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -28,9 +28,13 @@
|
|
|
28
28
|
"pi-package",
|
|
29
29
|
"pi",
|
|
30
30
|
"pi-extension",
|
|
31
|
+
"pi-coding-agent",
|
|
32
|
+
"coding-agent",
|
|
31
33
|
"permissions",
|
|
32
34
|
"policy",
|
|
33
|
-
"
|
|
35
|
+
"access-control",
|
|
36
|
+
"authorization",
|
|
37
|
+
"security"
|
|
34
38
|
],
|
|
35
39
|
"author": "MasuRii",
|
|
36
40
|
"license": "MIT",
|