@agnishc/edb-claude-proxy 0.5.1 → 0.8.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.8.1] - 2026-05-11
4
+
5
+ ## [0.6.0] - 2026-05-11
6
+
7
+ ### Changed
8
+ - Migrated all imports and peerDependencies from `@mariozechner/pi-*` to `@earendil-works/pi-*` namespace
9
+
3
10
  ## [0.5.1] - 2026-05-05
4
11
 
5
12
  ## [0.5.0] - 2026-05-05
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnishc/edb-claude-proxy",
3
- "version": "0.5.1",
3
+ "version": "0.8.1",
4
4
  "description": "Pi extension: claude_proxy tool — delegate tasks to Claude Code CLI from within pi",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -38,8 +38,8 @@
38
38
  ]
39
39
  },
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-coding-agent": "*",
42
- "@mariozechner/pi-tui": "*",
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*",
43
43
  "typebox": "*"
44
44
  }
45
45
  }
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  * Optional: set CLAUDE_PATH env var to point to a specific claude binary.
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 { Type } from "typebox";
16
16
  import { findClaudeCli } from "./cli";
17
17
  import { execute } from "./execute";
package/src/render.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { getMarkdownTheme } from "@mariozechner/pi-coding-agent";
2
- import { Container, Markdown, Spacer, Text } from "@mariozechner/pi-tui";
1
+ import { getMarkdownTheme } from "@earendil-works/pi-coding-agent";
2
+ import { Container, Markdown, Spacer, Text } from "@earendil-works/pi-tui";
3
3
  import { formatToolCall } from "./format";
4
4
  import type { ClaudeProxyDetails } from "./types";
5
5