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

feature-tasks-work功能任务工作

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/olafurns7/skills --skill feature-tasks-work

简介

feature-tasks-work 作为编排器执行计划任务,具备确定性委托和状态跟踪能力。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,适合按计划推进功能开发工作时使用。
  • 必须通过 bundled CLI 操作,使用 taskctl 管理队列和生命周期。
  • 安装前需确认权限范围和维护状态,注意可能触发命令执行和状态文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Feature Tasks Work

Execute planned work as an orchestrator with deterministic delegation and status tracking.

Mandatory interface

Use the bundled CLI for orchestration state and prompt assembly.

  • Do not hand-edit planning/<dd-mm-yyyy-title-slug>/task.status.json during normal execution.
  • Use taskctl commands for queue reads, task lifecycle transitions, and delegation prompts.
  • Hand edits are recovery-only when the status file is corrupted.

Set a command alias before orchestration:

TASKCTL="<path-to-skill>/scripts/taskctl"

Always execute the CLI via "$TASKCTL".... Do not assume taskctl is available on PATH.

Terminology note:

  • In this skill, collaborator, subagent, and teammate mean a worker identity (agent/model/session id), not a filesystem path.

Runtime behavior:

  • scripts/taskctl runs node taskctl.mjs when Node.js is available.
  • Otherwise it runs bun taskctl.mjs when Bun is available.
  • If neither is available, it exits with an install message.

Protocol

  1. Start orchestration with minimal prior context. If your agent supports session reset, use it.
  2. Resolve title-slug (for example add-new-payment-method) under planning/; new folders use dd-mm-yyyy-<slug> while existing non-prefixed folders are reused.
  3. Run "$TASKCTL" init <title-slug>.

- Loads or creates task.status.json. - Resets stale in_progress entries to todo. - Re-evaluates blocked tasks whose blockers are now done.

  1. Discover dispatchable work with "$TASKCTL" ready <title-slug> --json.
  2. For each task, prefer atomic dispatch:

- "$TASKCTL" dispatch <title-slug> [task-id] --owner <orchestrator-or-worker-id> --json

  1. If dispatch is not used, do split mode:

- Build delegation payload/prompt with "$TASKCTL" prompt <title-slug> <task-id> --json. - Mark dispatched with "$TASKCTL" start <title-slug> <task-id> --owner <orchestrator-or-worker-id>.

  1. Delegate using the generated prompt.
  2. After each attempt, persist result with:

- "$TASKCTL" complete <title-slug> <task-id> --result <done|blocked|failed> --summary "..." --files... --tests... --blockers... --next...

  1. Retry policy:

- Protocol failure (missing response fields): retry once with a format reminder. - Transient failure (timeout/rate limit): retry once after a pause. - Task failure (result=failed): mark blocked and continue. - Persistent failure (second attempt fails): mark blocked and continue.

  1. Repeat dispatch -> complete until no todo tasks remain.
  2. Emit final summary with done/blocked counts and unresolved blockers.

CLI commands

The script supports these commands:

  • init [title-slug]
  • ready [title-slug]
  • prompt [title-slug] [task-id]
  • dispatch [title-slug] [task-id] --owner <owner-name>
  • start [title-slug] <task-id> --owner <owner-name>
  • complete [title-slug] <task-id> --result <done|blocked|failed> --summary <text> [--files a,b] [--tests a,b] [--blockers a,b] [--next a,b]
  • status [title-slug]

Notes:

  • If title-slug is omitted, it is derived from the current branch and resolved to dd-mm-yyyy-<slug> for new folders (existing non-prefixed folders are reused).
  • prompt returns both structured payload and formatted prompt when --json is used.
  • For prompt or dispatch, if title-slug is omitted and task ID is explicit, pass --task <task-id>.

Delegation payload contract (outbound)

Use the payload from taskctl prompt. Required fields:

  • task_id
  • title
  • acceptance
  • deliverables
  • project
  • dependency_results (for each done blocker: {task_id, result_summary, files_changed})
  • response_format list

Optional fields:

  • context
  • spec_excerpt

spec_excerpt rules

taskctl prompt follows these rules:

  • If SPEC.md exists and is under 200 lines, include all of it.
  • If SPEC.md is over 200 lines, include only sections referenced by context entries containing SPEC.md#<section>.
  • If SPEC.md is missing, omit spec_excerpt.

Delegation response contract (required)

Every delegated task must return:

  • task_id
  • result (done|blocked|failed)
  • result_summary
  • files_changed (array)
  • tests_run (array)
  • blockers (array)
  • next_unblocked_tasks (array of task IDs)

Treat missing required fields as protocol failure and apply retry policy.

Context management

  • Keep per completed task: task_id, one-line result_summary, files_changed.
  • Discard after completion: full delegation prompt, full response body, acceptance, deliverables, context hints.
  • Always retain: dispatch queue and task.status.json summary counts.
  • When context pressure is high (>60% tasks done): summarize completed tasks into one block and discard individual details.
  • Never discard blocked task details and blockers.

task.status.json schema

Default path: planning/<dd-mm-yyyy-title-slug>/task.status.json.

{
  "project": "my-project",
  "schema_version": 2,
  "updated_at": "2026-02-11T12:00:00.000Z",
  "summary": {
    "todo": 2,
    "in_progress": 1,
    "done": 3,
    "blocked": 1
  },
  "tasks": {
    "TASK-001": {
      "state": "done",
      "owner": "worker-backend-1",
      "attempts": 1,
      "started_at": "2026-02-11T11:40:00.000Z",
      "finished_at": "2026-02-11T11:55:00.000Z",
      "blockers": [],
      "files_changed": ["src/api/orders.ts"],
      "tests_run": ["bun test -- orders"],
      "result_summary": "Implemented order endpoint and tests.",
      "next_unblocked_tasks": ["TASK-002"]
    }
  }
}

State semantics

  • todo: not started.
  • in_progress: delegated and awaiting result.
  • done: completed and accepted.
  • blocked: cannot proceed after retry policy or hard dependency blockage.

Only dispatch tasks in todo state that are currently unblocked.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.42%
按下载量换算30

Claude

28.73%
按下载量换算23

Cursor

17.8%
按下载量换算14

Gemini CLI

9.94%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills