- 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
30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
export const cachedSpaces = new Array(20).fill(0).map((_, index) => {
|
|
return ' '.repeat(index);
|
|
});
|
|
const maxCachedValues = 200;
|
|
export const cachedBreakLinesWithSpaces = {
|
|
' ': {
|
|
'\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\n' + ' '.repeat(index);
|
|
}),
|
|
'\r': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r' + ' '.repeat(index);
|
|
}),
|
|
'\r\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r\n' + ' '.repeat(index);
|
|
}),
|
|
},
|
|
'\t': {
|
|
'\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\n' + '\t'.repeat(index);
|
|
}),
|
|
'\r': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r' + '\t'.repeat(index);
|
|
}),
|
|
'\r\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r\n' + '\t'.repeat(index);
|
|
}),
|
|
}
|
|
};
|
|
export const supportedEols = ['\n', '\r', '\r\n'];
|