{"id":13305649,"url":"https://github.com/devoc09/gtodo","last_synced_at":"2026-05-18T21:34:09.775Z","repository":{"id":52196366,"uuid":"346208102","full_name":"devoc09/gtodo","owner":"devoc09","description":"cli tool for using Google Tasks written in Go.","archived":false,"fork":false,"pushed_at":"2021-05-05T19:24:12.000Z","size":89,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-20T00:28:08.928Z","etag":null,"topics":["cli","google-tasks","todo"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devoc09.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}},"created_at":"2021-03-10T02:33:15.000Z","updated_at":"2023-02-17T02:21:47.000Z","dependencies_parsed_at":"2022-09-26T19:53:24.875Z","dependency_job_id":null,"html_url":"https://github.com/devoc09/gtodo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devoc09%2Fgtodo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devoc09%2Fgtodo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devoc09%2Fgtodo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devoc09%2Fgtodo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devoc09","download_url":"https://codeload.github.com/devoc09/gtodo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221175745,"owners_count":16769878,"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":["cli","google-tasks","todo"],"created_at":"2024-07-29T17:53:56.483Z","updated_at":"2025-12-27T08:26:34.352Z","avatar_url":"https://github.com/devoc09.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gtodo\nA command line tool for using Google Tasks basic actions.\n\n## Installation\n- Please get it from the [Releases](https://github.com/devoc09/gtodo/releases)\n\nif you have a Go env\n- Use Makefile or self build\n\nAuthor's env\n`go version go1.15.3 darwin/amd64`\n\n## Set up\n`credentials.json`, `token.json` and `config.yaml` are required\u003cbr\u003e\n1. make and download `credentials.json` from [Google Tasks API Go quickstart](https://developers.google.com/tasks/quickstart/go)(Details on how to do exactly that can be found there.)\n1. make dir `~/.config/gtodo` and move `credentials.json` to `~/.config/gtodo/`\n1. `$ gtodo login` or other command download `token.json` automatically to `~/.config/gtodo`\n1. make `config.yaml` into `~/.config/gtodo/`\u003cbr\u003e\n```yaml\n# config.yaml\nlistid: foobarbuz # \u003c- write your default TODO Task List ID.\n```\nyou can check the TODO List ID with the `$ gtodo lists show`\n\n## Usage\n#### Show TODO Lists\n```\n$ gtodo lists show\nTODO Lists:\nListsName (your list id)\n```\n#### Create TODO List\n```\n$ gtodo lists create -t new_todo_list\nCreated TODO List!! new_todo_list\n\n$ gtodo lists show\nTODO Lists:\nMain (your list id1)\nnew_todo_list (your list id2)\n```\n#### Show Tasks (you can only see one list of tasks)\n```\n$ gtodo tasks show\n[1] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[2] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[3] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\n```\n#### Create Task\n```\n$ gtodo tasks add\nInputTitle:: task4\nInputNote(press enter skip)::\nInputDueDate(ex. 2021-04-01)(press enter skip)::\ntask4 created\n$ gtodo tasks show\n[1] task4\n  Note:\n  Status: needsAction\n  Due: Date not set\n[2] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[3] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[4] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\n```\n#### Delete Task\n```\n$ gtodo tasks rm\n[1] task4\n  Note:\n  Status: needsAction\n  Due: Date not set\n[2] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[3] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[4] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\n✔ Input Task Num:: 1\nDeleted: task4\n$ gtodo tasks show\n[1] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[2] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[3] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\n```\n#### Mark up as Done\n```\n$ gtodo tasks done\n[1] task4\n  Note:\n  Status: needsAction\n[2] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[3] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[4] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\nInput Task Num:: 1\nMark up as complete: task4\n$ gtodo tasks show\n[1] task1\n  Note:\n  Status: needsAction\n  Due: Date not set\n[2] task2\n  Note: sample description\n  Status: needsAction\n  Due: Date not set\n[3] task3\n  Note:\n  Status: needsAction\n  Due: 2021/4/20 00:00:00\n```\n#### Get token.json automatically\n`$ gtodo login`\n\n## Thanks\n- Inspired by [BRO3886/gtasks](https://github.com/BRO3886/gtasks) and [mattn/todo](https://github.com/mattn/todo)\n- I was able to create this app thanks to a great set of libraries.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevoc09%2Fgtodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevoc09%2Fgtodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevoc09%2Fgtodo/lists"}