{"id":41342285,"url":"https://github.com/jmanuel1/todoer","last_synced_at":"2026-01-23T06:51:54.939Z","repository":{"id":38403272,"uuid":"200573880","full_name":"jmanuel1/todoer","owner":"jmanuel1","description":"Automatically add an email to your local todo.txt when you star it.","archived":false,"fork":false,"pushed_at":"2023-12-30T22:50:13.000Z","size":1005,"stargazers_count":1,"open_issues_count":9,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-12-31T22:27:57.254Z","etag":null,"topics":["email","mailspring","mailspring-plugin","react","todoer"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/jmanuel1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-05T03:12:43.000Z","updated_at":"2023-12-31T22:27:57.255Z","dependencies_parsed_at":"2023-02-05T02:32:19.697Z","dependency_job_id":null,"html_url":"https://github.com/jmanuel1/todoer","commit_stats":null,"previous_names":[],"tags_count":2,"template":null,"template_full_name":null,"purl":"pkg:github/jmanuel1/todoer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Ftodoer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Ftodoer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Ftodoer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Ftodoer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmanuel1","download_url":"https://codeload.github.com/jmanuel1/todoer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmanuel1%2Ftodoer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28682263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["email","mailspring","mailspring-plugin","react","todoer"],"created_at":"2026-01-23T06:51:54.868Z","updated_at":"2026-01-23T06:51:54.931Z","avatar_url":"https://github.com/jmanuel1.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **todoer**: A [Mailspring](https://getmailspring.com) plugin\n\n![A screenshot of the todoer plugin preferences](docs/screenshot.png)\n\nAutomatically add an email to your local\n[todo.txt](https://github.com/todotxt/todo.txt) when you star or label it.\n\n## What is it?\n\ntodoer is a Mailspring plugin that adds emails to your todo.txt whenever you\nstar them. The path to the todo file is configurable in a todoer tab under\nPreferences (\u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eComma\u003c/kbd\u003e on Windows). The plugin acts\ncompletely locally--there's no sign-in to worry about! It even works with\ntodo.txt files that are synced over a cloud service.\n\n## Features\n\n* Puts your actionable email threads into your to-do list for you!\n* Works with a `todo.txt` anywhere in your file system (as long as it has a\n  valid path).\n* Each to-do item created from the subject and date of the thread.\n\n## Installation\n\nDownload a release from [the releases\npage](https://github.com/jmanuel1/todoer/releases) or clone the repository using\n`git clone https://github.com/jmanuel1/todoer.git`. If you downloaded a release,\nunzip into a folder.\n\nIn the folder containing the release, run `yarn build`. Next, open Mailspring.\nIn the menu, choose `Developer \u003e Install a Plugin...`. Then choose the folder\ncontaining the plugin. Note that installation might freeze Mailspring for a\nwhile.\n\n## [Usage (how to use todoer)](docs/USAGE.md)\n\n## Development\n\nDevelopment should be done under Node **10.10+**.\n\nThis project uses Yarn as the package manager and npm scripts for build scripts.\nMake sure to run `yarn` before you start development.\n\nTo build the plugin, use `yarn build`. You should get a `lib/main.js` file. To\ntest the build, use `yarn test`.\n\n[Mailspring's API documentation](https://foundry376.github.io/Mailspring/) is\ncurrently quite lacking, so there are [additional\nnotes](https://github.com/jmanuel1/todoer/wiki/Unofficial-Mailspring-API-Docs)\nto supplement Mailspring's docs.\n\n### Directory structure\n\nPlugin code goes in `lib/`, tests/specs go in `spec/`.\n\n`lib/` subfolders:\n\n* `email-to-todo/`: code that converts email objects to todo.txt objects\n* `settings/`: code that manages the plugin user preferences\n* `changed-thread/`: code that grabs email threads upon any state change (like\n  a star or labels) and fires events when the change is relevant to the plugin\n* `todo-txt/`: handles the creation of todo objects, reading and writing of\n  `todo.txt`\n* `ui/`: user interface components\n\n### Tests\n\nPlease add tests with your changes. Tests are written with\n[Jasmine](https://jasmine.github.io).\n\n## Roadmap\n\n* Stability improvements\n  * See issue #1 (partially fixed)\n* Offer installable builds\n  * This may be difficult since, as far as I know, Mailspring doesn't have a\n    user-friendly way of installing plugins yet\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmanuel1%2Ftodoer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmanuel1%2Ftodoer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmanuel1%2Ftodoer/lists"}