Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

task-management任务管理

Agent Skill

task-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

388

周安装

16

GitHub Stars

3,636

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:task-management(任务管理)
来源仓库:https://github.com/darrenhinde/openagentscontrol
仓库路径:skills/task-management
安装命令:
npx skills add https://github.com/darrenhinde/openagentscontrol --skill task-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/darrenhinde/openagentscontrol --skill task-management

简介

task-management 用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Task Management Skill

Purpose: Track, manage, and validate feature implementations with atomic task breakdowns, dependency resolution, and progress monitoring.

What I Do

I provide a command-line interface for managing task breakdowns created by the TaskManager subagent. I help you:

  • Track progress - See status of all features and their subtasks
  • Find next tasks - Show eligible tasks (dependencies satisfied)
  • Identify blocked tasks - See what's blocked and why
  • Manage completion - Mark subtasks as complete with summaries
  • Validate integrity - Check JSON files and dependency trees

How to Use Me

Quick Start

# Show all task statuses
bash .opencode/skills/task-management/router.sh status

# Show next eligible tasks
bash .opencode/skills/task-management/router.sh next

# Show blocked tasks
bash .opencode/skills/task-management/router.sh blocked

# Mark a task complete
bash .opencode/skills/task-management/router.sh complete <feature> <seq> "summary"

# Validate all tasks
bash .opencode/skills/task-management/router.sh validate

Command Reference

CommandDescription
status [feature]Show task status summary for all features or specific one
next [feature]Show next eligible tasks (dependencies satisfied)
parallel [feature]Show parallelizable tasks ready to run
deps <feature> <seq>Show dependency tree for a specific subtask
blocked [feature]Show blocked tasks and why
complete <feature> <seq> "summary"Mark subtask complete with summary
validate [feature]Validate JSON files and dependencies
helpShow help message

Examples

Check Overall Progress

$ bash .opencode/skills/task-management/router.sh status

[my-feature] My Feature Implementation
  Status: active | Progress: 45% (5/11)
  Pending: 3 | In Progress: 2 | Completed: 5 | Blocked: 1

Find What's Next

$ bash .opencode/skills/task-management/router.sh next

=== Ready Tasks (deps satisfied) ===

[my-feature]
  06 - Implement API endpoint [sequential]
  08 - Write unit tests [parallel]

Mark Complete

$ bash .opencode/skills/task-management/router.sh complete my-feature 05 "Implemented authentication module"

✓ Marked my-feature/05 as completed
  Summary: Implemented authentication module
  Progress: 6/11

Check Dependencies

$ bash .opencode/skills/task-management/router.sh deps my-feature 07

=== Dependency Tree: my-feature/07 ===

07 - Write integration tests [pending]
  ├── ✓ 05 - Implement authentication module [completed]
  └── ○ 06 - Implement API endpoint [in_progress]

Validate Everything

$ bash .opencode/skills/task-management/router.sh validate

=== Validation Results ===

[my-feature]
  ✓ All checks passed

Architecture

.opencode/skills/task-management/
├── SKILL.md                          # This file
├── router.sh                         # CLI router (entry point)
└── scripts/
    └── task-cli.ts                   # Task management CLI implementation

Task File Structure

Tasks are stored in .tmp/tasks/ at the project root:

.tmp/tasks/
├── {feature-slug}/
│   ├── task.json                     # Feature-level metadata
│   ├── subtask_01.json               # Subtask definitions
│   ├── subtask_02.json
│   └── ...
└── completed/
    └── {feature-slug}/               # Completed tasks

task.json Schema

{
  "id": "my-feature",
  "name": "My Feature",
  "status": "active",
  "objective": "Implement X",
  "context_files": ["docs/spec.md"],
  "reference_files": ["src/existing.ts"],
  "exit_criteria": ["Tests pass", "Code reviewed"],
  "subtask_count": 5,
  "completed_count": 2,
  "created_at": "2026-01-11T10:00:00Z",
  "completed_at": null
}

subtask_##.json Schema

{
  "id": "my-feature-05",
  "seq": "05",
  "title": "Implement authentication",
  "status": "pending",
  "depends_on": ["03", "04"],
  "parallel": false,
  "suggested_agent": "coder-agent",
  "context_files": ["docs/auth.md"],
  "reference_files": ["src/auth-old.ts"],
  "acceptance_criteria": ["Login works", "JWT tokens valid"],
  "deliverables": ["auth.ts", "auth.test.ts"],
  "started_at": null,
  "completed_at": null,
  "completion_summary": null
}

Integration with TaskManager

The TaskManager subagent creates task files using this format. When you delegate to TaskManager:

task(
  subagent_type="TaskManager",
  description="Implement feature X",
  prompt="Break down this feature into atomic subtasks..."
)

TaskManager creates:

  1. .tmp/tasks/{feature}/task.json - Feature metadata
  2. .tmp/tasks/{feature}/subtask_XX.json - Individual subtasks

You can then use this skill to track and manage progress.


Key Concepts

1. Dependency Resolution

Subtasks can depend on other subtasks. A task is "ready" only when all its dependencies are complete.

2. Parallel Execution

Set parallel: true to indicate a subtask can run alongside other parallel tasks with satisfied dependencies.

3. Status Tracking

  • pending - Not started, waiting for dependencies
  • in_progress - Currently being worked on
  • completed - Finished with summary
  • blocked - Explicitly blocked (not waiting for deps)

4. Exit Criteria

Each feature has exit_criteria that must be met before marking the feature complete.

5. Validation Rules

The validate command performs comprehensive checks on task files:

Task-Level Validation:

  • ✅ task.json file exists for the feature
  • ✅ Task ID matches feature slug
  • ✅ Subtask count in task.json matches actual subtask files
  • ✅ All required fields are present

Subtask-Level Validation:

  • ✅ All subtask IDs start with feature name (e.g., "my-feature-01")
  • ✅ Sequence numbers are unique and properly formatted (01, 02, etc.)
  • ✅ All dependencies reference existing subtasks
  • ✅ No circular dependencies exist
  • ✅ Each subtask has acceptance criteria defined
  • ✅ Each subtask has deliverables specified
  • ✅ Status values are valid (pending, in_progress, completed, blocked)

Dependency Validation:

  • ✅ All depends_on references point to existing subtasks
  • ✅ No task depends on itself
  • ✅ No circular dependency chains
  • ✅ Dependency graph is acyclic

Run validate regularly to catch issues early:

bash .opencode/skills/task-management/router.sh validate my-feature

6. Context and Reference Files

  • context_files - Standards, conventions, and guidelines to follow
  • reference_files - Existing project files to look at or build upon

Workflow Integration

With TaskManager Subagent

  1. TaskManager creates tasks → Generates .tmp/tasks/{feature}/ structure
  2. You use this skill to track → Monitor progress with status, next, blocked
  3. You mark tasks complete → Use complete command with summaries
  4. Skill validates integrity → Use validate to check consistency

With Other Subagents

Working agents (CoderAgent, TestEngineer, etc.) execute subtasks and report completion. Use this skill to:

  • Find next available tasks with next
  • Check what's blocking progress with blocked
  • Validate task definitions with validate

Common Workflows

Starting a New Feature

# 1. TaskManager creates the task structure
task(subagent_type="TaskManager", description="Implement feature X", ...)

# 2. Check what's ready
bash .opencode/skills/task-management/router.sh next

# 3. Delegate first task to working agent
task(subagent_type="CoderAgent", description="Implement subtask 01", ...)

Tracking Progress

# Check overall status
bash .opencode/skills/task-management/router.sh status my-feature

# See what's next
bash .opencode/skills/task-management/router.sh next my-feature

# Check what's blocked
bash .opencode/skills/task-management/router.sh blocked my-feature

Completing Tasks

# After working agent finishes
bash .opencode/skills/task-management/router.sh complete my-feature 05 "Implemented auth module with JWT support"

# Check progress
bash .opencode/skills/task-management/router.sh status my-feature

# Find next task
bash .opencode/skills/task-management/router.sh next my-feature

Validating Everything

# Validate all tasks
bash .opencode/skills/task-management/router.sh validate

# Validate specific feature
bash .opencode/skills/task-management/router.sh validate my-feature

Tips & Best Practices

1. Use Meaningful Summaries

When marking tasks complete, provide clear summaries:

# Good
complete my-feature 05 "Implemented JWT authentication with refresh tokens and error handling"

# Avoid
complete my-feature 05 "Done"

2. Check Dependencies Before Starting

# See what a task depends on
bash .opencode/skills/task-management/router.sh deps my-feature 07

3. Identify Parallelizable Work

# Find tasks that can run in parallel
bash .opencode/skills/task-management/router.sh parallel my-feature

4. Regular Validation

# Validate regularly to catch issues early
bash .opencode/skills/task-management/router.sh validate

Troubleshooting

"task-cli.ts not found"

Make sure you're running from the project root or the router.sh can find it.

"No tasks found"

Run status to see if any tasks have been created yet. Use TaskManager to create tasks first.

"Dependency not satisfied"

Check the dependency tree with deps to see what's blocking the task.

"Validation failed"

Run validate to see specific issues, then check the JSON files in .tmp/tasks/.


File Locations

  • Skill: .opencode/skills/task-management/
  • Router: .opencode/skills/task-management/router.sh
  • CLI: .opencode/skills/task-management/scripts/task-cli.ts
  • Tasks: .tmp/tasks/ (created by TaskManager)
  • Documentation: .opencode/skills/task-management/SKILL.md (this file)

Task Management Skill - Track, manage, and validate your feature implementations!

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.56%
按下载量换算41

Claude

30.87%
按下载量换算39

Cursor

17.38%
按下载量换算22

Gemini CLI

9.66%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/darrenhinde/openagentscontrol --skill task-management 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills