@agnishc/edb-todo 0.5.0 → 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,12 @@
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
+
8
+ ## [0.5.1] - 2026-05-05
9
+
3
10
  ## [0.5.0] - 2026-05-05
4
11
 
5
12
  ## [0.2.0] - 2026-04-29
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnishc/edb-todo",
3
- "version": "0.5.0",
3
+ "version": "0.6.1",
4
4
  "description": "Pi extension: structured task list with live widget and system-prompt injection to prevent goal drift",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -37,9 +37,9 @@
37
37
  ]
38
38
  },
39
39
  "peerDependencies": {
40
- "@mariozechner/pi-ai": "*",
41
- "@mariozechner/pi-coding-agent": "*",
42
- "@mariozechner/pi-tui": "*",
40
+ "@earendil-works/pi-ai": "*",
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*",
43
43
  "typebox": "*"
44
44
  }
45
45
  }
package/src/component.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { matchesKey, Text, truncateToWidth } from "@mariozechner/pi-tui";
1
+ import { matchesKey, Text, truncateToWidth } from "@earendil-works/pi-tui";
2
2
  import type { Task, TaskDetails } from "./types";
3
3
  import { PRIORITY_ORDER, STATUS_ICON } from "./types";
4
4
 
package/src/index.ts CHANGED
@@ -16,8 +16,8 @@
16
16
  * Command: /todos — open interactive full-screen task viewer
17
17
  */
18
18
 
19
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
20
- import { Text } from "@mariozechner/pi-tui";
19
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
20
+ import { Text } from "@earendil-works/pi-tui";
21
21
  import { Type } from "typebox";
22
22
  import { TodoViewComponent } from "./component";
23
23
  import { buildSystemPromptBlock, formatListForLLM } from "./prompt";
package/src/schemas.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { StringEnum } from "@mariozechner/pi-ai";
1
+ import { StringEnum } from "@earendil-works/pi-ai";
2
2
  import { Type } from "typebox";
3
3
 
4
4
  // ── Tool schemas ───────────────────────────────────────────────────────────────
package/src/state.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ExtensionContext } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
2
2
  import type { Task, TaskDetails } from "./types";
3
3
  import { PRIORITY_ORDER } from "./types";
4
4