task-management

Manage feature subtasks, dependencies, and JSON validation via CLI.

1|Updated Jan 20, 2026
One-click install
npx skills add https://github.com/ScorpionConMate/crm-influ-webview --skill task-management-scorpionconmate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: task-management
Source: https://github.com/ScorpionConMate/crm-influ-webview/tree/main/.opencode/skill/task-management
Command: npx skills add https://github.com/ScorpionConMate/crm-influ-webview --skill task-management-scorpionconmate

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides a command-line interface to manage feature subtasks, their status, dependencies, and validation, reducing manual tracking work.

Core Features & Use Cases

  • Track progress across features and subtasks, giving clear visibility into status and completion.
  • Identify next eligible tasks based on dependency satisfaction and show blockers when present.
  • Validate data integrity by checking task JSON structures and dependency trees.

Quick Start

Run the task management CLI to inspect status, view next eligible tasks, see blocked subtasks, and complete subtasks with a summary:

  • npx ts-node .opencode/skill/task-management/scripts/task-cli.ts status
  • npx ts-node .opencode/skill/task-management/scripts/task-cli.ts next
  • npx ts-node .opencode/skill/task-management/scripts/task-cli.ts blocked
  • npx ts-node .opencode/skill/task-management/scripts/task-cli.ts complete <feature> <seq> "<summary>"

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 subtasks and their dependencies in a CLI?

You can track feature subtasks and dependencies in a CLI by running commands to view status, compute next eligible tasks, surface blockers, and complete subtasks with summaries. This automates dependency resolution and status tracking.

How does dependency resolution work for software project subtasks?

Dependency resolution identifies next eligible tasks by checking if dependencies are satisfied, and surfaces blockers when present. This ensures subtasks are only marked ready when prerequisite work is complete.

How do I validate task JSON structures for feature subtasks?

Validating task JSON structures involves checking data integrity by verifying dependency trees and JSON formats against expected schemas. This prevents invalid task data from disrupting software project tracking.

Can I use a CLI to complete subtasks and record summaries automatically?

Yes, you can complete subtasks and record summaries automatically via CLI by executing the complete command with the feature name, sequence number, and summary text. This updates task status and stores completion data.

What is the best way to identify blocked subtasks across software features?

The best way to identify blocked subtasks across software features is to run a CLI command that surfaces items with unsatisfied dependencies. This provides clear visibility into what is preventing progress.

Do I need TypeScript to run task management scripts for feature tracking?

Yes, you need TypeScript to run task management scripts for feature tracking, as commands are executed using ts-node to process the CLI scripts. This requires a Node.js environment with TypeScript installed.