Files
zCode-CLI-X/package.json
admin cbe816a421 feat: full service exposure with grammy bot + claudegram patterns
- Rewrote bot/index.js using grammy (@grammyjs/auto-retry + runner)
- Added deduplication.js (adapted from claudegram)
- Added request-queue.js (per-chat sequential processing)
- Added message-sender.js (chunking + Markdown fallback)
- Wired all JS-shim services: tools, skills, agents, config, RTK
- Added function calling support to ZAIProvider.chat()
- Added dynamic command routing (tools, skills, agents, model, stats)
- Added per-agent delegation commands (/agent_coder, /agent_architect, etc.)
- Added dedup + queue patterns from claudegram's battle-tested codebase
- Updated zcode.js to pass agents to initBot()
- Updated README feature comparison table to reflect real capabilities
2026-05-05 12:41:15 +00:00

36 lines
894 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",
"@grammyjs/auto-retry": "^2.0.2",
"@grammyjs/runner": "^2.0.3",
"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",
"grammy": "^1.42.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'"
}
}