- 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
28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
export declare const validAttributeName: RegExp;
|
|
export declare function disconnectGlobalObserver(): void;
|
|
export declare function connectGlobalObserver(): void;
|
|
declare function html(selector: HTMLMutation['selector'], mutate: HTMLMutation['mutate']): MutationController;
|
|
declare function position(selector: PositionMutation['selector'], mutate: PositionMutation['mutate']): MutationController;
|
|
declare function classes(selector: ClassnameMutation['selector'], mutate: ClassnameMutation['mutate']): MutationController;
|
|
declare function attribute(selector: AttrMutation['selector'], attribute: AttrMutation['attribute'], mutate: AttrMutation['mutate']): MutationController;
|
|
declare function declarative({ selector, action, value, attribute: attr, parentSelector, insertBeforeSelector, }: DeclarativeMutation): MutationController;
|
|
export declare type MutationController = {
|
|
revert: () => void;
|
|
};
|
|
export declare type DeclarativeMutation = {
|
|
selector: string;
|
|
attribute: string;
|
|
action: 'append' | 'set' | 'remove';
|
|
value?: string;
|
|
parentSelector?: string;
|
|
insertBeforeSelector?: string;
|
|
};
|
|
declare const _default: {
|
|
html: typeof html;
|
|
classes: typeof classes;
|
|
attribute: typeof attribute;
|
|
position: typeof position;
|
|
declarative: typeof declarative;
|
|
};
|
|
export default _default;
|