{"id":42830084,"url":"https://github.com/knwoop/ooi","last_synced_at":"2026-02-09T03:05:09.968Z","repository":{"id":335044507,"uuid":"1143920949","full_name":"knwoop/ooi","owner":"knwoop","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-30T07:26:17.000Z","size":52,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-31T01:29:16.281Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/knwoop.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":"2026-01-28T05:09:06.000Z","updated_at":"2026-01-30T07:25:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/knwoop/ooi","commit_stats":null,"previous_names":["knwoop/oooooi"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/knwoop/ooi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knwoop%2Fooi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knwoop%2Fooi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knwoop%2Fooi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knwoop%2Fooi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knwoop","download_url":"https://codeload.github.com/knwoop/ooi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knwoop%2Fooi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29255404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T03:05:00.817Z","status":"ssl_error","status_checked_at":"2026-02-09T03:04:53.275Z","response_time":56,"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":[],"created_at":"2026-01-30T11:23:46.548Z","updated_at":"2026-02-09T03:05:09.964Z","avatar_url":"https://github.com/knwoop.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ooi\n\nA macOS CLI tool that automatically opens Google Meet 1 minute before meetings.\n\n## Installation\n\n```bash\ngo install github.com/knwoop/ooi@latest\n```\n\nOr build from source:\n\n```bash\ngit clone https://github.com/knwoop/ooi.git\ncd ooi\ngo build -o /usr/local/bin/ooi .\n```\n\n## Setup\n\n### 1. Create OAuth Client ID in Google Cloud Console\n\n1. Go to [Google Cloud Console](https://console.cloud.google.com/)\n2. Create a new project\n3. Enable Google Calendar API (APIs \u0026 Services \u003e Library)\n4. Configure OAuth consent screen (APIs \u0026 Services \u003e OAuth consent screen)\n   - User type: External\n   - Scopes: `calendar.readonly`\n   - Test users: Add your Gmail address\n5. Create OAuth Client ID (APIs \u0026 Services \u003e Credentials \u003e Create Credentials)\n   - Application type: Desktop app\n6. Download the JSON file\n\n### 2. Place credentials.json\n\n```bash\nmkdir -p ~/.config/ooi\nmv ~/Downloads/client_secret_xxx.json ~/.config/ooi/credentials.json\n```\n\n### 3. Authenticate\n\n```bash\nooi auth\n```\n\nA browser window will open for Google authentication.\n\n### 4. Verify\n\n```bash\nooi status\n```\n\nYou should see your next meeting with a Google Meet link.\n\n### 5. Enable auto-start\n\n```bash\nooi install\n```\n\nThe daemon will now start automatically on login.\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `ooi` | Start daemon (foreground) |\n| `ooi auth` | Authenticate with Google |\n| `ooi status` | Show ongoing and next meeting |\n| `ooi sync` | Trigger immediate calendar sync |\n| `ooi install` | Register with launchd (auto-start) |\n| `ooi uninstall` | Remove from launchd |\n| `ooi reinstall` | Rebuild and restart daemon |\n\n## How it works\n\n1. Fetches Google Calendar every 3 minutes\n2. Displays current/next meeting in the menu bar\n3. Shows a notification dialog 1 minute before meetings with Meet links\n4. Click \"Join\" to open Meet in your browser\n\n### Menu bar\n\nThe menu bar shows your meeting schedule at a glance:\n\n- `🟢 25m Weekly 1on1` - Ongoing meeting (25 minutes remaining)\n- `⏳ 15m Stand-up` - Next meeting (starts in 15 minutes)\n- `📅 No meetings` - No meetings today\n\nClick the menu bar icon to:\n- View meeting details\n- Open Meet link\n- Sync calendar manually\n- Quit the app\n\n### Running manually\n\nIf launchd auto-start doesn't work, you can run ooi manually:\n\n```bash\n# Run in background (survives terminal close)\nnohup ooi \u003e /tmp/ooi.log 2\u003e /tmp/ooi.err \u0026\n\n# Or simply\nooi \u0026\n```\n\n### Single meeting\n\n```\n┌─────────────────────────┐\n│  ⚠️ ooi                 │\n│                         │\n│  Meeting starting!      │\n│  Weekly Standup         │\n│                         │\n│         [Join]          │\n└─────────────────────────┘\n```\n\n### Multiple overlapping meetings\n\nWhen multiple meetings start at the same time, each meeting becomes a button (max 3):\n\n```\n┌───────────────────────────────────────────┐\n│  ⚠️ ooi                                   │\n│                                           │\n│  Meeting starting!                        │\n│                                           │\n│  [Weekly Standup] [Project Review] [1:1]  │\n└───────────────────────────────────────────┘\n```\n\nMeetings are sorted by response status priority: accepted \u003e tentative \u003e needsAction.\n\n## Files\n\n```\n~/.config/ooi/\n├── credentials.json   # OAuth client ID (manual)\n├── token.json         # Auth token (auto-generated)\n└── ooi.pid            # Daemon PID file (auto-generated)\n\n~/Library/LaunchAgents/\n└── com.ooi.plist      # launchd config (generated by install)\n\n/tmp/\n├── ooi.log            # stdout log\n└── ooi.err            # stderr log\n```\n\n## Uninstall\n\n```bash\nooi uninstall\nrm /usr/local/bin/ooi\nrm -rf ~/.config/ooi\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknwoop%2Fooi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknwoop%2Fooi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknwoop%2Fooi/lists"}