- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
22 lines
994 B
TypeScript
22 lines
994 B
TypeScript
import { CommandInstance } from './command';
|
|
import { UsageInstance } from './usage';
|
|
import { YargsInstance } from './yargs';
|
|
import { Arguments, DetailedArguments } from 'yargs-parser';
|
|
export declare function completion(yargs: YargsInstance, usage: UsageInstance, command: CommandInstance): CompletionInstance;
|
|
/** Instance of the completion module. */
|
|
export interface CompletionInstance {
|
|
completionKey: string;
|
|
generateCompletionScript($0: string, cmd: string): string;
|
|
getCompletion(args: string[], done: (completions: string[]) => any): any;
|
|
registerFunction(fn: CompletionFunction): void;
|
|
setParsed(parsed: DetailedArguments): void;
|
|
}
|
|
export declare type CompletionFunction = SyncCompletionFunction | AsyncCompletionFunction;
|
|
interface SyncCompletionFunction {
|
|
(current: string, argv: Arguments): string[] | Promise<string[]>;
|
|
}
|
|
interface AsyncCompletionFunction {
|
|
(current: string, argv: Arguments, done: (completions: string[]) => any): any;
|
|
}
|
|
export {};
|