Loads the project context, architecture, and documentation for the Gemili project. Use this at the start of a session or when you need to understand the project structure.
This skill provides a comprehensive overview of the Gemili project, including its architecture, key documentation, and coding standards. Use this when starting a new task to ground yourself in the project's reality.
specs/*.md): Detailed technical specifications and architecture decisions.docs/*.md): High-level requirements, ideas, and product context./server (Node.js + Express + TypeScript)main.tsstore.ts (Factory/Barrel), ws-handler.ts (WebSockets).store/ contains the modular store implementations:
types.ts: Shared interfaces and domain models.file-store.ts: Local JSON persistence for development.firestore-store.ts: Production Firestore implementation.agents/ contains logic for specific AI personas (Coaching, Analytics).api/ REST endpoints./client (React + Vite + TypeScript)src/main.tsxsrc/components/src/hooks/ for shared logic (useAudio, useWebSocket).specs/implementation_plan.md: Check if the feature is already planned or partially implemented.specs/architecture.md: Ensure your changes fit the established patterns (e.g., Service Layer, Dependency Injection).specs/.