- 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
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { Event } from './events';
|
|
import { Disposable } from './disposable';
|
|
/**
|
|
* Defines a CancellationToken. This interface is not
|
|
* intended to be implemented. A CancellationToken must
|
|
* be created via a CancellationTokenSource.
|
|
*/
|
|
export interface CancellationToken {
|
|
/**
|
|
* Is `true` when the token has been cancelled, `false` otherwise.
|
|
*/
|
|
readonly isCancellationRequested: boolean;
|
|
/**
|
|
* An {@link Event event} which fires upon cancellation.
|
|
*/
|
|
readonly onCancellationRequested: Event<any>;
|
|
}
|
|
export declare namespace CancellationToken {
|
|
const None: CancellationToken;
|
|
const Cancelled: CancellationToken;
|
|
function is(value: any): value is CancellationToken;
|
|
}
|
|
export interface AbstractCancellationTokenSource extends Disposable {
|
|
token: CancellationToken;
|
|
cancel(): void;
|
|
}
|
|
export declare class CancellationTokenSource implements AbstractCancellationTokenSource {
|
|
private _token;
|
|
get token(): CancellationToken;
|
|
cancel(): void;
|
|
dispose(): void;
|
|
}
|