@spences10/pi-coding-preferences 0.0.2 → 0.0.4
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 +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
Pi extension that blocks configured coding workflow anti-patterns
|
|
4
4
|
before agents run them.
|
|
5
5
|
|
|
6
|
-
It ships with default preferences
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
It ships with default workflow preferences. Add user preferences at
|
|
7
|
+
`~/.pi/agent/coding-preferences.json` and project preferences at
|
|
8
|
+
`.pi/coding-preferences.json`; when either file exists, configured
|
|
9
|
+
rules are loaded instead of the built-in defaults.
|
|
10
10
|
|
|
11
11
|
```json
|
|
12
12
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-coding-preferences",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Pi extension that nudges agents toward
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "Pi extension that nudges agents toward configured coding workflow preferences",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-guardrails",
|
|
7
7
|
"coding-preferences",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@earendil-works/pi-coding-agent": "^0.74.0"
|
|
30
|
-
},
|
|
31
28
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^25.
|
|
29
|
+
"@types/node": "^25.8.0",
|
|
33
30
|
"typescript": "^6.0.3",
|
|
34
|
-
"vitest": "^4.1.
|
|
31
|
+
"vitest": "^4.1.6"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@earendil-works/pi-coding-agent": "*"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=24.15.0"
|