pi-verdict 0.2.1 → 0.2.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.
package/README.md CHANGED
@@ -59,7 +59,7 @@ tool_call
59
59
  ## Quick start
60
60
 
61
61
  ```bash
62
- # install from npm (after the first release is published)
62
+ # install from npm (listed in the package catalog: https://pi.dev/packages/pi-verdict)
63
63
  pi install npm:pi-verdict
64
64
 
65
65
  # or directly from git — try it once
package/README.zh-CN.md CHANGED
@@ -58,7 +58,7 @@ tool_call
58
58
  ## 快速开始
59
59
 
60
60
  ```bash
61
- # 从 npm 安装(首发版本发布后可用)
61
+ # 从 npm 安装(已收录 pi 官方包目录: https://pi.dev/packages/pi-verdict)
62
62
  pi install npm:pi-verdict
63
63
 
64
64
  # 或直接从源码 —— 试用一次
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-verdict",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Pi coding agent extension: automatic tool-call permission verdicts — rule layer + model classifier with three-state adjudication (allow/ask/deny), fail-closed, evidence-driven",
5
5
  "author": "Jesset (https://github.com/jesset)",
6
6
  "type": "module",
@@ -12,9 +12,13 @@
12
12
  "LICENSE"
13
13
  ],
14
14
  "keywords": [
15
+ "pi-package",
15
16
  "pi",
16
17
  "pi-extension",
18
+ "extension",
17
19
  "pi-coding-agent",
20
+ "auto-mode",
21
+ "automode",
18
22
  "permissions",
19
23
  "security",
20
24
  "tool-call",
@@ -28,6 +32,9 @@
28
32
  "homepage": "https://github.com/jesset/pi-verdict#readme",
29
33
  "bugs": "https://github.com/jesset/pi-verdict/issues",
30
34
  "license": "MIT",
35
+ "pi": {
36
+ "extensions": ["./extensions"]
37
+ },
31
38
  "scripts": {
32
39
  "typecheck": "tsc --noEmit -p tsconfig.json",
33
40
  "test": "bun test"