- 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
37 lines
733 B
JavaScript
37 lines
733 B
JavaScript
/*
|
|
Language: Mojolicious
|
|
Requires: xml.js, perl.js
|
|
Author: Dotan Dimet <dotan@corky.net>
|
|
Description: Mojolicious .ep (Embedded Perl) templates
|
|
Website: https://mojolicious.org
|
|
Category: template
|
|
*/
|
|
function mojolicious(hljs) {
|
|
return {
|
|
name: 'Mojolicious',
|
|
subLanguage: 'xml',
|
|
contains: [
|
|
{
|
|
className: 'meta',
|
|
begin: '^__(END|DATA)__$'
|
|
},
|
|
// mojolicious line
|
|
{
|
|
begin: "^\\s*%{1,2}={0,2}",
|
|
end: '$',
|
|
subLanguage: 'perl'
|
|
},
|
|
// mojolicious block
|
|
{
|
|
begin: "<%{1,2}={0,2}",
|
|
end: "={0,1}%>",
|
|
subLanguage: 'perl',
|
|
excludeBegin: true,
|
|
excludeEnd: true
|
|
}
|
|
]
|
|
};
|
|
}
|
|
|
|
module.exports = mojolicious;
|