A Task Manager: minimalist, single-file, offline localStorage based, jira-like, backed by a Markdown file.
Live here: https://ohermesjunior.github.io/tasks
- Single static file, no dependencies.
- Markdown file as storage, you can track and share.
- Kanban and List views, for your preferred workflow.
- Search and filter tasks, instantly.
- Groups you can separate tasks by project, team, sprint, etc.
- Multi-project support, view different projects or keep separate tabs.
- Unified UI, streamlined common actions, with no modals.
- Basic Markdown formatting support for task descriptions.
- Dark/Light theme.
- LocalStorage, you can close it and not lose anything.
- Can be installed as a PWA, but it's not necessary.
I built it mostly because there was no alternative I liked.
| Multi-Project Support | Description Formatting | Tags / Statuses |
|---|---|---|
![]() |
![]() |
![]() |
The format used for importing and exporting your project is simple. Basically a TODO.md file.
# My Project Name
## Group 1
- [TODO] Implement X thing #tag1 #tag2
> As a user, I want to do X so that I can achieve Y.
> Currently blocked by Z.
- [In Progress] Document the project
> The app starts with 3 statuses, 'TODO', 'In Progress' and 'Done'.
> You can add how many statuses, tags, groups and tasks you want.
- [Blocked] Custom status!
> Descriptions support a kind of subset of Markdown:
> **bold**, _itatlics_, *italics again*, ~strike-through~, `inline code`
> ```
> multiline code blocks as well
> ```
> - and
> - lists
## Group 2
- [Done] Descriptions are optional #tip




