{"id":31770225,"url":"https://github.com/champi-dev/ai_therapy","last_synced_at":"2025-10-10T02:58:42.021Z","repository":{"id":304885452,"uuid":"1019151542","full_name":"champi-dev/ai_therapy","owner":"champi-dev","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-15T21:13:41.000Z","size":154,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-16T19:49:40.145Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ai-therapy-orpin.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/champi-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-13T21:13:38.000Z","updated_at":"2025-07-15T21:13:44.000Z","dependencies_parsed_at":"2025-07-17T01:58:09.194Z","dependency_job_id":"77ce41c1-50c8-4d5d-93f2-991a593b9bf6","html_url":"https://github.com/champi-dev/ai_therapy","commit_stats":null,"previous_names":["champi-dev/ai_therapy"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/champi-dev/ai_therapy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/champi-dev%2Fai_therapy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/champi-dev%2Fai_therapy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/champi-dev%2Fai_therapy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/champi-dev%2Fai_therapy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/champi-dev","download_url":"https://codeload.github.com/champi-dev/ai_therapy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/champi-dev%2Fai_therapy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002522,"owners_count":26083404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-10T02:58:37.248Z","updated_at":"2025-10-10T02:58:42.013Z","avatar_url":"https://github.com/champi-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI Therapy - Digital Wellness Companion\n\nA modern web application providing AI-powered therapeutic support with empathetic conversations, designed to create a safe digital space for mental wellness.\n\n## Features\n\n- **AI-Powered Conversations**: Intelligent responses powered by Think AI with O(1) performance\n- **Real-time Streaming**: Server-Sent Events for smooth, real-time message streaming\n- **Session Persistence**: Eternal context that never forgets conversation history\n- **Web Search Integration**: Real-time information with automatic fact-checking\n- **Dark Mode Support**: Comfortable viewing in any lighting condition\n- **Responsive Design**: Optimized for desktop, tablet, and mobile devices\n- **Accessibility**: WCAG AAA compliant with full keyboard navigation\n\n## Tech Stack\n\n- **Framework**: Next.js 14 with App Router\n- **Language**: TypeScript\n- **Styling**: Tailwind CSS with custom design system\n- **API**: Think AI API for conversational AI\n- **Testing**: Jest + React Testing Library + Playwright\n- **Code Quality**: ESLint + Prettier with pre-commit hooks\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone \u003crepository-url\u003e\ncd ai_therapy\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n3. Copy environment variables:\n\n```bash\ncp .env.example .env.local\n```\n\n4. Run the development server:\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) to see the application.\n\n## Scripts\n\n- `npm run dev` - Start development server\n- `npm run build` - Build for production\n- `npm run start` - Start production server\n- `npm run lint` - Run ESLint\n- `npm run format` - Format code with Prettier\n- `npm run type-check` - Run TypeScript type checking\n- `npm test` - Run unit tests\n- `npm run test:coverage` - Run tests with coverage\n- `npm run test:e2e` - Run E2E tests with Playwright\n\n## Project Structure\n\n```\nsrc/\n├── app/              # Next.js app router pages\n├── components/       # React components\n├── hooks/           # Custom React hooks\n├── lib/             # Utility libraries and API clients\n├── styles/          # Global styles and Tailwind config\n├── types/           # TypeScript type definitions\n└── utils/           # Helper functions\n```\n\n## Design System\n\nThe application uses a carefully crafted design system focused on creating a calming, therapeutic environment:\n\n- **Colors**: Soft pastels with semantic meaning\n- **Typography**: Inter font family for readability\n- **Animations**: Subtle micro-interactions for engagement\n- **Layout**: 12-column grid with responsive breakpoints\n\n## Testing\n\nThe project aims for 100% test coverage:\n\n- **Unit Tests**: Component and utility testing with Jest\n- **Integration Tests**: API integration testing\n- **E2E Tests**: Full user journey testing with Playwright\n\nRun tests:\n\n```bash\nnpm test\nnpm run test:e2e\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (pre-commit hooks will run automatically)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchampi-dev%2Fai_therapy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchampi-dev%2Fai_therapy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchampi-dev%2Fai_therapy/lists"}