- 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
26 lines
1.5 KiB
TypeScript
26 lines
1.5 KiB
TypeScript
import * as core from "./core.cjs";
|
|
import * as errors from "./errors.cjs";
|
|
import type * as schemas from "./schemas.cjs";
|
|
import * as util from "./util.cjs";
|
|
export type $ZodErrorClass = {
|
|
new (issues: errors.$ZodIssue[]): errors.$ZodError;
|
|
};
|
|
export type $Parse = <T extends schemas.$ZodType>(schema: T, value: unknown, _ctx?: schemas.ParseContext<errors.$ZodIssue>, _params?: {
|
|
callee?: util.AnyFunc;
|
|
Err?: $ZodErrorClass;
|
|
}) => core.output<T>;
|
|
export declare const _parse: (_Err: $ZodErrorClass) => $Parse;
|
|
export declare const parse: $Parse;
|
|
export type $ParseAsync = <T extends schemas.$ZodType>(schema: T, value: unknown, _ctx?: schemas.ParseContext<errors.$ZodIssue>, _params?: {
|
|
callee?: util.AnyFunc;
|
|
Err?: $ZodErrorClass;
|
|
}) => Promise<core.output<T>>;
|
|
export declare const _parseAsync: (_Err: $ZodErrorClass) => $ParseAsync;
|
|
export declare const parseAsync: $ParseAsync;
|
|
export type $SafeParse = <T extends schemas.$ZodType>(schema: T, value: unknown, _ctx?: schemas.ParseContext<errors.$ZodIssue>) => util.SafeParseResult<core.output<T>>;
|
|
export declare const _safeParse: (_Err: $ZodErrorClass) => $SafeParse;
|
|
export declare const safeParse: $SafeParse;
|
|
export type $SafeParseAsync = <T extends schemas.$ZodType>(schema: T, value: unknown, _ctx?: schemas.ParseContext<errors.$ZodIssue>) => Promise<util.SafeParseResult<core.output<T>>>;
|
|
export declare const _safeParseAsync: (_Err: $ZodErrorClass) => $SafeParseAsync;
|
|
export declare const safeParseAsync: $SafeParseAsync;
|