- 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
27 lines
1.3 KiB
TypeScript
27 lines
1.3 KiB
TypeScript
import type { MetricAdvice, MetricOptions } from '@opentelemetry/api';
|
|
import type { View } from './view/View';
|
|
import type { InstrumentType, MetricDescriptor } from './export/MetricData';
|
|
/**
|
|
* An internal interface describing the instrument.
|
|
*
|
|
* This is intentionally distinguished from the public MetricDescriptor (a.k.a. InstrumentDescriptor)
|
|
* which may not contains internal fields like metric advice.
|
|
*/
|
|
export interface InstrumentDescriptor extends MetricDescriptor {
|
|
/**
|
|
* For internal use; exporter should avoid depending on the type of the
|
|
* instrument as their resulting aggregator can be re-mapped with views.
|
|
*/
|
|
readonly type: InstrumentType;
|
|
/**
|
|
* See {@link MetricAdvice}
|
|
*
|
|
* @experimental
|
|
*/
|
|
readonly advice: MetricAdvice;
|
|
}
|
|
export declare function createInstrumentDescriptor(name: string, type: InstrumentType, options?: MetricOptions): InstrumentDescriptor;
|
|
export declare function createInstrumentDescriptorWithView(view: View, instrument: InstrumentDescriptor): InstrumentDescriptor;
|
|
export declare function isDescriptorCompatibleWith(descriptor: InstrumentDescriptor, otherDescriptor: InstrumentDescriptor): boolean;
|
|
export declare function isValidName(name: string): boolean;
|
|
//# sourceMappingURL=InstrumentDescriptor.d.ts.map
|