list-task

Displays project task lists from markdown files grouped by status and priority.

1|Updated Jun 29, 2026
One-click install
npx skills add https://github.com/natthasath/natthasath-marketplace --skill list-task-natthasath
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: list-task
Source: https://github.com/natthasath/natthasath-marketplace/tree/main/plugins/projects/skills/list-task
Command: npx skills add https://github.com/natthasath/natthasath-marketplace --skill list-task-natthasath

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When managing a development project with tasks spread across multiple markdown files (current sprint, phase backlogs, feature requests), it is hard to get a quick consolidated view of what is in progress and what comes next. This Skill reads those task files and renders a single organized task list. ## Core Features & Use Cases - Consolidated Task View: Reads in-progress sprint tasks, current-phase backlog items, and unassigned feature requests into one display. - Priority Grouping: Organizes backlog tasks into High, Medium, and Low priority sections, skipping completed tasks and empty sections. - Keyword and Priority Filtering: Accepts an optional argument to filter tasks by keyword in the title or by priority level. - Use Case: You return to a project after a break and ask "what tasks are left?" — the Skill shows your current sprint work, the phase backlog sorted by priority, and pending feature requests, then suggests the next task to start. ## Quick Start Ask the AI to show all current tasks and backlog items, optionally filtered by a keyword or priority such as high.

Frequently Asked Questions about list-task

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I view all tasks in a project managed with markdown files?▼

Run the list-task skill to read the current sprint file, phase backlog files, and feature requests file, then display them grouped by status and priority. Completed tasks marked Done are automatically excluded from the output.

How to filter a task backlog by priority or keyword?▼

Pass an optional argument such as a priority level (high, medium, low) or a keyword. The skill matches it against task titles and priority fields, showing only the tasks that fit the filter criteria.

What task files does this skill read?▼

It reads context/tasks/in_progress/current_sprint.md for active work, context/tasks/backlog/phase_<N>_*.md files matching the current phase from .claude/config/current-phase.md, and context/tasks/backlog/feature_requests.md if it exists.

Why are some tasks missing from the task list output?▼

Tasks with Status marked as Done are skipped, and entire sections with no tasks are omitted. Feature requests only appear if they have not yet been assigned to a phase.

What are the limitations of markdown-based task tracking?▼

Markdown task files lack enforcement of structure, so inconsistent formatting can cause parsing gaps. There is also no built-in dependency tracking, notifications, or multi-user concurrency compared to dedicated project management tools.