feat: 이드 기능 완성 — note_bridge, intent_service, CalDAV Todo

- note_bridge.py: port 8096, log-conversation 제거, message 필드 추가
- intent_service.py: 의도 분류(Ollama→Claude fallback) + 한국어 날짜 파싱 + API 사용량 추적
- caldav_bridge.py: VTODO 생성 (/calendar/create-todo) + 응답 message 필드
- LaunchAgent plist: note-bridge (8096), intent-service (8097)
- .env.example: API_MONTHLY_LIMIT, NOTE_BRIDGE_URL, INTENT_SERVICE_URL

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-19 13:48:10 +09:00
parent 1137754964
commit dc08d29509
7 changed files with 860 additions and 4 deletions

View File

@@ -63,6 +63,9 @@ DEVONTHINK_APP_NAME=DEVONthink
KARAKEEP_URL=http://192.168.1.227:3000
KARAKEEP_API_KEY=changeme
# Intent Service — Claude API fallback 월간 예산 (USD)
API_MONTHLY_LIMIT=10.00
# Bridge Service URLs (n8n Docker → macOS 네이티브 서비스)
HEIC_CONVERTER_URL=http://host.docker.internal:8090
CHAT_BRIDGE_URL=http://host.docker.internal:8091
@@ -70,3 +73,5 @@ CALDAV_BRIDGE_URL=http://host.docker.internal:8092
DEVONTHINK_BRIDGE_URL=http://host.docker.internal:8093
MAIL_BRIDGE_URL=http://host.docker.internal:8094
KB_WRITER_URL=http://host.docker.internal:8095
NOTE_BRIDGE_URL=http://host.docker.internal:8096
INTENT_SERVICE_URL=http://host.docker.internal:8097