{"id":26791643,"url":"https://github.com/dedo-finger2/taskcli-roadmapsh","last_synced_at":"2026-04-27T23:36:05.938Z","repository":{"id":284650908,"uuid":"955626651","full_name":"Dedo-Finger2/TaskCli-RoadmapSh","owner":"Dedo-Finger2","description":"A simple task CLI program from Roadmap.sh","archived":false,"fork":false,"pushed_at":"2025-03-27T00:10:02.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T01:23:58.042Z","etag":null,"topics":["console-application","csharp","dotnet-core","roadmap-sh"],"latest_commit_sha":null,"homepage":"","language":"C#","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/Dedo-Finger2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2025-03-27T00:00:26.000Z","updated_at":"2025-03-27T00:10:06.000Z","dependencies_parsed_at":"2025-03-27T01:24:01.452Z","dependency_job_id":"115167af-400b-4768-be6a-c73b5d53e797","html_url":"https://github.com/Dedo-Finger2/TaskCli-RoadmapSh","commit_stats":null,"previous_names":["dedo-finger2/taskcli-roadmapsh"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dedo-Finger2%2FTaskCli-RoadmapSh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dedo-Finger2%2FTaskCli-RoadmapSh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dedo-Finger2%2FTaskCli-RoadmapSh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dedo-Finger2%2FTaskCli-RoadmapSh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dedo-Finger2","download_url":"https://codeload.github.com/Dedo-Finger2/TaskCli-RoadmapSh/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246200325,"owners_count":20739568,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["console-application","csharp","dotnet-core","roadmap-sh"],"created_at":"2025-03-29T15:16:49.789Z","updated_at":"2026-04-27T23:36:02.428Z","avatar_url":"https://github.com/Dedo-Finger2.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ✅ TaskCLI - Tracking tasks in your terminal\n\n\u003cimg src=\"https://github.com/Dedo-Finger2/TaskCli-RoadmapSh/blob/master/resources/images/cover.png?raw=true\" /\u003e\n\n---\n\n*TaskCLI is a lightweight command-line task tracker built in **C#** without any third-party libraries. It helps you manage your tasks efficiently by allowing you to add, update, delete, and track their progress. All tasks are stored in a **JSON** file in the current directory for easy persistence.*\n\n*This project is a backend programming challenge from roadmap.sh website. Here's the link to it: https://roadmap.sh/projects/task-tracker*\n\n---\n\n## 🚀 Features  \n\n- **Add tasks** with descriptions;\n- **Update and delete** tasks;\n- **Mark tasks** as `todo`, `in-progress`, or `done`;\n- **List all tasks** or filter by status;  \n- **JSON-based storage** (automatically created if it doesn't exist);  \n- **Simple and fast** command-line interface.\n\n---\n\n## 📥 Installation  \n\n### 1️⃣ Clone this repository  \n```sh\ngit clone https://github.com/yourusername/taskcli.git\n```\n\n### 2️⃣ Build the project\n```sh\ndotnet build -c Release\n```\n\n### 3️⃣ Run the binary\n`On Linux/macOS:`\n\n```sh\n./bin/Release/net9.0/taskcli\n```\n\n`On Windows:`\n\n```powershell\nbin\\Release\\net9.0\\taskcli.exe\n```\n\n### 4️⃣ (Optional) Install globally\n`On Linux/macOS:`\n\n```sh\nsudo mv bin/Release/net9.0/taskcli /usr/local/bin/taskcli\n```\n\n`On Windows:`\n\n```\nAdd the bin/Release/net9.0/ directory to your system PATH.\n```\n\n## 📌 Usage\n`Add a New Task`\n```sh\ntaskcli add \"Buy groceries\"\n```\n\n`Update a Task`\n\n```sh\ntaskcli update 1 \"Buy groceries and cook dinner\"\n```\n\n`Delete a Task`\n\n```sh\ntaskcli delete 1\n```\n\n`Mark a Task as In Progress`\n\n```sh\ntaskcli mark-in-progress 1\n```\n\n`Mark a Task as Done`\n\n```sh\ntaskcli mark-done 1\n```\n\n`List All Tasks`\n\n```sh\ntaskcli list\n```\n\n`List Tasks by Status`\n\n```sh\ntaskcli list done\ntaskcli list todo\ntaskcli list in-progress\n```\n\n## 📂 Task Structure (Stored in database.json)\n\nEach task is stored with the following properties:\n\n```json\n{\n  \"tasks\": [\n    {\n      \"id\": 1,\n      \"description\": \"Buy groceries\",\n      \"status\": \"Todo\",\n      \"createdAt\": \"2025-03-28T14:00:00Z\",\n      \"updatedAt\": \"2025-03-28T14:00:00Z\"\n    }\n  ]\n}\n```\n\n## ⚠️ Error Handling\nIf a task ID does not exist, an appropriate error message is shown. There is also a **log file** named `taskcli-error-log.log` that is created in the root folder (same as the cli binary).\n\n## 📜 License\nThis project is licensed under the MIT License.\n\n**Enjoy using TaskCLI to manage your tasks efficiently! 💻🎯**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdedo-finger2%2Ftaskcli-roadmapsh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdedo-finger2%2Ftaskcli-roadmapsh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdedo-finger2%2Ftaskcli-roadmapsh/lists"}