{"id":18230509,"url":"https://github.com/ashish0kumar/taskly","last_synced_at":"2026-04-28T18:33:58.111Z","repository":{"id":260893453,"uuid":"882389187","full_name":"ashish0kumar/Taskly","owner":"ashish0kumar","description":"📋 A CLI Task manager built using Cobra \u0026 Bubble Tea in Go","archived":false,"fork":false,"pushed_at":"2024-11-03T12:43:17.000Z","size":658,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-14T06:46:17.983Z","etag":null,"topics":["bubbletea","charmbracelet","cobra-cli","go","golang","kanban","kanban-board","sqlite","task","task-manager","todo"],"latest_commit_sha":null,"homepage":"","language":"Go","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/ashish0kumar.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}},"created_at":"2024-11-02T17:47:34.000Z","updated_at":"2024-12-28T08:58:12.000Z","dependencies_parsed_at":"2024-11-03T12:27:28.116Z","dependency_job_id":"c64cee1c-620a-4f4e-b776-c8401c15a8ee","html_url":"https://github.com/ashish0kumar/Taskly","commit_stats":null,"previous_names":["ashish0kumar/taskly"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish0kumar%2FTaskly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish0kumar%2FTaskly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish0kumar%2FTaskly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashish0kumar%2FTaskly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashish0kumar","download_url":"https://codeload.github.com/ashish0kumar/Taskly/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247819947,"owners_count":21001394,"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":["bubbletea","charmbracelet","cobra-cli","go","golang","kanban","kanban-board","sqlite","task","task-manager","todo"],"created_at":"2024-11-04T11:04:25.239Z","updated_at":"2026-04-28T18:33:58.073Z","avatar_url":"https://github.com/ashish0kumar.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📋 Taskly\n\n**Taskly** is a CLI-based task management tool built in **Go** using the **Cobra** package. It features data storage with **SQLite**, visually styled output with **Lip Gloss**, and an interactive **Kanban** board view powered by **Bubble Tea**.\nTaskly makes it easy to **add**, **edit**, **delete**, and **manage** tasks directly from the terminal.\n\n![ss](assets/screenshot.png)\n\n## ✨ Features\n\n- **Task Management:** Add, delete, update, and list tasks.\n- **Project Organization:** Assign tasks to specific projects for better organization.\n- **SQLite Database Integration:** Efficient storage and retrieval of tasks.\n- **Styled Output:** Stylish table and Kanban layouts using Lip Gloss.\n- **Kanban Board Interface:** Visualize tasks as a Kanban board with Bubble Tea.\n\n\n## 🛠️ Installation\n\nClone the repository and navigate to the project directory:\n\n```bash\ngit clone https://github.com/ashish0kumar/Taskly.git\ncd Taskly\n```\n\n### Prerequisites\n\nEnsure Go is installed on your system. You can install Taskly with the following commands:\n\n```bash\ngo mod download\ngo build -o taskly\n```\n\nThis will create a binary executable named `taskly`.\n\n## 🔧 Usage\n\nUse Taskly commands from your terminal to manage tasks. The main command is `taskly`, followed by subcommands to perform specific actions.\n\n### \u003c/\u003e Commands\n\n- ➕ **Add a Task**\n\n  Add a new task, optionally specifying a project name:\n\n  ```bash\n  taskly add \"Task Name\" -p \"Project Name\"\n  ```\n\n- ❌ **Delete a Task**\n\n  Delete a task by its unique ID:\n\n  ```bash\n  taskly delete \u003cID\u003e\n  ```\n\n- ✏️ **Update a Task**\n\n  Update a task's name, project, or status:\n\n  ```bash\n  taskly update \u003cID\u003e -n \"New Task Name\" -p \"New Project Name\" -s \u003cstatus\u003e\n  ```\n\n  *Status options:*\n    - `0` for \"todo\"\n    - `1` for \"in progress\"\n    - `2` for \"done\"\n\n- 📄 **List All Tasks**\n\n  List all stored tasks in a table format:\n\n  ```bash\n  taskly list\n  ```\n\n- 🗂️ **View Kanban Board**\n\n  Display tasks in a Kanban board layout. Tasks are categorized into \"todo,\" \"in progress,\" and \"done\" columns:\n\n  ```bash\n  taskly kanban\n  ```\n\n- 🗄️ **View Database Path**\n\n  Locate the database file where tasks are stored:\n\n  ```bash\n  taskly where\n  ```\n\n## 💡 Examples\n\n1. **Adding a Task with Project Name**\n\n```bash\ntaskly add \"Design Homepage\" -p \"Website Redesign\"\n```\n\n2. **Updating a Task's Status**\n\n```bash\ntaskly update 1 -s 1\n```\n\n3. **Listing All Tasks**\n\n```bash\ntaskly list\n```\n\nThis command shows tasks in a formatted table with columns for ID, Name, Project, Status, and Creation Date.\n\n4. **Viewing the Kanban Board**\n\n```bash\ntaskly kanban\n```\n\nThis displays tasks in a Kanban layout, categorized by status.\n\n### 🗄️ Data Storage\n\nTaskly uses a SQLite database to persist tasks. The database is stored in an XDG-compliant directory (typically `$HOME/.local/share/tasks.db`). This structure enables easy backup and integration across systems.\n\n\n## 📦 Dependencies\n\n- [Cobra](https://github.com/spf13/cobra): CLI command framework.\n- [Bubble Tea](https://github.com/charmbracelet/bubbletea): TUI framework for the Kanban board.\n- [Lip Gloss](https://github.com/charmbracelet/lipgloss): Used for stylish table layouts.\n- [SQLite](https://github.com/mattn/go-sqlite3): Lightweight, serverless SQL database.\n\n\n## 🤝 Contributions\n\nContributions are welcome! Please fork the repository, create a new branch, and submit a pull request.\n\n\n## 📜 License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashish0kumar%2Ftaskly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashish0kumar%2Ftaskly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashish0kumar%2Ftaskly/lists"}