Go to file
cursor[bot] 6b06f1fde6
Merge pull request #7 from o0kuma/cursor/e2e-then-phase-b-382d
A3 E2E + Phase 1 B foundations (metrics, identity, data-flow)
2026-07-30 05:23:33 +00:00
ai-service Start Phase 1 B: metrics, identity phrase, data-flow, sessions 2026-07-30 05:08:08 +00:00
backend Split backend into a Go core service + Python AI service 2026-07-30 01:21:35 +00:00
core-backend Start Phase 1 B: metrics, identity phrase, data-flow, sessions 2026-07-30 05:08:08 +00:00
docs Start Phase 1 B: metrics, identity phrase, data-flow, sessions 2026-07-30 05:08:08 +00:00
mobile Start Phase 1 B: metrics, identity phrase, data-flow, sessions 2026-07-30 05:08:08 +00:00
poc/tone-corpus Add batch blind-eval harness and style retrieval, verified end-to-end 2026-07-29 09:20:41 +00:00
scripts Record A3 E2E results and add API-level e2e script 2026-07-30 05:05:53 +00:00
.env.example Add root .env template for GEMINI_API_KEY 2026-07-29 08:37:29 +00:00
.gitignore Implement core backend in Go (item 2 of the build order) 2026-07-30 01:42:48 +00:00
AGENTS.md Add Flutter mobile client skeleton and defer human PoC to last 2026-07-30 04:16:41 +00:00
CLAUDE.md Decide Phase 1 tech stack and turn the plan into a working checklist 2026-07-30 00:54:52 +00:00
README.md Implement Phase 1 A1/A2 APIs and record build plan in roadmap 2026-07-30 04:47:06 +00:00

README.md

hikikomori / 분신 (가칭)

카카오톡 대안 메신저 — "나를 대신해 남과 대화하는 AI 분신".

구조

경로 역할
docs/ 기획·PRD·기술설계·로드맵·PoC 계획
core-backend/ Go 코어 (가입·메시지·WebSocket·자율성·안전장치)
ai-service/ Python AI 내부 API (/draft, /escalate/check)
backend/ 초기 Python 프로토타입 (참고용)
poc/tone-corpus/ PoC 실험 스크립트
mobile/ Flutter 클라이언트 (Android 우선)

문서

AI 에이전트 규칙

현재 단계

  • 기획 문서 + Phase 1 서버(Go/Python) + Flutter 클라이언트 골격까지 진행됨
  • Q1~Q7은 아직 잠정(제안) — 회의 확정 전
  • 사람 대상 PoC #1/#3·Q3 인터뷰는 맨 마지막 작업으로 미룸 (docs/roadmap.md §3)

로컬 실행 (요약)

# 터미널 1 — AI 서비스
cd ai-service && pip install -r requirements.txt
export GEMINI_API_KEY=...   # or repo-root .env
uvicorn app.main:app --port 8001

# 터미널 2 — 코어 백엔드
cd core-backend
export ADMIN_API_TOKEN=dev-admin-token
go run . migrate && go run .

# 초대 코드 발급 예:
# curl -X POST http://localhost:8080/invites -H "Authorization: Bearer $ADMIN_API_TOKEN"

# 터미널 3 — Flutter (Android)
cd mobile && flutter run --dart-define=CORE_API_BASE=http://10.0.2.2:8080