by Kohei-Wada
Terminal task manager with intelligent schedule optimization.Keyboard-only. No dragging, no micromanagement.
# Add to your Claude Code skills
git clone https://github.com/Kohei-Wada/taskdogGuides for using mcp servers skills like taskdog.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:17:07.792Z",
"npmAuditRan": true,
"pipAuditRan": true
}taskdog is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Kohei-Wada. Terminal task manager with intelligent schedule optimization.Keyboard-only. No dragging, no micromanagement. It has 312 GitHub stars.
Yes. taskdog passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Kohei-Wada/taskdog" and add it to your Claude Code skills directory (see the Installation section above).
taskdog is primarily written in Python. It is open-source under Kohei-Wada on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh taskdog against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
https://github.com/user-attachments/assets/2c0de3ec-fa3d-4f41-ae01-acbff04931e3
TUI (Textual)

Gantt Chart (CLI)

Try taskdog with ~50 sample tasks. No installation required — just Docker:
docker run --rm -it ghcr.io/kohei-wada/taskdog:demo
The TUI works inside the container, but some keybindings (e.g., Ctrl+P for command palette) may conflict with Docker's key sequences. For the best experience, run the server in a container and connect from your host:
docker run --rm -d -p 8000:8000 --name taskdog-demo ghcr.io/kohei-wada/taskdog:demo
# Wait for the server and demo data to be ready (~15s)
docker logs -f taskdog-demo 2>&1 | grep -m1 "Server ready"
uvx --from taskdog-ui taskdog tui
uvxcomes with uv. It runs the command in a temporary environment without installing anything.
Requirements: Python 3.12+, uv
Supported Platforms: Linux, macOS
Experimental: Windows (WSL2 recommended; native support is still being hardened)
git clone https://github.com/Kohei-Wada/taskdog.git
cd taskdog
make install
This installs the CLI/TUI and server, and sets up a systemd (Linux) or launchd (macOS) service so the server starts automatically.
yay -S taskdog
Installs the CLI/TUI, server, and MCP binaries plus the systemd user service
(enable per-user with systemctl --user enable --now taskdog-server). See
contrib/aur/ for packaging details.
pip install taskdog-ui[server]
You'll need to manage the server process yourself (e.g., taskdog-server &).
%LOCALAPPDATA%\taskdog and configuration under %APPDATA%\taskdog.%EDITOR% first, then falls back to code,
notepad, and vim.taskdog add "My first task" --priority 10
taskdog list
taskdog gantt
taskdog tui
For complete setup including API key configuration, see Quick Start Guide.
Maximize the task list, sort it from the command palette, then narrow it down with / search, Ctrl+U to re-search, and Ctrl+R to build a progressive filter chain (substring + status/tag exclusion):
https://github.com/user-attachments/assets/dcb44390-7b10-49a0-bdfc-01a03d7751f9
UV workspace monorepo with five packages:
| Package | Description | PyPI |
|---|---|---|
| taskdog-core | Core business logic and SQLite persistence | |
| taskdog-client | HTTP API client library | |
| taskdog-server | FastAPI REST API server | |
| taskdog-ui | CLI and TUI interfaces | |
| taskdog-mcp | MCP server for Claude Desktop |
Contributions are welcome! See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.