- Remove Queue-based server provisioning (moved to cloud-orchestrator) - Add manage_server tool with Service Binding to Cloud Orchestrator - Add CDN cache hit rate estimation based on tech_stack - Always display bandwidth info (show "포함 범위 내" when no overage) - Add language auto-detection (ko, ja, zh, en) - Update system prompt to always call tools fresh - Add Server System documentation to CLAUDE.md BREAKING: Server provisioning now requires cloud-orchestrator service Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
1023 B
JSON
38 lines
1023 B
JSON
{
|
|
"name": "telegram-summary-bot",
|
|
"version": "1.0.0",
|
|
"description": "Telegram bot with rolling summary using Cloudflare Workers + D1",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "wrangler dev",
|
|
"deploy": "wrangler deploy",
|
|
"db:create": "wrangler d1 create telegram-summary-db",
|
|
"db:init": "wrangler d1 execute telegram-summary-db --file=schema.sql",
|
|
"db:init:local": "wrangler d1 execute telegram-summary-db --local --file=schema.sql",
|
|
"tail": "wrangler tail",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/vitest-pool-workers": "^0.1.0",
|
|
"@cloudflare/workers-types": "^4.20241127.0",
|
|
"@vitest/coverage-v8": "^1.2.0",
|
|
"miniflare": "^3.20231030.0",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^1.2.0",
|
|
"wrangler": "^4.59.2"
|
|
},
|
|
"keywords": [
|
|
"telegram",
|
|
"bot",
|
|
"cloudflare",
|
|
"workers",
|
|
"d1",
|
|
"ai"
|
|
],
|
|
"dependencies": {
|
|
"zod": "^4.3.5"
|
|
}
|
|
}
|