{"id":49575098,"url":"https://github.com/rollecode/tasks-cli","last_synced_at":"2026-05-03T16:10:51.432Z","repository":{"id":308032836,"uuid":"1031414614","full_name":"rollecode/tasks-cli","owner":"rollecode","description":" A simple, dependency-free bash script to list your Todoist tasks sorted by creation date (oldest first) with colorized output and clickable task links.","archived":false,"fork":false,"pushed_at":"2025-10-17T13:56:21.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-02T13:33:33.772Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/rollecode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2025-08-03T17:30:22.000Z","updated_at":"2025-10-17T13:56:25.000Z","dependencies_parsed_at":"2025-08-03T19:16:58.444Z","dependency_job_id":"8175fccd-0c26-4fee-9983-d2b3ff38d029","html_url":"https://github.com/rollecode/tasks-cli","commit_stats":null,"previous_names":["ronilaukkarinen/todoist-cli","rollecode/tasks-cli"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rollecode/tasks-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollecode%2Ftasks-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollecode%2Ftasks-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollecode%2Ftasks-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollecode%2Ftasks-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rollecode","download_url":"https://codeload.github.com/rollecode/tasks-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollecode%2Ftasks-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32575386,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":[],"created_at":"2026-05-03T16:10:50.672Z","updated_at":"2026-05-03T16:10:51.424Z","avatar_url":"https://github.com/rollecode.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🤖 Tasks CLI\n\n[![version](https://img.shields.io/badge/version-1.2.0-blue.svg?style=for-the-badge)](#)\n![OpenAI](https://img.shields.io/badge/OpenAI-74aa9c?style=for-the-badge\u0026logo=openai\u0026logoColor=white)\n![bash](https://img.shields.io/badge/bash-%23121011.svg?style=for-the-badge\u0026color=%23222222\u0026logo=gnu-bash\u0026logoColor=white)\n![Todoist](https://img.shields.io/badge/todoist-badge?style=for-the-badge\u0026logo=todoist\u0026logoColor=%23ffffff\u0026color=%23E44332)\n![Linear](https://img.shields.io/badge/Linear-5E6AD2?style=for-the-badge\u0026logo=linear\u0026logoColor=white)\n![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge\u0026logo=python\u0026logoColor=ffdd54)\n\n## Unified task management 🦾\n\nBash script that lists tasks from Todoist and Linear with AI-powered translation and Obsidian-ready formatting.\n\n## Features\n\n- **Multi-platform** - Fetch tasks from Todoist, Linear, or both\n- **Obsidian-ready output** (default) - Markdown bullet format for easy pasting\n- **AI translation** - Translate foreign language tasks to English via OpenAI\n- **Present tense formatting** - Convert tasks to changelog-style format\n- **Smart cleanup** - Strip URLs and markdown formatting\n- **Chronological sorting** - Tasks sorted by creation date (newest first)\n- **Completed tasks** - Option to show completed Linear tasks\n- **Summary statistics** - Shows task count and date range\n- **Zero dependencies** - Only requires `curl`, `python3`, and standard bash\n\n## Usage\n\n```bash\n# Default - show tasks from both Todoist and Linear\ntasks\n\n# Show only Todoist tasks\ntasks --todoist\n\n# Show only Linear tasks\ntasks --linear\n\n# Include completed tasks (Linear only)\ntasks --completed\n\n# Include dates\ntasks --dates\n\n# Include task URLs\ntasks --task-urls\n\n# Combine options\ntasks --linear --completed --dates\n\n# Show help\ntasks --help\n```\n\n## Example Output\n\n**Default (Obsidian mode):**\n```\n* Schedule team meeting\n* Review pull request\n* Update documentation\n--- 3 tasks for 5 days timespan\n```\n\n**With dates:**\n```\n* 2024-10-14: Schedule team meeting\n* 2024-10-13: Review pull request\n--- 2 tasks for 2 days timespan\n```\n\n## Requirements\n\n- `bash` (any modern version)\n- `curl` (for API requests)\n- `python3` (for JSON parsing, OpenAI API calls)\n- At least one of: Todoist API token or Linear API key\n- OpenAI API key\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollecode%2Ftasks-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frollecode%2Ftasks-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollecode%2Ftasks-cli/lists"}