SPB Git

spb/khaelor Public

KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.

TypeScript 82.9% HTML 14.9% CSS 1.1% JavaScript 0.7%
695 B · 31 lines typescript
Raw Blame History
1/**2 * KHAELOR3 * File: tests/tui/fixtures/pty-echo-app.ts4 * Description: PTY test fixture — a minimal idle TuiApp (no bus traffic) used to assert live keystroke echo.5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910import { SessionEventBus } from "../../../src/session/index.js";11import { TuiApp } from "../../../src/tui/index.js";1213const bus = new SessionEventBus({ sessionId: "pty-echo-fixture" });1415const app = new TuiApp({16  bus,17  model: "claude-fixture",18  cwdLabel: "~/fixture",19  actions: {20    submit: () => {},21    interrupt: () => {},22    permission: () => {},23    quit: () => {24      app.stop();25      process.exit(0);26    },27  },28});2930void app.start();31