add-task

Creates Markdown task files with YAML frontmatter and sequential IDs for taskmd projects.

62|13|Updated Feb 8, 2026
One-click install
npx skills add https://github.com/driangle/taskmd --skill add-task-driangle
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-task
Source: https://github.com/driangle/taskmd/tree/main/claude-code-plugin/skills/add-task
Command: npx skills add https://github.com/driangle/taskmd --skill add-task-driangle

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the creation of new task files, ensuring they adhere to the taskmd project's structured format and naming conventions.

Core Features & Use Cases

  • Task File Generation: Creates new .md task files with proper YAML frontmatter and Markdown body.
  • ID Management: Automatically determines the next sequential task ID.
  • Domain-based Organization: Places new tasks in appropriate subdirectories (cli/, web/, or root tasks/).
  • Use Case: When you need to add a new feature request or bug report to your project, this Skill will create the necessary file structure and content for you.

Quick Start

Use the add-task skill to create a new task with the title "Implement user authentication" and objective "Set up secure login for users".

Frequently Asked Questions about add-task

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

FAQPage Schema
How do I create new task files in Markdown for project management?

To create new task files in Markdown, this tool generates structured `.md` files with YAML frontmatter and a Markdown body. It automatically determines the next sequential task ID and organizes files into domain-specific subdirectories like `cli/` or `web/` for your project.

What is the best way to automate task ID sequencing in Markdown?

Automating task ID sequencing in Markdown is handled by scanning existing files via globbing to discover the highest current ID. The tool then automatically calculates and assigns the next sequential ID to your newly generated task file.

Can I organize Markdown tasks into domain-specific subdirectories automatically?

Yes, you can organize Markdown tasks into domain-specific subdirectories automatically. The tool routes new task files into appropriate folders like `cli/`, `web/`, or the root `tasks/` directory based on the domain context you specify during task creation.

Do I need bash and globbing to generate task files with YAML frontmatter?

Yes, you need bash and globbing capabilities to generate task files with YAML frontmatter. The tool relies on bash for command execution and globbing for file discovery to correctly sequence IDs and write new files to the filesystem.

When should I use a structured Markdown format for task management?

You should use a structured Markdown format for task management when you need consistent task files with YAML frontmatter for metadata and a standardized body. This approach ensures feature requests and bug reports adhere to defined project conventions.