markdown-tasks
v1.30.0Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees
By Craig MotlinLicense: Apache-2.015 GitHub starsUpdated 15 hours ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 7 skill or MCP entries
- Source updated
- Aug 26, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install plugin
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add markdown-tasks@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/motlin/claude-code-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/markdown-tasks/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/markdown-add-task/SKILL.md├── skills/markdown-do-all-tasks/SKILL.md├── skills/markdown-do-one-task/SKILL.md├── skills/markdown-import-plan/SKILL.md├── skills/markdown-plan-tasks/SKILL.md├── skills/markdown-sweep-todos/SKILL.md└── skills/tasks/SKILL.md
Included Skills7
Add a self-contained task to .llm/todo.md. Use when the user asks to add one task or append work to the markdown task list.
Work through all incomplete tasks in .llm/todo.md with one subagent and commit per task, continuing past blocked tasks.
Find and implement the next incomplete task from .llm/todo.md.
Import a plan markdown file into .llm/todo.md as self-contained implementation tasks.
Convert a planning discussion into self-contained tasks in .llm/todo.md.
Find TODO comments in the codebase and add them to .llm/todo.md as tasks.
Work with markdown-based task lists in .llm/todo.md files. Use when managing tasks, working with todo lists, extracting incomplete tasks, marking tasks complete, or implementing tasks from a task list.
Plugin manifests2
{
"name": "markdown-tasks",
"version": "1.30.0",
"description": "Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees",
"author": {
"name": "Craig Motlin"
},
"license": "Apache-2.0",
"homepage": "https://github.com/motlin/claude-code-plugins/tree/main/plugins/markdown-tasks",
"repository": "https://github.com/motlin/claude-code-plugins",
"keywords": [
"codex",
"plugin",
"markdown",
"tasks"
],
"interface": {
"displayName": "Markdown Tasks",
"shortDescription": "Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees",
"longDescription": "Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees",
"developerName": "Craig Motlin",
"category": "Productivity",
"capabilities": [
"Skills"
],
"defaultPrompt": [
"Use the markdown-tasks plugin."
],
"brandColor": "#3B82F6"
},
"skills": "./skills/"
}{
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
"name": "markdown-tasks",
"description": "Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees",
"version": "1.30.0",
"license": "Apache-2.0",
"author": {
"name": "Craig Motlin"
},
"commands": [
"./commands/plan-tasks.md",
"./commands/import-plan.md",
"./commands/do-one-task.md",
"./commands/add-one-task.md",
"./commands/do-all-tasks.md",
"./commands/sweep-todos.md"
],
"agents": [
"./agents/do-task.md"
],
"skills": [
"./skills/tasks"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[markdown-tasks on Agent Plugins Marketplace](https://pluginsmp.com/plugins/markdown-tasks)