pi-local-agents-only 0.1.13 → 0.1.14

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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.1.14 - 2026-05-07
6
+
7
+ - migrated the local pi development baseline and peer metadata from deprecated `@mariozechner/*` packages to maintained `@earendil-works/*` `0.74.0`
8
+ - regenerated the npm lockfile against the current stable dependency graph
9
+ - reviewed the pi `0.74.0` changelog and confirmed the extension remains compatible with current system-prompt and package-loading behavior
10
+
5
11
  ## 0.1.13 - 2026-05-01
6
12
 
7
13
  - updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.72.0`
@@ -13,8 +13,8 @@ import { closeSync, existsSync, fsyncSync, mkdirSync, openSync, readFileSync, re
13
13
  import { homedir } from "node:os";
14
14
  import { dirname, join, resolve } from "node:path";
15
15
 
16
- /** @typedef {import("@mariozechner/pi-coding-agent").ExtensionAPI} ExtensionAPI */
17
- /** @typedef {import("@mariozechner/pi-coding-agent").ExtensionContext} ExtensionContext */
16
+ /** @typedef {import("@earendil-works/pi-coding-agent").ExtensionAPI} ExtensionAPI */
17
+ /** @typedef {import("@earendil-works/pi-coding-agent").ExtensionContext} ExtensionContext */
18
18
  /** @typedef {{ projects: string[]; repositories: string[] }} LocalAgentsOnlyConfig */
19
19
  /** @typedef {{ start: string; projectRoot: string; repoId: string; worktreeRoots: string[] }} ProjectState */
20
20
  /** @typedef {{ enabled: boolean; source: "env" | "marker" | "global-config" | "default" }} Mode */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-local-agents-only",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
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,15 +37,15 @@
37
37
  "prepublishOnly": "npm run check"
38
38
  },
39
39
  "devDependencies": {
40
- "@mariozechner/pi-coding-agent": "^0.72.0",
41
- "@types/node": "^25.6.0",
40
+ "@earendil-works/pi-coding-agent": "^0.74.0",
41
+ "@types/node": "^25.6.1",
42
42
  "typescript": "^6.0.3"
43
43
  },
44
- "packageManager": "npm@10.9.8",
44
+ "packageManager": "npm@11.14.0",
45
45
  "engines": {
46
46
  "node": ">=20.6.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "@mariozechner/pi-coding-agent": "*"
49
+ "@earendil-works/pi-coding-agent": "*"
50
50
  }
51
51
  }