@agnishc/edb-herald 0.5.1 → 0.6.1

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
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.0] - 2026-05-11
4
+
5
+ ### Changed
6
+ - Migrated all imports and peerDependencies from `@mariozechner/pi-*` to `@earendil-works/pi-*` namespace
7
+
3
8
  ## [0.5.1] - 2026-05-05
4
9
 
5
10
  ## [0.5.0] - 2026-05-05
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnishc/edb-herald",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "Pi extension: git commit and PR agent with approval gates",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -38,6 +38,6 @@
38
38
  ]
39
39
  },
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-coding-agent": "*"
41
+ "@earendil-works/pi-coding-agent": "*"
42
42
  }
43
43
  }
package/src/git.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
2
  import type { HeraldMode } from "./types";
3
3
 
4
4
  // ── Git helpers ────────────────────────────────────────────────────────────────
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  * /herald pr — PR only (assumes commits already done)
12
12
  */
13
13
 
14
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
14
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
15
15
  import { buildTask, isGitRepo, parseMode } from "./git";
16
16
  import { HERALD_INSTRUCTIONS } from "./instructions";
17
17