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
This commit is contained in:
admin
2026-05-05 09:01:26 +00:00
Unverified
parent 4a7035dd92
commit 875c7f9b91
24688 changed files with 3224957 additions and 221 deletions

View File

@@ -1,126 +1,32 @@
{
"name": "better-clawd",
"version": "0.1.6",
"description": "Claude Code, but better.",
"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": {
"better-clawd": "bin/better-clawd.js"
},
"files": [
"bin/",
"dist/cli.mjs",
"schemas/",
"README.md"
],
"scripts": {
"build": "bun run scripts/build.ts",
"start": "node dist/cli.mjs",
"typecheck": "tsc --noEmit",
"perf:startup": "bun run build && bun run scripts/perf.ts startup --",
"perf:query": "bun run build && bun run scripts/perf.ts query --",
"perf:regression": "bun test src/utils/task/TaskOutput.test.ts src/utils/cronScheduler.test.ts src/services/tools/toolOrchestration.test.ts",
"smoke": "bun run build && node dist/cli.mjs --version",
"prepack": "npm run build"
},
"dependencies": {
"@alcalzone/ansi-tokenize": "^0.3.0",
"@anthropic-ai/bedrock-sdk": "^0.26.0",
"@anthropic-ai/foundry-sdk": "^0.2.0",
"@anthropic-ai/sandbox-runtime": "^0.0.46",
"@anthropic-ai/sdk": "^0.81.0",
"@anthropic-ai/vertex-sdk": "^0.14.0",
"@commander-js/extra-typings": "^12.0.0",
"@growthbook/growthbook": "^1.3.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.214.0",
"@opentelemetry/core": "^2.6.1",
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.57.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-logs": "^0.214.0",
"@opentelemetry/sdk-metrics": "^2.6.1",
"@opentelemetry/sdk-trace-base": "^2.6.1",
"@opentelemetry/sdk-trace-node": "^2.6.1",
"@opentelemetry/semantic-conventions": "^1.40.0",
"ajv": "^8.17.0",
"auto-bind": "^5.0.1",
"axios": "^1.14.0",
"bidi-js": "^1.0.3",
"chalk": "^5.4.0",
"chokidar": "^4.0.0",
"cli-boxes": "^3.0.0",
"cli-highlight": "^2.1.0",
"code-excerpt": "^4.0.0",
"commander": "^12.0.0",
"diff": "^8.0.4",
"emoji-regex": "^10.4.0",
"env-paths": "^3.0.0",
"execa": "^9.5.0",
"fflate": "^0.8.2",
"figures": "^6.1.0",
"fuse.js": "^7.1.0",
"get-east-asian-width": "^1.3.0",
"google-auth-library": "^9.15.0",
"https-proxy-agent": "^7.0.6",
"ignore": "^7.0.0",
"indent-string": "^5.0.0",
"jsonc-parser": "^3.3.1",
"lodash-es": "^4.17.21",
"lru-cache": "^11.0.0",
"marked": "^15.0.0",
"p-map": "^7.0.3",
"picomatch": "^4.0.0",
"proper-lockfile": "^4.1.2",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-compiler-runtime": "^1.0.0",
"react-reconciler": "^0.33.0",
"semver": "^7.6.3",
"shell-quote": "^1.8.2",
"signal-exit": "^4.1.0",
"stack-utils": "^2.0.6",
"strip-ansi": "^7.1.0",
"supports-hyperlinks": "^3.1.0",
"tree-kill": "^1.2.2",
"turndown": "^7.2.0",
"type-fest": "^4.30.0",
"undici": "^7.3.0",
"usehooks-ts": "^3.1.1",
"vscode-languageserver-protocol": "^3.17.5",
"wrap-ansi": "^9.0.0",
"ws": "^8.18.0",
"xss": "^1.0.15",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"typescript": "^5.7.0"
"zcode": "./bin/zcode.js"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x1xhlol/better-clawd.git"
"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"
},
"homepage": "https://github.com/x1xhlol/better-clawd",
"bugs": {
"url": "https://github.com/x1xhlol/better-clawd/issues"
},
"keywords": [
"claude-code",
"openai",
"llm",
"cli",
"agent"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.2.15"
"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'"
}
}