From markdown-tasks
Convert a planning discussion into self-contained tasks in .llm/todo.md.
How this skill is triggered — by the user, by Claude, or both
Slash command
/markdown-tasks:markdown-plan-tasksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use at the end of a planning discussion when the implementation has not started.
Use at the end of a planning discussion when the implementation has not started.
Use the markdown-tasks skill for task format and script path rules.
Create tasks that are fully self-contained. Each task should include:
Compose every task before writing. Add the complete batch in one shell command by chaining one call per task with &&:
python <plugin-root>/scripts/task_add.py .llm/todo.md "Task description
Context line 1
Context line 2" && \
python <plugin-root>/scripts/task_add.py .llm/todo.md "Another task
Standalone context"
Never add a multi-task batch across separate shell commands. Keeping the writes together reduces the chance that concurrent sessions interleave their tasks.
Report how many tasks were created.
npx claudepluginhub motlin/claude-code-plugins --plugin markdown-tasksGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.