{"id":49546086,"url":"https://github.com/vkondi/github-toolkit","last_synced_at":"2026-05-02T19:30:39.321Z","repository":{"id":318129286,"uuid":"1069841244","full_name":"vkondi/github-toolkit","owner":"vkondi","description":"Analyze GitHub profiles, view detailed metrics, visualize data with charts, and compare profiles side-by-side.","archived":false,"fork":false,"pushed_at":"2026-04-10T04:41:35.000Z","size":1100,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-10T06:30:34.978Z","etag":null,"topics":["github","github-api-integration","profile-compare"],"latest_commit_sha":null,"homepage":"https://githubtoolkit.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vkondi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-04T18:17:15.000Z","updated_at":"2026-04-10T04:36:14.000Z","dependencies_parsed_at":"2025-10-05T10:30:22.244Z","dependency_job_id":"b5a273c9-4593-4940-9129-51e6ed44e3e2","html_url":"https://github.com/vkondi/github-toolkit","commit_stats":null,"previous_names":["vkondi/github-toolkit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vkondi/github-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkondi%2Fgithub-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkondi%2Fgithub-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkondi%2Fgithub-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkondi%2Fgithub-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vkondi","download_url":"https://codeload.github.com/vkondi/github-toolkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkondi%2Fgithub-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32547643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T19:18:06.202Z","status":"ssl_error","status_checked_at":"2026-05-02T19:16:21.335Z","response_time":132,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["github","github-api-integration","profile-compare"],"created_at":"2026-05-02T19:30:36.844Z","updated_at":"2026-05-02T19:30:39.315Z","avatar_url":"https://github.com/vkondi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Toolkit\n\nA comprehensive GitHub toolkit built with Next.js frontend and Flask API. Analyze GitHub profiles, view detailed metrics, visualize data with charts, and compare profiles side-by-side.\n\n## 📚 Table of Contents\n\n- **[Getting Started](./docs/GETTING_STARTED.md)** - Installation, setup, and troubleshooting guide\n- **[Features](./docs/FEATURES.md)** - Detailed feature descriptions and capabilities\n- **[Code Quality](./docs/CODE_QUALITY.md)** - Code quality tools, linting, formatting, and type safety\n- **[Technical Details](./docs/TECHNICAL_DETAILS.md)** - Tech stack, architecture, and deployment\n- **[GitHub API Integration](./docs/GITHUB_API_INTEGRATION.md)** - API endpoints and integration details\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Node.js 18+ and yarn\n- Python 3.8+\n- Git\n- GitHub Personal Access Token (recommended)\n\n### Setup\n\n**1. Clone the repository:**\n\n```bash\ngit clone \u003crepository-url\u003e\ncd github-toolkit\n```\n\n**2. Backend setup:**\n\n```bash\npip install -r requirements.txt\ncp .env.example .env\n# Edit .env and add your GitHub token\n# GITHUB_TOKEN=your_token_here\npython -m flask --app api/index run -p 5328\n```\n\n**3. Frontend setup (new terminal):**\n\n```bash\nyarn\nyarn next-dev\n```\n\n**4. Access the application:**\n\n- Frontend: http://localhost:3000\n- Backend API: http://localhost:5328\n\n## 🎯 Available Tools\n\n- **Profile Analyzer** (`/profile-analyzer`) - Analyze individual GitHub profiles with detailed metrics\n- **Compare Profiles** (`/compare-profiles`) - Compare two GitHub users side-by-side\n\n## 💻 Development\n\n**Run both frontend and backend concurrently:**\n\n```bash\nyarn dev\n```\n\nOr run them separately:\n\n```bash\n# Terminal 1\npython -m flask --app api/index run -p 5328\n\n# Terminal 2\nyarn next-dev\n```\n\n**Build for production:**\n\n```bash\nyarn build\nyarn start\n```\n\n## 📖 Learn More\n\n- For detailed setup and troubleshooting, see [Getting Started](./docs/GETTING_STARTED.md)\n- For feature descriptions, see [Features](./docs/FEATURES.md)\n- For code quality standards, see [Code Quality](./docs/CODE_QUALITY.md)\n- For technical architecture, see [Technical Details](./docs/TECHNICAL_DETAILS.md)\n- For API integration details, see [GitHub API Integration](./docs/GITHUB_API_INTEGRATION.md)\n\n## 🤝 Contributing\n\nWe welcome contributions! Please follow these steps:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes and commit (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Code Standards\n\n- Use TypeScript for frontend code\n- Maintain clean, readable code with proper comments\n- Test your changes thoroughly before submitting\n- Follow the existing code style and conventions\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\n**Made with ❤️ by Vishwajeet Kondi**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkondi%2Fgithub-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvkondi%2Fgithub-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkondi%2Fgithub-toolkit/lists"}