refactor: migrate server provisioning to Cloud Orchestrator service

- 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>
This commit is contained in:
kappa
2026-01-26 12:26:21 +09:00
parent 5413605347
commit 87c92e1ed1
27 changed files with 695 additions and 4584 deletions

View File

@@ -185,10 +185,6 @@ POST /api/chat → telegram-cli-web Worker
# 예치금
"잔액 조회"
"홍길동 5000원 입금"
# 서버
"서버 추천해줘"
"Linode 2GB 도쿄 서버 생성"
```
### 2. API 테스트 (curl)
@@ -199,15 +195,15 @@ curl -X POST https://your-worker.workers.dev/api/chat \
-H "Content-Type: application/json" \
-d '{"message": "안녕하세요"}'
# 서버 추천
curl -X POST https://your-worker.workers.dev/api/chat \
-H "Content-Type: application/json" \
-d '{"message": "서버 추천해줘"}'
# 잔액 조회
curl -X POST https://your-worker.workers.dev/api/chat \
-H "Content-Type: application/json" \
-d '{"message": "/deposit"}'
# 도메인 조회
curl -X POST https://your-worker.workers.dev/api/chat \
-H "Content-Type: application/json" \
-d '{"message": "example.com 조회"}'
```
### 3. Claude 사용 예시