@kya-os/cli
Version:
CLI for KYA-OS MCP-I setup and management
31 lines • 908 B
TypeScript
/**
* Agent Table Component
* Displays agent identity information using cli-table3 for better presentation
*/
import { AgentData } from "./types.js";
/**
* Create an agent identity table
*/
export declare function createAgentTable(data: AgentData): string;
/**
* Create a compact agent info table (for check command)
*/
export declare function createCompactAgentTable(data: AgentData): string;
/**
* Create claim URL table with interactive prompt
*/
export declare function createClaimTable(data: {
claimUrl: string;
}): string;
/**
* Create an agent identity table with optional avatar
*/
export declare function createAgentTableWithAvatar(data: AgentData, options?: {
showAvatar?: boolean;
claimed?: boolean;
verified?: boolean;
hasGithub?: boolean;
hasDescription?: boolean;
handshakeComplete?: boolean;
}): Promise<string>;
//# sourceMappingURL=agent-table.d.ts.map