From taskmd-lite
Retrieves full details of a task by ID or name from .md files in a tasks directory. Finds matches via Glob, reads with Read tool, shows frontmatter and markdown body. Use to view tasks.
npx claudepluginhub driangle/taskmd --plugin taskmd-liteThis skill is limited to using the following tools:
Retrieve full details of a specific task — no CLI required.
Retrieves task details by ID or name using taskmd CLI via Bash, including ID, title, status, priority, tags, and description. Lists tasks if not found.
Retrieves lightweight frontmatter metadata (status, priority, effort, type, tags, owner, dependencies) from task .md files by ID or keyword using Glob and Read. Use for quick status checks.
Defines conventions for TASKS.md files: structure with optional sections, status symbols ([ ] todo, [/] ongoing, [x] done, [-] backlog), task descriptions, and testable acceptance criteria. Use for creating, editing, updating tasks or tracking progress.
Share bugs, ideas, or general feedback.
Retrieve full details of a specific task — no CLI required.
The user's query is in $ARGUMENTS (a task ID like 077 or a task name/keyword).
Find the task directory:
.taskmd.yaml if it exists to check for a custom dir fieldtasks if not configuredFind the task file:
Glob for <task-dir>/**/*$ARGUMENTS*.md to find files matching the ID or keywordid matching $ARGUMENTSGlob for <task-dir>/**/*.md and read frontmatter of each to find a matching idRead the full task file using the Read tool
Present the task including:
See SPEC_REFERENCE.md (in the plugin root) for valid field values and frontmatter schema.