Files
admin 875c7f9b91 feat: Complete zCode CLI X with Telegram bot integration
- 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
2026-05-05 09:01:26 +00:00

88 lines
3.3 KiB
TypeScript

import * as net from 'net';
import net__default from 'net';
import { Duplex } from 'stream';
declare class Socks5Connection {
socket: Duplex;
server: Socks5Server;
username?: string;
password?: string;
destAddress?: string;
destPort?: number;
command?: keyof typeof Socks5ConnectionCommand;
private errorHandler;
metadata: any;
constructor(server: Socks5Server, socket: Duplex);
private readBytes;
private handleGreeting;
private handleUserPassword;
private handleConnectionRequest;
private connect;
}
declare enum Socks5ConnectionCommand {
connect = 1,
bind = 2,
udp = 3
}
declare enum Socks5ConnectionStatus {
REQUEST_GRANTED = 0,
GENERAL_FAILURE = 1,
CONNECTION_NOT_ALLOWED = 2,
NETWORK_UNREACHABLE = 3,
HOST_UNREACHABLE = 4,
CONNECTION_REFUSED = 5,
TTL_EXPIRED = 6,
COMMAND_NOT_SUPPORTED = 7,
ADDRESS_TYPE_NOT_SUPPORTED = 8
}
type AuthSocks5Connection = Socks5Connection & {
username: string;
password: string;
};
type InitialisedSocks5Connection = Socks5Connection & {
destAddress: string;
destPort: number;
command: keyof typeof Socks5ConnectionCommand;
};
declare class Socks5Server {
authHandler?: (connection: AuthSocks5Connection, accept: () => void, deny: () => void) => boolean | Promise<boolean> | any;
rulesetValidator?: (connection: InitialisedSocks5Connection, accept: () => void, deny: () => void) => boolean | Promise<boolean> | void;
connectionHandler: (connection: InitialisedSocks5Connection, sendStatus: (status: keyof typeof Socks5ConnectionStatus) => void) => void;
supportedCommands: Set<keyof typeof Socks5ConnectionCommand>;
private server;
constructor();
listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this;
listen(port?: number, hostname?: string, listeningListener?: () => void): this;
listen(port?: number, backlog?: number, listeningListener?: () => void): this;
listen(port?: number, listeningListener?: () => void): this;
listen(path: string, backlog?: number, listeningListener?: () => void): this;
listen(path: string, listeningListener?: () => void): this;
listen(options: net.ListenOptions, listeningListener?: () => void): this;
listen(handle: any, backlog?: number, listeningListener?: () => void): this;
listen(handle: any, listeningListener?: () => void): this;
close(callback?: ((err?: Error | undefined) => void) | undefined): this;
setAuthHandler(handler: typeof this.authHandler): this;
disableAuthHandler(): this;
setRulesetValidator(handler: typeof this.rulesetValidator): this;
disableRulesetValidator(): this;
setConnectionHandler(handler: typeof this.connectionHandler): this;
useDefaultConnectionHandler(): this;
_handleConnection(socket: Duplex): this;
}
declare function export_default(connection: InitialisedSocks5Connection, sendStatus: (status: keyof typeof Socks5ConnectionStatus) => void): void | net__default.Socket;
type ServerOptions = {
auth?: {
username: string;
password: string;
};
port?: number;
hostname?: string;
};
declare function createServer(opts?: ServerOptions): Socks5Server;
export { Socks5Server, createServer, export_default as defaultConnectionHandler };