Agent Plugins Marketplace
All plugins

markdown-tasks

v1.30.0

Task management system using markdown checkboxes in .llm/todo.md with slash commands for planning, implementing, and tracking tasks across git worktrees

CodexClaude Code7 Skills

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

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add markdown-tasks@agent-plugin-marketplace

Paste 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-plugins

Clone 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

plugins/markdown-tasks/
├── .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

markdown-add-taskskills/markdown-add-task/SKILL.md

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.

markdown-do-all-tasksskills/markdown-do-all-tasks/SKILL.md

Work through all incomplete tasks in .llm/todo.md with one subagent and commit per task, continuing past blocked tasks.

markdown-do-one-taskskills/markdown-do-one-task/SKILL.md

Find and implement the next incomplete task from .llm/todo.md.

markdown-import-planskills/markdown-import-plan/SKILL.md

Import a plan markdown file into .llm/todo.md as self-contained implementation tasks.

markdown-plan-tasksskills/markdown-plan-tasks/SKILL.md

Convert a planning discussion into self-contained tasks in .llm/todo.md.

markdown-sweep-todosskills/markdown-sweep-todos/SKILL.md

Find TODO comments in the codebase and add them to .llm/todo.md as tasks.

tasksskills/tasks/SKILL.md

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

plugins/markdown-tasks/.codex-plugin/plugin.json
{
  "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/"
}
plugins/markdown-tasks/.claude-plugin/plugin.json
{
  "$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"
  ]
}

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)