Исходный код agent-hub: API-сервер, ядро запуска агентов, Telegram-канал, база данных, определения агентов. Настроен .gitignore для node_modules, dist, data и .env. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
763 B
JSON
31 lines
763 B
JSON
{
|
|
"name": "rightvector-agent-hub",
|
|
"version": "0.1.0",
|
|
"description": "Верный вектор — AI Agent Orchestration Hub",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsc -w & node --watch dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.86.1",
|
|
"better-sqlite3": "^11.0.0",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"grammy": "^1.30.0",
|
|
"uuid": "^10.0.0",
|
|
"winston": "^3.14.2",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.8",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.0.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"@types/ws": "^8.5.12",
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|