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

eliteforge-task-progress-trackerEliteForge 任务进度跟踪器

Agent Skill

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

总安装

588

周安装

25

GitHub Stars

公开资料未说明

下载量

206
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cloudsen/eliteforge-skills --skill eliteforge-task-progress-tracker

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,建议确认权限和维护状态后再使用。
  • 使用前需检查是否会触发联网、命令执行或文件读写操作,确保符合项目安全规范。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Task Progress Tracker

Goal

For each concrete requirement, keep one markdown task file under docs/tasks/ and update it as work progresses. The task file is also the interruption recovery anchor: after every meaningful change, create a git commit and write the commit id into the related step note.

Use This Skill When

  • The user wants the agent to make a plan before coding.
  • The user wants TODOs, current status, or progress persisted in the repo.
  • The user asks to keep updating task state while the agent is working.
  • The user wants work to be resumable after interruption.

File Rules

  • Directory: docs/tasks/
  • File name: <task-description>.md
  • task-description should be a short kebab-case summary of the requirement.
  • Prefer ASCII for task-description; if the request is in Chinese, convert it to a short English slug.
  • Do not append fixed suffixes such as -status-process, -task, or -todo unless the user explicitly asks for them.
  • If a matching task file already exists, update it instead of creating a duplicate.
  • Never overwrite an unrelated task file.
  • The task file must stay consistent with the real git checkpoint state of the work.

Allowed Status Values

  • notrun
  • running
  • finished
  • cancel

Git Checkpoint Rules

  • Treat each meaningful change as a checkpoint. Before moving to the next change, create a git commit.
  • Each step note must record the latest related commit id once a commit exists, using a short format such as commit: abc1234.
  • If one step spans multiple commits, append them in order, for example commits: abc1234, def5678.
  • Do not leave multiple unrelated edits uncommitted between task file updates.
  • A task-file-only bookkeeping update that merely writes back an already-created commit id does not create a new step checkpoint by itself. Carry it in the next work commit, or in one final bookkeeping commit when the task stops.
  • If the workspace is not a git repo, or a commit cannot be created, record the blocker in the current step note and update log, then tell the user before continuing more unrecoverable changes.
  • When resuming interrupted work, read the latest matching task file, locate the latest recorded commit id in the relevant step note, and use that commit as the recovery baseline before making new changes.

Workflow

  1. Before substantial work, create or refresh the task file with:

- requirement summary - completion conditions - step list - initial status: notrun - initial process: 0% - step notes prepared to carry commit ids

  1. When actual execution starts, immediately update:

- status: running - process: 5% - current_step to the first active step - verify the workspace can create git commits for checkpoint recovery

  1. After each meaningful milestone, update the same file:

- acceptance criteria checkboxes and any existing task checkboxes - step statuses - current_step - process - a short progress log entry - the related commit id after the commit is created, with the write-back carried by the next work commit or a final bookkeeping commit

  1. Before the final reply, update the file one last time:

- successful completion: status: finished, process: 100%, all meaningful changes committed, all completed acceptance criteria checked - append the final Mermaid diagram sections at the end of the file - user stopped or abandoned task: status: cancel

  1. If the task is interrupted, resume by:

- reading the latest matching task file under docs/tasks/ - checking current_step, the latest step note, and the latest update log entry - continuing from the most recent recorded commit id instead of guessing state

Progress Rules

  • process must use percent format like 5%, 35%, 100%.
  • Keep progress monotonic; do not decrease it unless the user explicitly changes scope.
  • Prefer increments that reflect real milestones, not fake precision.
  • Do not set 100% until implementation and validation are actually complete.

Diagram Rules

  • When the task is actually finished, append two sections at the very end of the task file: ## Sequence Diagram and ## Module Relationship Diagram.
  • Both sections must use fenced Mermaid blocks in the form:
## Sequence Diagram

sequenceDiagram participant A as Module A participant B as Module B A->>B: request B-->>A: response


## Module Relationship Diagram

flowchart LR A[Module A] --> B[Module B]

  • The sequence diagram should explain the real end-to-end interaction of the key modules touched by the task, not a generic placeholder flow.
  • The module relationship diagram should show the key modules, dependencies, or data flow touched by the task. Prefer flowchart LR unless another Mermaid graph form is clearly better.
  • If the task touches only a few modules, still draw a minimal but truthful diagram for those modules.
  • Do not add these diagram sections before the task reaches a real finished state.

Required Template

Use this structure unless the repo already has a stronger convention:

# Task: <title>

## Requirement
<short requirement summary>

## Acceptance Criteria
- [ ] <condition 1>
- [ ] <condition 2>

## Overall Status
- status: notrun
- process: 0%
- current_step: not started

## Steps
| step | description | status | note |
| --- | --- | --- | --- |
| 1 | <step 1> | notrun | commit: pending |
| 2 | <step 2> | notrun | commit: pending |

## Update Log
| time | status | process | update |
| --- | --- | --- | --- |
| <timestamp> | notrun | 0% | task initialized |

Update Rules

  • The step list is the TODO list. Do not keep a second disconnected TODO section elsewhere.
  • Treat markdown checkboxes as live state, not static text. When a criterion or TODO is actually completed, change [] to [x] in the same update cycle.
  • If work is only partially complete or not yet validated, keep the checkbox unchecked and explain the remaining gap in the step note or update log.
  • If a previously completed item becomes invalid because of scope change or regression, revert it to [] and record why in the update log.
  • Before replying with success, make sure checkbox state matches the real implementation and validation state. Do not leave completed items unchecked.
  • Before replying with success, make sure the Mermaid diagram sections are appended at the end of the file and match the real implementation.
  • current_step should always match one row in ## Steps, or completed.
  • When a step reaches finished, its note should contain at least one commit id unless the user explicitly stopped before a checkpoint.
  • If more commits are added to an existing step, update that same step note and the update log instead of leaving stale commit information.
  • A bookkeeping-only task file edit that records an existing commit id does not require a new step entry; just make sure it is persisted in the next available commit.
  • When scope changes, first update ## Requirement, ## Acceptance Criteria, and ## Steps, then continue execution.
  • If blocked, keep status: running and record the blocker in the step note and update log.
  • For interruption recovery, make sure the latest step note and update log entry tell the next agent what to continue and which commit to continue from.
  • Keep entries concise and factual.

Response Behavior

  • Mention the task file path in the working update or final response when helpful.
  • If the user asks to continue an existing task, search docs/tasks/ first and resume from the latest matching file and its latest recorded commit id.
  • If work happens outside a git repo or a commit could not be created, state that constraint explicitly in the response.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.21%
按下载量换算68

Claude

29.41%
按下载量换算61

Cursor

19.38%
按下载量换算40

Gemini CLI

10.79%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills