{"id":42963061,"url":"https://github.com/amodhakal/opentodoist","last_synced_at":"2026-01-30T23:29:01.355Z","repository":{"id":332216944,"uuid":"1133095273","full_name":"amodhakal/opentodoist","owner":"amodhakal","description":"Bulk-add tasks to Todoist using AI-powered text extraction.","archived":false,"fork":false,"pushed_at":"2026-01-20T16:10:12.000Z","size":348,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-21T01:23:03.764Z","etag":null,"topics":["bun","nextjs","todoist","vercel"],"latest_commit_sha":null,"homepage":"https://opentodoist.vercel.app","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/amodhakal.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":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-12T21:54:32.000Z","updated_at":"2026-01-20T16:10:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/amodhakal/opentodoist","commit_stats":null,"previous_names":["amodhakal/opentodoist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amodhakal/opentodoist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amodhakal%2Fopentodoist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amodhakal%2Fopentodoist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amodhakal%2Fopentodoist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amodhakal%2Fopentodoist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amodhakal","download_url":"https://codeload.github.com/amodhakal/opentodoist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amodhakal%2Fopentodoist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28923066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T22:32:35.345Z","status":"ssl_error","status_checked_at":"2026-01-30T22:32:31.927Z","response_time":66,"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":["bun","nextjs","todoist","vercel"],"created_at":"2026-01-30T23:29:00.875Z","updated_at":"2026-01-30T23:29:01.349Z","avatar_url":"https://github.com/amodhakal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open Todoist\n\n**Bulk-add tasks to Todoist using AI-powered text extraction.**\n\nStop manually creating dozens of tasks one-by-one. Paste your unstructured notes, assignment lists, or brain dumps, and let AI intelligently extract actionable tasks with priorities and due dates. Review and approve before syncing to Todoist.\n\n## Why This Exists\n\nAdding 20+ tasks at the start of a semester (or project, or life event) is tedious. Todoist's UI requires clicking through forms for each task. This tool solves that by:\n\n- **AI extraction** from freeform text (emails, notes, syllabi)\n- **Intelligent priority detection** (p1-p4 mapping)\n- **Date parsing** (recognizes \"next Friday\", \"Jan 15\", etc.)\n- **Batch approval workflow** before committing to Todoist\n\n## Features\n\n- 🤖 Google Gemini AI task parsing\n- 🔐 Secure Todoist OAuth authentication\n- ✅ Review/approve interface before adding tasks\n- 📊 Priority and due date auto-detection\n- 🚦 Rate limiting (10 processes/week, upgradeable)\n- 📱 Mobile-responsive design\n\n## Tech Stack\n\n- **Frontend**: Next.js 16 (App Router), React 19, Tailwind CSS v4\n- **Database**: PostgreSQL (Neon serverless) + Drizzle ORM\n- **Auth**: Better Auth with Todoist OAuth\n- **AI**: Google Gemini 2.0 Flash\n- **APIs**: Todoist REST API v2\n\n## Setup\n\n### Prerequisites\n\n- Node.js 18+ or Bun\n- PostgreSQL database (local or Neon)\n- Todoist account\n- Google AI API key\n- Todoist OAuth app credentials\n\n### Environment Variables\n\nCreate `.env.local`:\n\n```bash\n# Database\nDATABASE_URL=\n\n# Gemini Key\nGEMINI_API=\n\n# Better Auth Secret\nBETTER_AUTH_SECRET=\n\n# Todoist API\nTODOIST_ID=\nTODOIST_SECRET=\nTODOIST_OAUTH_URL=\nTODOIST_TOKEN_URL=\nTODOIST_REDIRECT_URL=\nTODOIST_USERINFO_URL=\n```\n\n**Get Todoist OAuth credentials:**\n1. Go to https://developer.todoist.com/appconsole.html\n2. Create new app\n4. Copy Client ID and Secret\n\n### Installation\n\n```bash\n# Install dependencies\nbun install\n\n# Run database migrations\nbun run db:push\n\n# Start dev server\nbun run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000)\n\n## Usage\n\n1. **Connect Todoist**: Click \"Sign in with Todoist\" and authorize\n2. **Paste text**: Dump your unstructured task list (emails, notes, bullet points)\n3. **AI processes**: Gemini extracts tasks with priorities and dates\n4. **Review**: Approve/reject individual tasks or bulk-approve all\n5. **Sync**: Approved tasks are created in your Todoist inbox\n\n### Example Input\n\n```\nfinish cs231n assignment by friday (urgent)\nread chapter 4 for next monday\nschedule dentist appointment - low priority\nbuy groceries\nemail professor about project extension by wednesday\n```\n\n### AI Output\n\n| Task | Priority | Due Date |\n|------|----------|----------|\n| Finish CS231N assignment | P1 (urgent) | This Friday |\n| Read chapter 4 | P2 | Next Monday |\n| Schedule dentist appointment | P4 | None |\n| Buy groceries | P3 | None |\n| Email professor about extension | P2 | Wednesday |\n\n## Deployment\n\n### Vercel (Recommended)\n\n```bash\nvercel deploy\n```\n\n## Rate Limits\n\n- Free tier: 10 processes per week\n- Bypass: Set `bypassRateLimit: true` in admin user config (database edit required)\n\n## Development\n\n```bash\n# Database management\nbun run db:push         # Push schema changes\nbun run db:studio       # Open Drizzle Studio GUI\n\n# Type checking\nbun run typecheck\n\n# Linting\nbun run lint\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famodhakal%2Fopentodoist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famodhakal%2Fopentodoist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famodhakal%2Fopentodoist/lists"}