{"id":31070103,"url":"https://github.com/pskinnertech/hockey","last_synced_at":"2025-09-15T22:56:22.400Z","repository":{"id":313371711,"uuid":"993607983","full_name":"PSkinnerTech/hockey","owner":"PSkinnerTech","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-01T09:22:49.000Z","size":1892,"stargazers_count":0,"open_issues_count":18,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-05T17:15:13.848Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/PSkinnerTech.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":"docs/ROADMAP.MD","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-31T05:50:54.000Z","updated_at":"2025-06-01T12:30:10.000Z","dependencies_parsed_at":"2025-09-05T17:26:30.931Z","dependency_job_id":null,"html_url":"https://github.com/PSkinnerTech/hockey","commit_stats":null,"previous_names":["pskinnertech/hockey"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/PSkinnerTech/hockey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSkinnerTech%2Fhockey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSkinnerTech%2Fhockey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSkinnerTech%2Fhockey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSkinnerTech%2Fhockey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PSkinnerTech","download_url":"https://codeload.github.com/PSkinnerTech/hockey/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSkinnerTech%2Fhockey/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275333301,"owners_count":25446099,"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-09-15T02:00:09.272Z","response_time":75,"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-09-15T22:56:19.316Z","updated_at":"2025-09-15T22:56:22.381Z","avatar_url":"https://github.com/PSkinnerTech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Smart Hockey Coach 🏒\n\n[![CI Pipeline](https://github.com/pskinnertech/hockey/actions/workflows/ci.yml/badge.svg)](https://github.com/pskinnertech/hockey/actions/workflows/ci.yml)\n[![Security Scanning](https://github.com/pskinnertech/hockey/actions/workflows/security.yml/badge.svg)](https://github.com/pskinnertech/hockey/actions/workflows/security.yml)\n[![codecov](https://codecov.io/gh/pskinnertech/hockey/branch/main/graph/badge.svg)](https://codecov.io/gh/pskinnertech/hockey)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nAI-powered mobile app for real-time hockey shot analysis and coaching feedback.\n\n## 🚀 Features\n\n- **Real-time Shot Detection**: On-device ML instantly detects when you take a shot\n- **AI-Powered Analysis**: Gemini 2.5 Pro provides detailed technique feedback\n- **Progressive Feedback**: Get instant, fast, and comprehensive analysis\n- **Personal Progress Tracking**: Monitor your improvement over time\n- **Offline Capability**: Core features work without internet connection\n\n## 🛠️ Tech Stack\n\n- **Frontend**: React Native + TypeScript\n- **Backend**: Convex (real-time serverless)\n- **AI/ML**: \n  - Google Gemini 2.5 Pro (development)\n  - Vertex AI (production)\n  - TensorFlow Lite (on-device)\n- **State Management**: Zustand\n- **Testing**: Jest, Detox\n- **CI/CD**: GitHub Actions\n\n## 📋 Prerequisites\n\n- Node.js 18+ and npm\n- React Native development environment\n- iOS: Xcode 14+, iOS 13+\n- Android: Android Studio, JDK 11+, Android 8+\n- Convex account (free tier available)\n- Google Cloud account (for Gemini API)\n\n## 🚀 Quick Start\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/pskinnertech/hockey.git\n   cd hockey\n   ```\n\n2. **Install dependencies**\n   ```bash\n   cd frontend\n   npm install\n   \n   # iOS only\n   cd ios \u0026\u0026 pod install \u0026\u0026 cd ..\n   ```\n\n3. **Set up environment variables**\n   ```bash\n   cp .env.example .env.development\n   # Edit .env.development with your API keys\n   ```\n\n4. **Start development servers**\n   ```bash\n   # Terminal 1: Start Metro bundler\n   npm start\n   \n   # Terminal 2: Start Convex dev server\n   npx convex dev\n   \n   # Terminal 3: Run on your platform\n   npm run ios     # or\n   npm run android\n   ```\n\n## 🧪 Development\n\n### Code Quality\n\n```bash\nnpm run lint        # Check code style\nnpm run lint:fix    # Fix code style issues\nnpm run format      # Format code with Prettier\nnpm run typecheck   # Check TypeScript types\nnpm test           # Run unit tests\n```\n\n### Project Structure\n\n```\nfrontend/\n├── app/            # Expo Router screens\n├── components/     # Reusable UI components\n├── hooks/          # Custom React hooks\n├── stores/         # Zustand state management\n├── lib/            # Utilities and helpers\n├── convex/         # Backend functions and schema\n└── assets/         # Images, fonts, etc.\n```\n\n## 🚢 Deployment\n\nSee [DEPLOYMENT-GUIDE.MD](docs/DEPLOYMENT-GUIDE.MD) for detailed deployment instructions.\n\n### Quick Deploy\n\n```bash\n# Build for production\nnpm run build:ios\nnpm run build:android\n\n# Deploy backend\nnpx convex deploy --deployment prod\n```\n\n## 📖 Documentation\n\n- [Project Overview](docs/PROJECT-OVERVIEW.md)\n- [System Architecture](docs/SYS-ARCH.MD)\n- [Development Roadmap](docs/ROADMAP.MD)\n- [API Documentation](docs/GEMINI-API.MD)\n- [GitHub Secrets Setup](docs/GITHUB-SECRETS.md)\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Commit Convention\n\nWe use conventional commits:\n- `feat:` New features\n- `fix:` Bug fixes\n- `docs:` Documentation changes\n- `style:` Code style changes\n- `refactor:` Code refactoring\n- `test:` Test changes\n- `chore:` Build process or auxiliary tool changes\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- Google Gemini team for the powerful AI API\n- Convex team for the real-time backend platform\n- React Native community for the amazing mobile framework\n\n## 📧 Contact\n\n- Project Link: [https://github.com/pskinnertech/hockey](https://github.com/pskinnertech/hockey)\n- Issues: [https://github.com/pskinnertech/hockey/issues](https://github.com/pskinnertech/hockey/issues)\n\n---\n\nMade with ❤️ by [pskinnertech](https://github.com/pskinnertech)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpskinnertech%2Fhockey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpskinnertech%2Fhockey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpskinnertech%2Fhockey/lists"}