- Resolve visual-direction conflicts (app_theme, main.dart, signup/onboarding screens, index.html) in favor of the soft-gradient + glassmorphism design; drop the competing Twin Shadow palette and TwinTokens usage. - Port non-visual additions from the parallel branch: CORS middleware, FlutterError/PlatformDispatcher crash handlers + boot timeout/fallback screen in main.dart, and the shared demo-invite feature (core-backend/demo.go, demo_test.go, mobile/lib/config.dart), reskinning the demo panel to match the glass UI. - Rename the shared demo invite code DEMO-BUNSIN -> DEMO-YKAVU on both client and server so the tester-facing feature keeps working. - Purge remaining "분신"/"bunsin" identifiers app-wide: Dart package name (bunsin_mobile -> ykavu_mobile), Android applicationId/namespace (com.bunsin.bunsin_mobile -> com.ykavu.ykavu_mobile, incl. Kotlin source dir move), on-device DB filename, keystore alias/docs, PoC draft-generator system prompt, and the static web boot placeholder div. |
||
|---|---|---|
| ai-service | ||
| backend | ||
| core-backend | ||
| docs | ||
| mobile | ||
| poc/tone-corpus | ||
| scripts | ||
| .env.example | ||
| .gitignore | ||
| AGENTS.md | ||
| CLAUDE.md | ||
| README.md | ||
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 우선) |
문서
- 기획:
docs/PLANNING.md· 결정:docs/decision-log.md(Q1~Q7 확정) - Vision / PRD / 기술설계:
docs/vision.md·docs/PRD.md·docs/tech-design.md - 로드맵 (작업 체크리스트):
docs/roadmap.md - 베타 직전(C):
docs/invite-ops.md·docs/android-release.md·docs/prototype.md - PoC 계획/준비물:
docs/poc-plan.md·docs/poc-materials.md
AI 에이전트 규칙
현재 단계
- Phase 1 A~C까지 반영됨 (서버·Flutter·베타 직전 문서/배포 경로)
- 다음: D — 사람 PoC #1/#3·Q3 인터뷰 (
docs/roadmap.md§3, 맨 마지막) - 프로토타입 공유 URL은
docs/prototype.md의SHARE_URL에 Master가 기입
로컬 실행 (요약)
# 터미널 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