UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

15 lines (14 loc) 620 B
/** Builds the startup card the dev TUI commits before the first prompt. */ import type { AgentInfoResult } from "#client/index.js"; import type { Theme } from "./theme.js"; export interface AgentHeaderInput { /** Resolved display name used when agent inspection is unavailable. */ name?: string; /** Agent inspection payload, or `undefined` when it could not be fetched. */ info?: AgentInfoResult; theme: Theme; /** Available terminal width. */ width: number; } /** Returns the styled rows of the startup card. */ export declare function buildAgentHeader(input: AgentHeaderInput): string[];