@gotgenes/pi-permission-system 5.3.1 → 5.3.3

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 +16 -0
  2. package/README.md +19 -13
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ 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.3](https://github.com/gotgenes/pi-permission-system/compare/v5.3.2...v5.3.3) (2026-05-06)
9
+
10
+
11
+ ### Documentation
12
+
13
+ * add project logo, remove lock emoji from title ([3de430f](https://github.com/gotgenes/pi-permission-system/commit/3de430f9d139526550012dde13b2370622b0adf1))
14
+ * increase logo size to 200px ([cd983c8](https://github.com/gotgenes/pi-permission-system/commit/cd983c8bca92cd5378aace9ab8ba10419e45a825))
15
+
16
+ ## [5.3.2](https://github.com/gotgenes/pi-permission-system/compare/v5.3.1...v5.3.2) (2026-05-06)
17
+
18
+
19
+ ### Documentation
20
+
21
+ * fix ordered list continuation, use realistic quick-start config ([dd26166](https://github.com/gotgenes/pi-permission-system/commit/dd261666e497a280902790a5a50f7daf70a511a4))
22
+ * **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))
23
+
8
24
  ## [5.3.1](https://github.com/gotgenes/pi-permission-system/compare/v5.3.0...v5.3.1) (2026-05-05)
9
25
 
10
26
 
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # 🔐 @gotgenes/pi-permission-system
1
+ <p align="center">
2
+ <img src="docs/assets/logo.svg" alt="pi-permission-system logo" width="200" height="200">
3
+ </p>
4
+
5
+ # @gotgenes/pi-permission-system
2
6
 
3
7
  [![npm version](https://img.shields.io/npm/v/@gotgenes/pi-permission-system?style=flat&logo=npm&logoColor=white)](https://www.npmjs.com/package/@gotgenes/pi-permission-system) [![CI](https://img.shields.io/github/actions/workflow/status/gotgenes/pi-permission-system/ci.yml?style=flat&logo=github&label=CI)](https://github.com/gotgenes/pi-permission-system/actions/workflows/ci.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT) [![TypeScript](https://img.shields.io/badge/TypeScript-6.x-3178C6?style=flat&logo=typescript&logoColor=white)](https://www.typescriptlang.org/) [![Pi Package](https://img.shields.io/badge/Pi-Package-6366F1?style=flat)](https://pi.mariozechner.at/)
4
8
 
@@ -26,18 +30,20 @@ pi install npm:@gotgenes/pi-permission-system
26
30
 
27
31
  1. Create the global config file at `~/.pi/agent/extensions/pi-permission-system/config.json`:
28
32
 
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.
33
+ ```jsonc
34
+ {
35
+ "permission": {
36
+ "*": "allow",
37
+ "bash": {
38
+ "rm -rf *": "deny",
39
+ "sudo *": "ask"
40
+ },
41
+ "external_directory": "ask"
42
+ }
43
+ }
44
+ ```
45
+
46
+ 2. Start Pi — the extension automatically loads and enforces your policy.
41
47
 
42
48
  All permissions use one of three states:
43
49
 
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.3",
4
4
  "description": "Permission enforcement extension for the Pi coding agent.",
5
5
  "type": "module",
6
6
  "files": [