pi-powerline 0.5.0 → 0.5.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/breadcrumb.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * widget.ts and editor.ts to render the model→folder breadcrumb.
6
6
  */
7
7
  import { basename } from 'node:path';
8
- import type { ExtensionContext, Theme } from '@mariozechner/pi-coding-agent';
8
+ import type { ExtensionContext, Theme } from '@earendil-works/pi-coding-agent';
9
9
 
10
10
  // ═══════════════════════════════════════════════════════════════════════════
11
11
  // nerd font detection
package/editor.ts CHANGED
@@ -5,14 +5,14 @@
5
5
  * Switches to bash-mode coloring when the prompt starts with !.
6
6
  * Editor is always enabled; breadcrumb mode controls whether widget info is embedded.
7
7
  */
8
- import { type EditorTheme, truncateToWidth, visibleWidth } from '@mariozechner/pi-tui';
8
+ import { type EditorTheme, truncateToWidth, visibleWidth } from '@earendil-works/pi-tui';
9
9
  import {
10
10
  CustomEditor,
11
11
  type ExtensionAPI,
12
12
  type ExtensionContext,
13
13
  type Theme,
14
14
  type ThemeColor,
15
- } from '@mariozechner/pi-coding-agent';
15
+ } from '@earendil-works/pi-coding-agent';
16
16
  import { getBreadcrumbData, renderBreadcrumbInfo } from './breadcrumb.ts';
17
17
  import { readPowerlineSettings } from './settings.ts';
18
18
 
package/footer.ts CHANGED
@@ -13,9 +13,9 @@
13
13
 
14
14
  import { readFileSync, existsSync } from 'node:fs';
15
15
  import { join } from 'node:path';
16
- import type { AssistantMessage } from '@mariozechner/pi-ai';
17
- import type { ExtensionAPI, ExtensionContext } from '@mariozechner/pi-coding-agent';
18
- import { truncateToWidth, visibleWidth } from '@mariozechner/pi-tui';
16
+ import type { AssistantMessage } from '@earendil-works/pi-ai';
17
+ import type { ExtensionAPI, ExtensionContext } from '@earendil-works/pi-coding-agent';
18
+ import { truncateToWidth, visibleWidth } from '@earendil-works/pi-tui';
19
19
  import { readPowerlineSettings } from './settings.ts';
20
20
 
21
21
  // ═══════════════════════════════════════════════════════════════════════════
package/header.ts CHANGED
@@ -14,9 +14,9 @@ import type {
14
14
  SessionStartEvent,
15
15
  SlashCommandInfo,
16
16
  Theme,
17
- } from '@mariozechner/pi-coding-agent';
18
- import { VERSION } from '@mariozechner/pi-coding-agent';
19
- import { truncateToWidth, wrapTextWithAnsi } from '@mariozechner/pi-tui';
17
+ } from '@earendil-works/pi-coding-agent';
18
+ import { VERSION } from '@earendil-works/pi-coding-agent';
19
+ import { truncateToWidth, wrapTextWithAnsi } from '@earendil-works/pi-tui';
20
20
  import { readPowerlineSettings } from './settings.ts';
21
21
 
22
22
  /** Left-to-right ANSI gradient coloring. Spaces are left uncolored. */
package/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- import type { ExtensionAPI } from '@mariozechner/pi-coding-agent';
2
- import type { AutocompleteItem } from '@mariozechner/pi-tui';
1
+ import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
2
+ import type { AutocompleteItem } from '@earendil-works/pi-tui';
3
3
  import { registerEditor } from './editor.ts';
4
4
  import { registerFooter } from './footer.ts';
5
5
  import { registerHeader } from './header.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-powerline",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Powerline-style UI extensions for pi coding agent (custom editor, breadcrumb, footer, header)",
5
5
  "homepage": "https://github.com/jwu/pi-powerline#readme",
6
6
  "repository": {
@@ -77,9 +77,9 @@
77
77
  "image": "https://raw.githubusercontent.com/jwu/pi-powerline/refs/heads/main/assets/pi-powerline.png"
78
78
  },
79
79
  "peerDependencies": {
80
- "@mariozechner/pi-ai": "*",
81
- "@mariozechner/pi-coding-agent": "*",
82
- "@mariozechner/pi-tui": "*"
80
+ "@earendil-works/pi-ai": "*",
81
+ "@earendil-works/pi-coding-agent": "*",
82
+ "@earendil-works/pi-tui": "*"
83
83
  },
84
84
  "devDependencies": {
85
85
  "@commitlint/cli": "^20.5.3",
package/widget.ts CHANGED
@@ -5,8 +5,8 @@
5
5
  * Shows: model → current folder.
6
6
  * Only active when breadcrumb mode is "top" in .pi/settings.json.
7
7
  */
8
- import type { ExtensionAPI, ExtensionContext, Theme } from '@mariozechner/pi-coding-agent';
9
- import { truncateToWidth, visibleWidth } from '@mariozechner/pi-tui';
8
+ import type { ExtensionAPI, ExtensionContext, Theme } from '@earendil-works/pi-coding-agent';
9
+ import { truncateToWidth, visibleWidth } from '@earendil-works/pi-tui';
10
10
  import { getBreadcrumbData, renderBreadcrumbInfo } from './breadcrumb.ts';
11
11
  import { readPowerlineSettings } from './settings.ts';
12
12