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

update-task-board更新任务板

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

1

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dudusoar/vrp-toolkit --skill update-task-board

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • update-task-board 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Task Board Manager

Manage TASK_BOARD.md by synchronizing it with actual project progress from various log files.

Core Responsibility

Manage TASK_BOARD.md ONLY - This skill:

  • ✅ Reads: MIGRATION_LOG.md, DEBUG_LOG.md, GIT_LOG.md, git status
  • ✅ Updates: TASK_BOARD.md
  • ❌ Does NOT modify: CLAUDE.md, MIGRATION_LOG.md, or other files

Clear separation:

  • update-task-board → Manages TASK_BOARD.md
  • update-migration-log → Manages MIGRATION_LOG.md only
  • CLAUDE.md → Entry point, rarely modified

When to Use

Use this skill when:

  • Completing tasks and need to update task board
  • Starting new tasks and want to track them
  • Syncing project status after work sessions
  • Reviewing overall project progress
  • Preparing status reports
  • Identifying task-log inconsistencies

Workflow

Step 1: Read All Logs

Read project documentation to understand current state:

Files to read:

  1. TASK_BOARD.md - Current task status
  2. MIGRATION_LOG.md - Migration progress
  3. DEBUG_LOG.md - Active/resolved issues
  4. GIT_LOG.md - Recent commits
  5. Git status - Uncommitted changes

Step 2: Analyze Progress

Compare documented tasks with actual progress:

Check for:

  • Completed tasks with log evidence
  • In-progress tasks that may be complete
  • New tasks mentioned in logs
  • Resolved blockers
  • Migration progress updates

Step 3: Update TASK_BOARD.md

Update sections based on analysis:

Sections:

  • Completed ✅ - Move finished tasks here
  • In Progress 🚧 - Current work
  • Next Steps 📋 - Upcoming priorities
  • Blockers 🚫 - Issues preventing progress

Step 4: Verify Consistency

Ensure logs and task board tell consistent story:

Cross-reference:

  • Migration entries match completed migration tasks
  • Resolved DEBUG_LOG issues match removed blockers
  • Recent commits relate to completed tasks
  • No contradictions

TASK_BOARD.md Structure

Task Status Sections

Completed:

### Completed ✅

**Phase 1: Minimal Migration**
- [x] Task description
- [x] Another completed task

**Phase 2: Refactoring**
- [x] Architecture refactored

In Progress:

### 🚧 In Progress

### Current Focus
- [ ] Task being worked on

### Details
- Subtask details
- Progress notes

Next Steps:

### 📋 Next Steps

### Phase 2 Completion
1. [ ] Task to do next
2. [ ] Another upcoming task

### Phase 3 Planning
1. [ ] Future work

Blockers:

### 🚫 Blockers

**Current:** Description of active blocker

**Resolved:**
- ~~Previous blocker~~ - Fixed YYYY-MM-DD

Log Integration

MIGRATION_LOG.md

Extract:

  • Recent migration entries
  • Files completed
  • Issues encountered

Actions:

  • Mark migration tasks complete
  • Add migration-related blockers
  • Update phase progress

DEBUG_LOG.md

Extract:

  • Active issues
  • Resolved issues
  • Issue severity

Actions:

  • Add significant issues to Blockers
  • Remove resolved blockers
  • Track debugging tasks

GIT_LOG.md

Extract:

  • Recent commits
  • Modified files
  • Commit patterns

Actions:

  • Identify completed work
  • Cross-reference with tasks
  • Add untracked completed work

Update Patterns

Task Completion

When log evidence shows task is done:

**Before (In Progress):**
- [ ] Implement unified Solver interface

**After (Completed):**
- [x] Implement unified Solver interface

Add to appropriate phase section in Completed.

New Task

When new task identified:

### 🚧 In Progress

### Current Focus
- [ ] Fix matplotlib import issues on Windows

### Details
- Identified from DEBUG_LOG.md
- Platform compatibility issue

Blocker Resolution

When blocker is fixed:

**Resolved:**
- ~~Dependency conflict numpy/pandas~~ - Fixed 2026-01-03

Move from "Current" to "Resolved" in Blockers section.

Integration with Other Skills

Works with:

  • update-migration-log - Reads MIGRATION_LOG.md for evidence
  • log-debug-issue - Reads DEBUG_LOG.md for blockers
  • git-log - Reads GIT_LOG.md for commits
  • build-session-context - Reads TASK_BOARD.md for status

Does NOT interfere with:

  • CLAUDE.md management (not this skill's job)
  • Migration logging (update-migration-log handles)
  • Debug logging (log-debug-issue handles)

Evidence-Based Updates

Principles:

  • Only mark complete with log evidence
  • Cite sources when updating
  • Be conservative - when uncertain, keep in-progress
  • Cross-reference multiple logs

Example:

Task: "Migrate instance.py"
Evidence: MIGRATION_LOG.md entry dated 2026-01-01
Action: Move to Completed ✅ with date reference

Usage Examples

Example 1: Migration Complete

Situation: MIGRATION_LOG.md shows "instance.py migration completed"

Actions:

  1. Find task in TASK_BOARD.md "In Progress"
  2. Move to "Completed" under appropriate phase
  3. Mark [x] as complete
  4. Update "Last Updated" date in TASK_BOARD.md
  5. Update progress metrics

Example 2: Bug Resolved

Situation: DEBUG_LOG.md shows issue marked "Resolved"

Actions:

  1. Find blocker in TASK_BOARD.md "Blockers" section
  2. Move to "Resolved" subsection
  3. Add resolution date
  4. Update "Last Updated"

Example 3: New Work Started

Situation: GIT_LOG.md shows commits for new feature

Actions:

  1. Check if task exists in TASK_BOARD.md
  2. If not, add to "In Progress" with details
  3. If complete, add to "Completed"
  4. Update "Last Updated"

File References

  • Manages: .claude/TASK_BOARD.md
  • Reads: .claude/MIGRATION_LOG.md, .claude/DEBUG_LOG.md, .claude/GIT_LOG.md
  • Does NOT modify: .claude/CLAUDE.md, .claude/MIGRATION_LOG.md

Maintenance Notes

Update frequency:

  • After completing tasks
  • After work sessions
  • Weekly for comprehensive review
  • At project milestones

Keep TASK_BOARD.md:

  • Up to date with logs
  • Consistent across sections
  • Clear and actionable
  • Evidence-based

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

30.03%
按下载量换算20

windsurf

20.46%
按下载量换算13

trae

19.21%
按下载量换算12

OpenCode

11.87%
按下载量换算8

Codex

8.31%
按下载量换算5

github-copilot

3.39%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills