UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

9 lines (8 loc) 375 B
/** * Unicode-aware text utilities copied from gemini-cli * Work at the code-point level rather than UTF-16 code units * so that surrogate-pair emoji count as one "column" */ export declare function toCodePoints(str: string): string[]; export declare function cpLen(str: string): number; export declare function cpSlice(str: string, start: number, end?: number): string;