task-management

Manage feature subtasks, track status, and validate task integrity via JSON files.

Updated Feb 9, 2026
One-click install
npx skills add https://github.com/EduCosta85/mealsMe --skill task-management-educosta85
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: task-management
Source: https://github.com/EduCosta85/mealsMe/tree/main/.opencode/skill/task-management
Command: npx skills add https://github.com/EduCosta85/mealsMe --skill task-management-educosta85

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the management of complex feature development by breaking them down into atomic subtasks, tracking their status, and managing their dependencies.

Core Features & Use Cases

  • Task Tracking: Monitor the progress of individual subtasks and overall feature completion.
  • Dependency Management: Visualize and enforce task dependencies to ensure logical execution order.
  • Use Case: A development team can use this Skill to break down a new feature into dozens of small, manageable subtasks, track which ones are ready to be worked on, and ensure that prerequisite tasks are completed first.

Quick Start

Use the task-management skill to see the status of all tasks.

Frequently Asked Questions about task-management

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

FAQPage Schema
How do I track feature subtask status and dependencies in a CLI workflow?

You can track feature subtask status and dependencies using a command-line interface that monitors progress and validates task integrity through JSON file checks. It operates on task definitions stored in a local directory and identifies next eligible tasks based on satisfied dependencies.

What is the best way to manage development workflow subtasks with dependency validation?

The best way to manage development workflow subtasks is by breaking features into atomic units and enforcing logical execution order. This approach validates task dependencies through JSON file checks and identifies which tasks are eligible to be worked on next.

How do I identify which feature subtasks are ready to be worked on next?

To identify which feature subtasks are ready next, the CLI checks task definitions stored as JSON files and matches their status against satisfied dependencies. This ensures prerequisite tasks are completed before subsequent ones become eligible.

Does this task management CLI require any external dependencies to run?

No external dependencies are required to run this task management CLI. It operates via a bash router script that invokes a TypeScript CLI, storing and validating task definitions locally as JSON files in a temporary directory.

Can I use a bash router script to manage feature subtasks with TypeScript?

Yes, you can manage feature subtasks using a bash router script that invokes a TypeScript CLI. This setup tracks subtask progress, validates JSON file integrity, and enforces dependency ordering without requiring external packages.

Why does dependency management matter when tracking feature subtask status?

Dependency management matters for tracking feature subtask status because it enforces logical execution order. By validating prerequisite tasks through JSON file checks, the CLI ensures developers only work on eligible subtasks whose dependencies are fully satisfied.