pi-local-agents-only 0.1.7 → 0.1.9
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/CHANGELOG.md +13 -0
- package/package.json +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 0.1.9 - 2026-04-18
|
|
6
|
+
|
|
7
|
+
- bumped the local pi development baseline to `@mariozechner/pi-coding-agent` `0.67.68` and `typescript` `6.0.3`
|
|
8
|
+
- refreshed the release lockfile against the current stable pi patch line
|
|
9
|
+
|
|
10
|
+
## 0.1.8 - 2026-04-15
|
|
11
|
+
|
|
12
|
+
- refresh the local development toolchain to `@mariozechner/pi-coding-agent` `0.67.2`, `typescript` `6.0.2`, and `@types/node` `25.6.0`
|
|
13
|
+
- declare `node >=20.6.0` and `packageManager: npm@11.12.1` in published metadata
|
|
14
|
+
- refresh the lockfile to the current stable development baseline
|
|
15
|
+
|
|
3
16
|
## 0.1.7 - 2026-04-11
|
|
4
17
|
|
|
5
18
|
- fix non-git project-root detection so the global `~/.pi` directory no longer hijacks repo inference under a user's home directory
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-local-agents-only",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Pi extension that strips global AGENTS.md and CLAUDE.md from the effective prompt for selected projects.",
|
|
5
5
|
"author": "Mitch Fultz (https://github.com/fitchmultz)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,8 +37,12 @@
|
|
|
37
37
|
"prepublishOnly": "npm run check"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
41
|
-
"@types/node": "^
|
|
42
|
-
"typescript": "^
|
|
40
|
+
"@mariozechner/pi-coding-agent": "^0.67.68",
|
|
41
|
+
"@types/node": "^25.6.0",
|
|
42
|
+
"typescript": "^6.0.3"
|
|
43
|
+
},
|
|
44
|
+
"packageManager": "npm@10.9.8",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=20.6.0"
|
|
43
47
|
}
|
|
44
48
|
}
|