- 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
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
import type { Context } from '../context/types';
|
|
import type { Baggage } from './types';
|
|
/**
|
|
* Retrieve the current baggage from the given context
|
|
*
|
|
* @param {Context} Context that manage all context values
|
|
* @returns {Baggage} Extracted baggage from the context
|
|
*/
|
|
export declare function getBaggage(context: Context): Baggage | undefined;
|
|
/**
|
|
* Retrieve the current baggage from the active/current context
|
|
*
|
|
* @returns {Baggage} Extracted baggage from the context
|
|
*/
|
|
export declare function getActiveBaggage(): Baggage | undefined;
|
|
/**
|
|
* Store a baggage in the given context
|
|
*
|
|
* @param {Context} Context that manage all context values
|
|
* @param {Baggage} baggage that will be set in the actual context
|
|
*/
|
|
export declare function setBaggage(context: Context, baggage: Baggage): Context;
|
|
/**
|
|
* Delete the baggage stored in the given context
|
|
*
|
|
* @param {Context} Context that manage all context values
|
|
*/
|
|
export declare function deleteBaggage(context: Context): Context;
|
|
//# sourceMappingURL=context-helpers.d.ts.map
|