{"id":48442955,"url":"https://github.com/ryo-morimoto/gitpoke","last_synced_at":"2026-04-06T16:04:31.031Z","repository":{"id":300334511,"uuid":"1003219311","full_name":"ryo-morimoto/gitpoke","owner":"ryo-morimoto","description":"Gentle reminders for developers through GitHub activity badges 🔥","archived":false,"fork":false,"pushed_at":"2025-07-22T14:46:03.000Z","size":129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-22T16:29:43.573Z","etag":null,"topics":["activity-tracker","cloudflare-workers","developer-tools","github-app"],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/ryo-morimoto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-16T20:08:59.000Z","updated_at":"2025-07-22T14:46:07.000Z","dependencies_parsed_at":"2025-06-21T05:33:22.378Z","dependency_job_id":"370e5727-3717-40c1-ac40-cb1da608db57","html_url":"https://github.com/ryo-morimoto/gitpoke","commit_stats":null,"previous_names":["ryo-morimoto/gitpoke"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ryo-morimoto/gitpoke","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryo-morimoto%2Fgitpoke","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryo-morimoto%2Fgitpoke/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryo-morimoto%2Fgitpoke/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryo-morimoto%2Fgitpoke/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryo-morimoto","download_url":"https://codeload.github.com/ryo-morimoto/gitpoke/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryo-morimoto%2Fgitpoke/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31479009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T14:34:32.243Z","status":"ssl_error","status_checked_at":"2026-04-06T14:34:31.723Z","response_time":112,"last_error":"SSL_read: 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":["activity-tracker","cloudflare-workers","developer-tools","github-app"],"created_at":"2026-04-06T16:04:08.402Z","updated_at":"2026-04-06T16:04:31.012Z","avatar_url":"https://github.com/ryo-morimoto.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitPoke 🫱🔥\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nGitPoke helps developers stay motivated by displaying GitHub activity badges. When someone hasn't been coding for a while, visitors can send them a friendly \"poke\" as a gentle reminder to get back to their projects.\n\n[日本語版 README はこちら](README_ja.md)\n\n## 🎯 Features\n\n- **Activity Badge**: Show your GitHub contribution status in your README\n- **Gentle Pokes**: Let visitors send you friendly reminders when you've been away\n- **GitHub App Integration**: Secure authentication with minimal permissions\n- **Real-time Updates**: Automatic activity status updates\n- **Privacy-First**: Uses only public contribution data\n\n## 🚀 Quick Start\n\n### 1. Set up your badge\n\n1. Visit [gitpoke.dev](https://gitpoke.dev)\n2. Authenticate with GitHub (one-click GitHub App authorization)\n3. Copy your badge URL\n4. Add it to your README:\n\n```markdown\n![GitPoke](https://gitpoke.dev/badge/your-username.svg)\n```\n\n### 2. How it works\n\n- 🟢 **Active** (within 7 days): Shows your normal activity badge\n- 🔴 **Inactive** (over 7 days): Badge becomes clickable, allowing visitors to poke you\n\n## 🏗️ Architecture\n\nGitPoke is built with modern edge computing technology:\n\n- **Runtime**: Cloudflare Workers\n- **Framework**: Hono\n- **Storage**: Cloudflare KV\n- **API**: GitHub GraphQL API\n- **Auth**: GitHub App with minimal permissions\n\n### Required Permissions\n\n```\nAccount permissions:\n  - Email addresses: Read\n  - Profile: Read\nRepository permissions:\n  - Metadata: Read\n```\n\n## 🛠️ Development\n\n### Prerequisites\n\n- Node.js 18+\n- Cloudflare account\n- GitHub App registration\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/ryo-morimoto/gitpoke.git\ncd gitpoke\n\n# Install dependencies\nnpm install\n\n# Set up environment variables\ncp .env.example .env\n# Edit .env with your credentials\n\n# Run development server\nnpm run dev\n```\n\n### Environment Variables\n\n```env\nGITHUB_APP_ID=your_app_id\nGITHUB_APP_PRIVATE_KEY=your_private_key\nGITHUB_CLIENT_ID=your_client_id\nGITHUB_CLIENT_SECRET=your_client_secret\n```\n\n## 📊 Project Status\n\nGitPoke is currently under active development. See [TODO.md](TODO.md) for our roadmap and progress.\n\n### Current Phase: MVP Development\n\n- [x] Project design and architecture\n- [ ] GitHub App setup and authentication\n- [ ] Badge generation with activity tracking\n- [ ] Poke functionality implementation\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.\n\n### Quick Contribution Guide\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\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 - see the [LICENSE](LICENSE) file for details.\n\n## 🔒 Security\n\nFor security concerns, please see our [Security Policy](SECURITY.md).\n\n## 📞 Contact\n\n- GitHub Issues: [github.com/ryo-morimoto/gitpoke/issues](https://github.com/ryo-morimoto/gitpoke/issues)\n- Twitter: [@your_twitter](https://twitter.com/your_twitter)\n\n## 🙏 Acknowledgments\n\n- Inspired by developers who need gentle reminders to keep coding\n- Built for the community that believes in friendly encouragement\n\n---\n\nMade with ❤️ by developers, for developers","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryo-morimoto%2Fgitpoke","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryo-morimoto%2Fgitpoke","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryo-morimoto%2Fgitpoke/lists"}