{"id":23443438,"url":"https://github.com/mindlessmuse666/task-tracker-cli-app","last_synced_at":"2026-04-19T05:38:09.413Z","repository":{"id":269345894,"uuid":"907088147","full_name":"MindlessMuse666/task-tracker-cli-app","owner":"MindlessMuse666","description":"A simple command-line task tracker built with Python to manage your tasks. // Простой трекер задач командной строки, созданный на основе Python для управления вашими задачами.","archived":false,"fork":false,"pushed_at":"2024-12-22T21:58:52.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T07:32:52.256Z","etag":null,"topics":["cli","cli-todo-tracker","command-line","json","python","task-tracker","todo","todo-list","todo-tracker"],"latest_commit_sha":null,"homepage":"","language":"Python","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/MindlessMuse666.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}},"created_at":"2024-12-22T19:19:49.000Z","updated_at":"2024-12-22T21:58:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"10c1109a-fef3-4975-9868-ca34218e67fc","html_url":"https://github.com/MindlessMuse666/task-tracker-cli-app","commit_stats":null,"previous_names":["mindlessmuse666/task-tracker-cli-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MindlessMuse666/task-tracker-cli-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindlessMuse666%2Ftask-tracker-cli-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindlessMuse666%2Ftask-tracker-cli-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindlessMuse666%2Ftask-tracker-cli-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindlessMuse666%2Ftask-tracker-cli-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MindlessMuse666","download_url":"https://codeload.github.com/MindlessMuse666/task-tracker-cli-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MindlessMuse666%2Ftask-tracker-cli-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31996445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["cli","cli-todo-tracker","command-line","json","python","task-tracker","todo","todo-list","todo-tracker"],"created_at":"2024-12-23T18:19:24.996Z","updated_at":"2026-04-19T05:38:09.404Z","avatar_url":"https://github.com/MindlessMuse666.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Tracker CLI\n\nA simple command-line task tracker to manage your tasks.\n\n**Source of task:** [Task Tracker Project](https://roadmap.sh/projects/task-tracker)\n\n## Installation\n\nNo installation is required. Simply download the `task_tracker.py` script.\n\n## Usage\n\nThe task-cli is used with the following structure:\n\n```bash\npython task_tracker.py \u003ccommand\u003e [arguments]\n```\n\n### Available Commands:\n\n•   **add \u003cdescription\u003e:** Adds a new task.\n```bash\npython task_tracker.py add \"Buy groceries\"\n```\n\n•   **update \u003ctask_id\u003e \u003cdescription\u003e:** Updates the description of a task with the given ID.\n```bash\npython task_tracker.py update 1 \"Buy groceries and cook dinner\"\n```\n\n•   **delete \u003ctask_id\u003e:** Deletes a task with the given ID.\n```bash\npython task_tracker.py delete 1\n```\n\n•   **mark-in-progress \u003ctask_id\u003e:** Marks a task as in progress.\n```bash\npython task_tracker.py mark-in-progress 1\n```\n\n•   **mark-done \u003ctask_id\u003e:** Marks a task as done.\n```bash\npython task_tracker.py mark-done 1\n```\n\n•   **list:** Lists all tasks.\n```bash\npython task_tracker.py list\n```\n\n•   **list \u003cstatus\u003e:** Lists tasks with a specific status (todo, in-progress, done).\n```bash\npython task_tracker.py list done\npython task_tracker.py list todo\npython task_tracker.py list in-progress\n```\n\n## Examples\n\n```bash\n# Add a new task\npython task_tracker.py add \"Write a report\"\n\n# List all tasks\npython task_tracker.py list\n\n# Mark task 1 as in progress\npython task_tracker.py mark-in-progress 1\n\n# List tasks with status \"in-progress\"\npython task_tracker.py list in-progress\n\n# Mark task 1 as done\npython task_tracker.py mark-done 1\n\n# List all done tasks\npython task_tracker.py list done\n\n# Update the description of task with ID 1\npython task_tracker.py update 1 \"Write and submit the report\"\n\n# Delete task with ID 2\npython task_tracker.py delete 2\n```\n\n## Contributing\nIf you have any suggestions or improvements, feel free to contribute to the project.\n\n## License\nThis project is licensed under the MIT License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindlessmuse666%2Ftask-tracker-cli-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindlessmuse666%2Ftask-tracker-cli-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindlessmuse666%2Ftask-tracker-cli-app/lists"}