refactor: finish companion rename migration

Complete the remaining pi-to-companion rename across companion-os, web, vm-orchestrator, docker, and archived fixtures.

Verification:
- semantic rg sweeps for Pi/piConfig/getPi/.pi runtime references
- npm run check in apps/companion-os (fails in this worktree: biome not found)

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Harivansh Rathi 2026-03-10 07:39:32 -05:00
parent e8fe3d54af
commit 536241053c
303 changed files with 3603 additions and 3602 deletions

View file

@ -1,4 +1,4 @@
# @mariozechner/pi-tui
# @mariozechner/companion-tui
Minimal terminal UI framework with differential rendering and synchronized output for flicker-free interactive CLI applications.
@ -16,7 +16,7 @@ Minimal terminal UI framework with differential rendering and synchronized outpu
## Quick Start
```typescript
import { TUI, Text, Editor, ProcessTerminal } from "@mariozechner/pi-tui";
import { TUI, Text, Editor, ProcessTerminal } from "@mariozechner/companion-tui";
// Create terminal
const terminal = new ProcessTerminal();
@ -146,7 +146,7 @@ import {
CURSOR_MARKER,
type Component,
type Focusable,
} from "@mariozechner/pi-tui";
} from "@mariozechner/companion-tui";
class MyInput implements Component, Focusable {
focused: boolean = false; // Set by TUI when focus changes
@ -173,7 +173,7 @@ This enables IME candidate windows to appear at the correct position for CJK inp
**Container components with embedded inputs:** When a container component (dialog, selector, etc.) contains an `Input` or `Editor` child, the container must implement `Focusable` and propagate the focus state to the child:
```typescript
import { Container, type Focusable, Input } from "@mariozechner/pi-tui";
import { Container, type Focusable, Input } from "@mariozechner/companion-tui";
class SearchDialog extends Container implements Focusable {
private searchInput: Input;
@ -542,7 +542,7 @@ Supported formats: PNG, JPEG, GIF, WebP. Dimensions are parsed from the image he
Supports both slash commands and file paths.
```typescript
import { CombinedAutocompleteProvider } from "@mariozechner/pi-tui";
import { CombinedAutocompleteProvider } from "@mariozechner/companion-tui";
const provider = new CombinedAutocompleteProvider(
[
@ -568,7 +568,7 @@ editor.setAutocompleteProvider(provider);
Use `matchesKey()` with the `Key` helper for detecting keyboard input (supports Kitty keyboard protocol):
```typescript
import { matchesKey, Key } from "@mariozechner/pi-tui";
import { matchesKey, Key } from "@mariozechner/companion-tui";
if (matchesKey(data, Key.ctrl("c"))) {
process.exit(0);
@ -632,7 +632,7 @@ import {
visibleWidth,
truncateToWidth,
wrapTextWithAnsi,
} from "@mariozechner/pi-tui";
} from "@mariozechner/companion-tui";
// Get visible width of string (ignoring ANSI codes)
const width = visibleWidth("\x1b[31mHello\x1b[0m"); // 5
@ -657,8 +657,8 @@ When creating custom components, **each line returned by `render()` must not exc
Use `matchesKey()` with the `Key` helper for keyboard input:
```typescript
import { matchesKey, Key, truncateToWidth } from "@mariozechner/pi-tui";
import type { Component } from "@mariozechner/pi-tui";
import { matchesKey, Key, truncateToWidth } from "@mariozechner/companion-tui";
import type { Component } from "@mariozechner/companion-tui";
class MyInteractiveComponent implements Component {
private selectedIndex = 0;
@ -699,8 +699,8 @@ class MyInteractiveComponent implements Component {
Use the provided utilities to ensure lines fit:
```typescript
import { visibleWidth, truncateToWidth } from "@mariozechner/pi-tui";
import type { Component } from "@mariozechner/pi-tui";
import { visibleWidth, truncateToWidth } from "@mariozechner/companion-tui";
import type { Component } from "@mariozechner/companion-tui";
class MyComponent implements Component {
private text: string;
@ -799,8 +799,8 @@ npx tsx test/chat-simple.ts
### Debug logging
Set `PI_TUI_WRITE_LOG` to capture the raw ANSI stream written to stdout.
Set `COMPANION_TUI_WRITE_LOG` to capture the raw ANSI stream written to stdout.
```bash
PI_TUI_WRITE_LOG=/tmp/tui-ansi.log npx tsx test/chat-simple.ts
COMPANION_TUI_WRITE_LOG=/tmp/tui-ansi.log npx tsx test/chat-simple.ts
```