@gotgenes/pi-permission-system 5.3.1 → 5.3.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +14 -12
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ 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
+ ## [5.3.2](https://github.com/gotgenes/pi-permission-system/compare/v5.3.1...v5.3.2) (2026-05-06)
9
+
10
+
11
+ ### Documentation
12
+
13
+ * fix ordered list continuation, use realistic quick-start config ([dd26166](https://github.com/gotgenes/pi-permission-system/commit/dd261666e497a280902790a5a50f7daf70a511a4))
14
+ * **retro:** add retro notes for issue [#98](https://github.com/gotgenes/pi-permission-system/issues/98) ([bf2bbc6](https://github.com/gotgenes/pi-permission-system/commit/bf2bbc61c748222ff4bef8234ed8543d7a93ad27))
15
+
8
16
  ## [5.3.1](https://github.com/gotgenes/pi-permission-system/compare/v5.3.0...v5.3.1) (2026-05-05)
9
17
 
10
18
 
package/README.md CHANGED
@@ -26,18 +26,20 @@ pi install npm:@gotgenes/pi-permission-system
26
26
 
27
27
  1. Create the global config file at `~/.pi/agent/extensions/pi-permission-system/config.json`:
28
28
 
29
- ```jsonc
30
- {
31
- "permission": {
32
- "*": "ask",
33
- "read": "allow",
34
- "write": "deny",
35
- "bash": { "git status": "allow", "git *": "ask" }
36
- }
37
- }
38
- ```
39
-
40
- 1. Start Pi — the extension automatically loads and enforces your policy.
29
+ ```jsonc
30
+ {
31
+ "permission": {
32
+ "*": "allow",
33
+ "bash": {
34
+ "rm -rf *": "deny",
35
+ "sudo *": "ask"
36
+ },
37
+ "external_directory": "ask"
38
+ }
39
+ }
40
+ ```
41
+
42
+ 2. Start Pi — the extension automatically loads and enforces your policy.
41
43
 
42
44
  All permissions use one of three states:
43
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-permission-system",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Permission enforcement extension for the Pi coding agent.",
5
5
  "type": "module",
6
6
  "files": [