{"id":32618832,"url":"https://github.com/ai-mindset/task","last_synced_at":"2026-07-05T13:31:35.784Z","repository":{"id":316467682,"uuid":"1063448587","full_name":"ai-mindset/task","owner":"ai-mindset","description":"A simple Markdown-based task management CLI","archived":false,"fork":false,"pushed_at":"2025-10-24T08:46:42.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-24T10:25:54.571Z","etag":null,"topics":[],"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/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-24T16:33:17.000Z","updated_at":"2025-10-24T08:46:45.000Z","dependencies_parsed_at":"2025-10-06T19:12:28.157Z","dependency_job_id":"cc99a467-1109-4acb-91c0-d0db486b5924","html_url":"https://github.com/ai-mindset/task","commit_stats":null,"previous_names":["ai-mindset/task"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ai-mindset/task","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Ftask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Ftask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Ftask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Ftask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ai-mindset","download_url":"https://codeload.github.com/ai-mindset/task/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ai-mindset%2Ftask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35156494,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"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":[],"created_at":"2025-10-30T17:57:30.515Z","updated_at":"2026-07-05T13:31:35.778Z","avatar_url":"https://github.com/ai-mindset.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# task\n\nA simple Markdown-based task management CLI, rewritten in Rust for improved\nperformance and reliability.\n\n## Overview\n\n`task` helps you manage tasks with due dates, creation dates, and completion\nstatus in a Markdown file. Tasks can be added, marked as complete, cancelled,\nand filtered by date -all from your terminal.\n\n## Installation\n\n```console\n# Install from source\ncargo install --git https://github.com/ai-mindset/task\n\n# Or download binary from releases\n# Then make it executable and move to your PATH\nchmod +x task\nsudo mv task /usr/local/bin/\n```\n\n## Usage\n\n```console\n# Add a task due today\ntask add \"Buy groceries\"\n\n# Add a task with specific date\ntask add 2025-09-15 \"Finish project\"\n\n# List pending tasks\ntask pending\n\n# Mark task #2 as complete\ntask done 2\n\n# View tasks due this week\ntask week\n\n# Use a custom task file location\nTASK_FILE=~/my-tasks.md task add \"Custom location task\"\n```\n\n### Task File Location\n\nBy default, tasks are stored in:\n- Linux/macOS: `~/.task/work_log.md`\n- Windows: `C:\\Users\\\u003cYourUsername\u003e\\AppData\\Local\\Task\\work_log.md`\n\nYou can customize this location by setting the `TASK_FILE` environment variable:\n\n```console\n# Linux/macOS\nTASK_FILE=~/Documents/my-tasks.md task add \"Use custom file\"\n\n# Windows (Command Prompt)\nset TASK_FILE=C:\\Users\\YourUsername\\Documents\\my-tasks.md\ntask add \"Use custom file\"\n\n# Windows (PowerShell)\n$env:TASK_FILE=\"C:\\Users\\YourUsername\\Documents\\my-tasks.md\"\ntask add \"Use custom file\"\n```\n\nFor persistent settings:\n\n```console\n# Linux/macOS (.bashrc, .zshrc, etc.)\nexport TASK_FILE=~/Documents/work-tasks.md\n\n# Windows (System Environment Variables)\n# Right-click on This PC \u003e Properties \u003e Advanced System Settings \u003e Environment Variables\n# Add TASK_FILE as a user variable\n```\n\n## Features\n\n- Markdown storage (human-readable, version control friendly)\n- Due dates, creation dates, and completion/cancellation tracking\n- Date-based filtering (today, this week, completed in past X weeks)\n- Simple CLI interface with shortcuts (t=today, p=pending)\n- Atomic file operations for data safety\n- Cross-platform support (Linux, macOS, Windows)\n- Configurable storage location via TASK_FILE environment variable\n\n## Commands\n\n| Command             | Alias | Description                           |\n| ------------------- | ----- | ------------------------------------- |\n| `add [date] \u003ctext\u003e` | `a`   | Add task (with optional due date)     |\n| `today`             | `t`   | List tasks due today                  |\n| `week`              | `w`   | List tasks due in next 7 days         |\n| `lastweek [weeks]`  | `lw`  | List tasks completed in last X weeks  |\n| `pending`           | `p`   | List pending tasks                    |\n| `done [num]`        | `d`   | Mark task complete or list completed  |\n| `cancel [num]`      | `c`   | Mark task cancelled or list cancelled |\n| `all`               | `l`   | List all tasks                        |\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fai-mindset%2Ftask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fai-mindset%2Ftask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fai-mindset%2Ftask/lists"}