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

skill-status-sync技能状态同步

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

437

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/benbrastmckie/nvim --skill skill-status-sync

简介

skill-status-sync 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 计数感知格式(请参阅 state-management.md 中的“Artifact Linking Format”)。
  • 计数感知逻辑:对 1 个工件使用内联格式,对 2 个以上工件使用多行列表。

SKILL.md

Status Sync Skill (Direct Execution)

Direct execution skill for atomic status synchronization across TODO.md and state.json. This skill executes inline without spawning a subagent, avoiding memory issues.

Context References

Reference (do not load eagerly):

  • Path: .claude/context/patterns/jq-escaping-workarounds.md - jq escaping patterns (Issue #1132)

Standalone Use Only

IMPORTANT: This skill is for STANDALONE USE ONLY.

Workflow skills (skill-researcher, skill-planner, skill-implementer, etc.) now handle their own preflight/postflight status updates inline. This eliminates the multi-skill halt boundary problem where Claude may pause between skill invocations.

Use this skill for:

  • Manual task status corrections
  • Standalone scripts that need to update task state
  • Recovery operations when workflow skills fail
  • Testing status update behavior in isolation

Do NOT use this skill in workflow commands (/research, /plan, /implement, /revise) - those commands now invoke a single skill that handles its own status updates.

Trigger Conditions

This skill activates when:

  • Manual status correction is needed
  • Artifacts need to be linked outside normal workflow
  • Status synchronization recovery is needed between TODO.md and state.json

API Operations

This skill exposes three primary operations:

OperationPurposeWhen to Use
preflight_updateSet in-progress statusGATE IN checkpoint
postflight_updateSet final status + link artifactsGATE OUT checkpoint
artifact_linkAdd single artifact link (idempotent)Post-artifact creation

Execution

1. Input Validation

Validate required inputs based on operation type:

For preflight_update:

  • task_number - Must be provided and exist in state.json
  • target_status - Must be an in-progress variant (researching, planning, implementing)
  • session_id - Must be provided for traceability

For postflight_update:

  • task_number - Must be provided and exist
  • target_status - Must be a final variant (researched, planned, implemented, partial)
  • artifacts - Array of {path, type} to link
  • session_id - Must be provided

For artifact_link:

  • task_number - Must be provided and exist
  • artifact_path - Relative path to artifact
  • artifact_type - One of: research, plan, summary

2. Execute Operation Directly

Route to appropriate operation and execute using Bash (jq) and Edit tools.


Operation: preflight_update

Purpose: Set in-progress status at GATE IN checkpoint

Execution:

  1. Validate task exists:
task_data=$(jq -r --arg num "{task_number}" \
  '.active_projects[] | select(.project_number == ($num | tonumber))' \
  specs/state.json)

if [ -z "$task_data" ]; then
  echo "Error: Task {task_number} not found"
  exit 1
fi
  1. Update state.json:
jq --arg ts "$(date -u +%Y-%m-%dT%H:%M:%SZ)" --arg status "{target_status}" \
  '(.active_projects[] | select(.project_number == {task_number})) |= . + {
    status: $status,
    last_updated: $ts
  }' specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json
  1. Update TODO.md status marker:

- Find task entry: grep -n "^### {task_number}\." specs/TODO.md - Use Edit tool to change [OLD_STATUS] to [NEW_STATUS]

Status Mapping:

state.jsonTODO.md
not_started[NOT STARTED]
researching[RESEARCHING]
planning[PLANNING]
implementing[IMPLEMENTING]

Return: JSON object with status "synced" and previous/new status fields.


Operation: postflight_update

Purpose: Set final status and link artifacts at GATE OUT checkpoint

Execution:

  1. Update state.json status and timestamp:
jq --arg ts "$(date -u +%Y-%m-%dT%H:%M:%SZ)" --arg status "{target_status}" \
  '(.active_projects[] | select(.project_number == {task_number})) |= . + {
    status: $status,
    last_updated: $ts
  }' specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json
  1. Add artifacts to state.json (for each artifact):

IMPORTANT: Use two-step jq pattern to avoid Issue #1132 escaping bug. See jq-escaping-workarounds.md.

# Step 1: Update timestamp
jq --arg ts "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
  '(.active_projects[] | select(.project_number == {task_number})) |= . + {
    last_updated: $ts
  }' specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json

# Step 2: Add artifact (append to array)
jq --arg path "{artifact_path}" \
   --arg type "{artifact_type}" \
  '(.active_projects[] | select(.project_number == {task_number})).artifacts += [{"path": $path, "type": $type}]' \
  specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json
  1. Update TODO.md status marker:

- Use Edit to change status: [RESEARCHING] -> [RESEARCHED]

  1. Link artifacts in TODO.md:

- Add research/plan/summary links in appropriate location

Status Mapping:

state.jsonTODO.md
researched[RESEARCHED]
planned[PLANNED]
implemented[IMPLEMENTED]
partial[PARTIAL]

Return: JSON object with target_status and artifacts_linked fields.


Operation: artifact_link

Purpose: Add single artifact link (idempotent)

Execution:

  1. Idempotency check:
if grep -A 30 "^### {task_number}\." specs/TODO.md | grep -q "{artifact_path}"; then
  echo "Link already exists"
  # Return "skipped" status
fi
  1. Add to state.json artifacts array:

IMPORTANT: Use two-step jq pattern to avoid Issue #1132 escaping bug. See jq-escaping-workarounds.md.

# Step 1: Update timestamp
jq --arg ts "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
  '(.active_projects[] | select(.project_number == {task_number})) |= . + {
    last_updated: $ts
  }' specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json

# Step 2: Add artifact (append to array)
jq --arg path "{artifact_path}" \
   --arg type "{artifact_type}" \
  '(.active_projects[] | select(.project_number == {task_number})).artifacts += [{"path": $path, "type": $type}]' \
  specs/state.json > specs/tmp/state.json && mv specs/tmp/state.json specs/state.json
  1. Add link to TODO.md using Edit tool:
TypeFormat in TODO.md
researchCount-aware format (see "Artifact Linking Format" in state-management.md)
planCount-aware format (see "Artifact Linking Format" in state-management.md)
summaryCount-aware format (see "Artifact Linking Format" in state-management.md)

Count-Aware Logic: Use inline format for 1 artifact, multi-line list for 2+. See state-management.md for detection patterns and insertion examples.

Insertion order:

  • research: after Language line
  • plan: after Research line (or Language if no Research)
  • summary: after Plan line

Return: JSON object with status "linked" or "skipped".


Return Format

preflight_update returns:

{
  "status": "synced",
  "summary": "Updated task #{N} to [{STATUS}]",
  "previous_status": "not_started",
  "new_status": "researching"
}

postflight_update returns:

{
  "status": "{target_status}",
  "summary": "Updated task #{N} to [{STATUS}] with {M} artifacts",
  "artifacts_linked": ["path1", "path2"],
  "previous_status": "researching",
  "new_status": "researched"
}

artifact_link returns:

{
  "status": "linked|skipped",
  "summary": "Linked artifact to task #{N}" | "Link already exists",
  "artifact_path": "path/to/artifact.md",
  "artifact_type": "research"
}

Error Handling

Task Not Found

Return failed status with recommendation to verify task number.

Invalid Status Transition

Return failed status with current status and allowed transitions.

File Write Failure

Return failed status with recommendation to check permissions.

jq Parse Failure

If jq commands fail with INVALID_CHARACTER or syntax error (Issue #1132):

  1. Log to errors.json with session_id and original command
  2. Retry with two-step pattern from jq-escaping-workarounds.md
  3. If retry succeeds, log recovery action

Integration Notes

For Workflow Commands: Do NOT use this skill directly. Workflow skills now handle their own status updates inline.

For Manual Operations: Use this skill for standalone status corrections:

### Manual Status Correction
Invoke skill-status-sync with:
- operation: preflight_update or postflight_update
- task_number: {N}
- target_status: {valid_status}
- session_id: manual_correction
- artifacts: [{path, type}, ...] (for postflight only)

This skill ensures:

  • Atomic updates across both files
  • Consistent jq/Edit patterns
  • Proper error handling
  • Direct execution without subagent overhead

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.29%
按下载量换算28

Claude

31.39%
按下载量换算23

Cursor

17.26%
按下载量换算13

Gemini CLI

8.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills