init: Kira — AI body double with Honcho memory

Full voice pipeline (Whisper STT -> DeepSeek LLM -> OpenAI TTS),
animated SVG avatar (Live2D-ready), girly-pop UI, lofi music,
timer/notes/pets/wardrobe widgets, 10 background scenes with
particle effects, Honcho cross-session memory.
This commit is contained in:
2026-06-04 10:51:38 -04:00
commit 97424cb98f
47 changed files with 5691 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { SCENES, type Scene } from './scenes';
export interface KiraState {
currentScene: Scene;
isListening: boolean;
isSpeaking: boolean;
currentOutfit: string;
currentAccessory: string | null;
sessionNotes: string[];
}
export type { Scene };
export { SCENES };