pi-local-agents-only 0.1.13 → 0.1.15

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,20 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.1.15 - 2026-05-18
6
+
7
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` `0.75.3` and refreshed the npm lockfile
8
+ - raised the local Node.js tooling floor to `>=22.19.0`
9
+ - ignored local `.cueloop/` runtime state
10
+ - reviewed current pi `0.75.3` package and extension guidance and confirmed the extension remains compatible with current system-prompt and package-loading behavior
11
+
12
+
13
+ ## 0.1.14 - 2026-05-07
14
+
15
+ - migrated the local pi development baseline and peer metadata from deprecated `@mariozechner/*` packages to maintained `@earendil-works/*` `0.74.0`
16
+ - regenerated the npm lockfile against the current stable dependency graph
17
+ - reviewed the pi `0.74.0` changelog and confirmed the extension remains compatible with current system-prompt and package-loading behavior
18
+
5
19
  ## 0.1.13 - 2026-05-01
6
20
 
7
21
  - 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.15",
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.75.3",
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
- "node": ">=20.6.0"
46
+ "node": ">=22.19.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "@mariozechner/pi-coding-agent": "*"
49
+ "@earendil-works/pi-coding-agent": "*"
50
50
  }
51
51
  }