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 +1 -1
- package/README.zh-CN.md +1 -1
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ tool_call
|
|
|
59
59
|
## Quick start
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
# install from npm (
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-verdict",
|
|
3
|
-
"version": "0.2.
|
|
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"
|