Files
zCode-CLI-X/package.json
admin 875c7f9b91 feat: Complete zCode CLI X with Telegram bot integration
- 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
2026-05-05 09:01:26 +00:00

33 lines
797 B
JSON

{
"name": "zcode-cli-x",
"version": "1.0.0",
"description": "Agentic coder with Z.AI + Telegram integration — Claude Code + Hermes in one beast",
"type": "module",
"bin": {
"zcode": "./bin/zcode.js"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"axios": "^1.14.0",
"chalk": "^5.4.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"execa": "^9.6.1",
"express": "^4.21.0",
"fs-extra": "^11.2.0",
"openai": "^4.77.0",
"p-queue": "^8.0.1",
"winston": "^3.13.0",
"ws": "^8.18.0"
},
"scripts": {
"start": "node bin/zcode.js",
"dev": "node --watch bin/zcode.js",
"build": "echo 'No build step needed' && chmod +x bin/zcode.js",
"test": "echo 'TODO: Add tests'"
}
}