Go to file
cursor[bot] 6986c4e15f
Merge pull request #1 from o0kuma/claude/project-planning-approach-ukdz31
Add planning approach and doc set for AI-twin messenger idea
2026-07-30 04:17:03 +00:00
ai-service 2.5 QA: ai-service pytest 스위트 승격 + 자율성 플로우(L0~L2) 통합 테스트 2026-07-30 02:37:36 +00:00
backend Split backend into a Go core service + Python AI service 2026-07-30 01:21:35 +00:00
core-backend 화이트리스트 규칙 CRUD API + 메시지 되돌리기(undo) API 추가 2026-07-30 03:01:06 +00:00
docs Add Flutter mobile client skeleton and defer human PoC to last 2026-07-30 04:16:41 +00:00
mobile Add Flutter mobile client skeleton and defer human PoC to last 2026-07-30 04:16:41 +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
.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 Add Flutter mobile client skeleton and defer human PoC to last 2026-07-30 04:16:41 +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 && go run .

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