Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计异常

work-tracking工作跟踪

Agent Skill

work-tracking 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mohammed-io/agentic-ai-tools --skill work-tracking

简介

work-tracking 强制结构化工作流程,确保每个任务都有对应的工作文件支撑。

  • 适用于复杂项目拆解、跨模块协作与代码产出质量管控。
  • 通过 agent-work 目录管理任务上下文、待办事项和实施步骤。
  • 安装命令为 npx skills add 从指定 GitHub 仓库添加,需初始化代理工作目录。
  • 强调“没有工作文件就没有代码”,所有变更必须经过验证才能进入下一阶段。

SKILL.md

Step 1: Initialize Work Directory (If Needed)

Before checking for active work, ensure agent-work directory exists:

if [ ! -d "agent-work" ]; then
  echo "Initializing work directory..."
  cp -r .claude/skills/work-tracking/scaffold agent-work
  echo "Work directory initialized from scaffold"
fi

What this does:

  • Checks if agent-work/ directory exists
  • If not, copies the scaffold structure from .claude/skills/work-tracking/scaffold/
  • Creates the necessary bin/ and completed/ subdirectories
  • Sets up the work tracking system ready for use

Step 2: Check for Active Work

ALWAYS do this first before creating new work.

ls agent-work/*.md 2>/dev/null

If there's an active work file:

  • Show it to the user
  • Ask: "There's an active work file: [filename]. Would you like to:

1. Continue with this work 2. Complete it first 3. Create new work file"

  • Wait for user response before proceeding

If no active work file, proceed to Step 3.


Step 3: Create Work File (MANDATORY)

You MUST run this script BEFORE writing ANY code.

./agent-work/bin/work-create.sh <task_name>

Task Naming Rules

Use descriptive, snake_case names:

  • improve_pdf_generation
  • add_watermark_support
  • fix_date_parsing_bug
  • implement_resume_validator
  • new_feature
  • stuff
  • update

What the script does:

  • Generates UTC timestamp automatically
  • Creates agent-work/{timestamp}_{task_name}.md
  • Populates it with the template

Example output:

Created work file: agent-work/20251230164521_improve_pdf_generation.md

Step 4: Populate Work File

Immediately after creation, populate the work file with:

  1. Context - What problem is being solved, why it's needed
  2. Value Proposition - What the feature achieves, business value
  3. Alternatives Considered - Other approaches considered with trade-offs
  4. Todos - Specific, actionable tasks with [] checkboxes
  5. Acceptance Criteria - How to verify the work is complete
  6. Notes - Any additional information

See EXAMPLES.md for complete, real-world examples of properly filled work files.


Step 5: Implement Work (Update Todos Progressively)

⚠️ CRITICAL: Update the work file after EACH todo, not after all todos.

Wrong Approach (DO NOT DO THIS):

1. Complete all 5 todos
2. Update work file once with all 5 checked

Correct Approach (DO THIS):

1. Complete Todo 1
2. Update work file: [ ] Task 1 → [x] Task 1
3. Complete Todo 2
4. Update work file: [ ] Task 2 → [x] Task 2
5. And so on...

Why This Matters:

  • If AI crashes, progress isn't lost
  • Maintains accurate progress tracking
  • Allows resumption from any point
  • User can see real-time progress

How to Update:

Use the Edit tool to change [] to [x] for completed todos:

Edit: agent-work/{timestamp}_{task_name}.md
Old: - [ ] Update PDF generator to verify text layer
New: - [x] Update PDF generator to verify text layer

Step 6: Complete Work

When ALL todos are checked as [x], complete the work:

./agent-work/bin/work-complete.sh <name>

Examples:

./agent-work/bin/work-complete.sh improve_pdf_generation
./agent-work/bin/work-complete.sh 20251230164521_improve_pdf_generation

What the script does:

  • Updates status to completed ({completion_timestamp})
  • Moves file to agent-work/completed/ directory

Example output:

Completed and moved: agent-work/completed/20251230164521_improve_pdf_generation.md

Work File Locations

  • Active work: agent-work/{timestamp}_{task_name}.md
  • Completed work: agent-work/completed/{timestamp}_{task_name}.md

Enforcement Checklist

First time in project:

  • Initialized agent-work directory from scaffold

Before writing ANY code, verify:

  • Checked for active work files
  • Created work file using work-create.sh
  • Populated Context, Value Proposition, Alternatives, Todos, Acceptance Criteria
  • Work file exists in agent-work/ directory

While implementing:

  • Update work file after EACH todo completion
  • Use Edit tool to change [] to [x]
  • Never batch todo updates

After completing all todos:

  • Verify ALL todos are marked [x]
  • Run work-complete.sh to move file to completed/

Common Mistakes to Avoid

Starting to code before creating work file ✅ Always create work file first

Updating all todos at once after completing all work ✅ Update each todo immediately after completion

Not checking for active work files ✅ Always check first: ls agent-work/*.md

Using vague task names like "update" or "fix" ✅ Use descriptive names like "fix_date_parsing_bug"

Forgetting to complete work file when done ✅ Run work-complete.sh to move to completed/


Summary

MANDATORY SEQUENCE:

  1. First time only: Initialize agent-work directory from scaffold (Step 1)
  2. Check for active work: ls agent-work/*.md (Step 2)
  3. Create work file: ./agent-work/bin/work-create.sh <task_name> (Step 3)
  4. Populate work file with context, todos, etc. (Step 4)
  5. Implement EACH todo + update work file immediately after EACH (Step 5)
  6. Complete work: ./agent-work/bin/work-complete.sh <name> (Step 6)

NO CODE WITHOUT A WORK FILE. NO EXCEPTIONS.

For complete examples of work files, see EXAMPLES.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.77%
按下载量换算30

Claude

28.41%
按下载量换算22

Cursor

16.72%
按下载量换算13

Gemini CLI

9.26%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills