{"id":31663999,"url":"https://github.com/ai-mindset/poke","last_synced_at":"2025-10-30T14:18:34.533Z","repository":{"id":316576187,"uuid":"1058608308","full_name":"ai-mindset/poke","owner":"ai-mindset","description":"GitHub notifications made better 👇 [WIP]","archived":false,"fork":false,"pushed_at":"2025-09-25T11:25:03.000Z","size":36,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-25T12:32:20.255Z","etag":null,"topics":["deno","minimal","noise-reduction","notifications","typescript"],"latest_commit_sha":null,"homepage":"","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/ai-mindset.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-17T10:07:07.000Z","updated_at":"2025-09-25T11:45:12.000Z","dependencies_parsed_at":"2025-09-25T12:32:23.106Z","dependency_job_id":null,"html_url":"https://github.com/ai-mindset/poke","commit_stats":null,"previous_names":["ai-mindset/poke"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ai-mindset/poke","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Fpoke","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Fpoke/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Fpoke/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Fpoke/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ai-mindset","download_url":"https://codeload.github.com/ai-mindset/poke/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Fpoke/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278846328,"owners_count":26056090,"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-07T02:00:06.786Z","response_time":59,"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":["deno","minimal","noise-reduction","notifications","typescript"],"created_at":"2025-10-07T20:53:08.501Z","updated_at":"2025-10-07T20:53:09.368Z","avatar_url":"https://github.com/ai-mindset.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Poke 👉\n\nA minimal CLI tool for GitHub that intelligently filters through notification noise, showing you exactly what needs your attention: PRs for review, assigned issues, and @ mentions.\n\n## Problem\n\nGitHub notifications are overwhelming. You get spammed with every comment, issue update, and workflow run. The important stuff (PRs you need to review, comments that mention you) gets buried.\n\n## Solution\n\nPing filters GitHub items to show exactly what matters:\n\n- Pull requests awaiting your personal or team review\n- Issues assigned to you (open and recently closed)\n- PRs you've recently reviewed\n- Direct mentions (`@username`) and team mentions\n\n## Install\n\n**Linux/macOS:**\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/ai-mindset/poke/main/install.sh | bash\n```\n\n**Windows (PowerShell):**\n\n```powershell\niwr https://raw.githubusercontent.com/ai-mindset/poke/main/install.ps1 | iex\n```\n\n## Setup\n\n1. Create GitHub Personal Access Token (classic):\n   - Go to [GitHub Settings → Tokens](https://github.com/settings/tokens)\n   - Generate a classic token with the following scopes:\n     - `repo` (required for searching private repositories)\n     - `notifications` (required for notification access)\n\n2. Edit the config file created by the installer:\n   ```bash\n   # Linux/macOS\n   nano ~/.config/poke/.env\n\n   # Windows\n   notepad %USERPROFILE%\\AppData\\Local\\poke\\.env\n   ```\n\n3. Add your GitHub details to the config:\n   ```\n   GITHUB_TOKEN=ghp_your_token_here\n   WORK_ORGS=Your-Organization\n   WORK_TEAMS=team1,team2,team3\n   ```\n\n## Usage\n\n**Check notifications:**\n\n```bash\npoke\n```\n\n**Filter for a specific organization:**\n\n```bash\npoke my-organization\n```\n\n**Control how many notifications to display:**\n\n```bash\npoke --notifications=15\n```\n\n**Sample output:**\n\n```\n🔥 3 Pull Requests need your review:\n\n✅ [org/repo] Add new authentication feature\n   your review requested • https://github.com/org/repo/pull/123\n\n✅ [org/repo] Fix bug in API response\n   team review requested • https://github.com/org/repo/pull/456\n\n🔄 [org/repo] Update documentation\n   review_requested • https://github.com/org/repo/pull/789\n\n📋 2 Issues assigned to you:\n\n📝 [org/repo] Implement search feature\n   #42 • todo • https://github.com/org/repo/issues/42\n\n📝 [org/repo] Fix performance issue in dashboard\n   #43 • todo • https://github.com/org/repo/issues/43\n```\n\n**Automate with cron (optional):**\n\n```bash\n# Check every 15 minutes\n*/15 * * * * ~/.local/bin/poke\n```\n\n## How It Works\n\n1. Uses the GitHub Search API to find:\n   - PRs waiting for your review (personal or team)\n   - Open issues assigned to you\n   - Recently closed issues you were assigned to\n   - PRs you've recently reviewed\n\n2. Prioritizes items by importance:\n   - Work organization items are boosted to the top\n   - PRs needing review come first\n   - Then open issues assigned to you\n   - Followed by recently completed work\n\n3. Sends desktop notifications with the most important items\n\n**Result:** Signal without noise. See what needs your attention, ignore the rest.\n\n## Development\n\n**Requirements:** Deno 2.0+\n\n**Run from source:**\n\n```bash\ndeno run --allow-env --allow-net --allow-read --allow-run poke.ts --notifications=12 # choose a number of notifications\n```\n\n**Build binaries:**\n\n```bash\ndeno task build\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fai-mindset%2Fpoke","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fai-mindset%2Fpoke","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fai-mindset%2Fpoke/lists"}