- 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
19 lines
647 B
TypeScript
19 lines
647 B
TypeScript
/**
|
|
* Attributes is a map from string to attribute values.
|
|
*
|
|
* Note: only the own enumerable keys are counted as valid attribute keys.
|
|
*
|
|
* @since 1.3.0
|
|
*/
|
|
export interface Attributes {
|
|
[attributeKey: string]: AttributeValue | undefined;
|
|
}
|
|
/**
|
|
* Attribute values may be any non-nullish primitive value except an object.
|
|
*
|
|
* null or undefined attribute values are invalid and will result in undefined behavior.
|
|
*
|
|
* @since 1.3.0
|
|
*/
|
|
export type AttributeValue = string | number | boolean | Array<null | undefined | string> | Array<null | undefined | number> | Array<null | undefined | boolean>;
|
|
//# sourceMappingURL=Attributes.d.ts.map
|