Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计未展示

em%3aupdateem%3a 更新

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

公开资料未说明

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cloudvoyant/codevoyant --skill em:update

简介

em%3aupdate 更新 EM 计划或任务里程碑文件,支持注解模式和自然语言两种输入方式。

  • 通过 > 和 >> 标记插入指令,自动应用到对应段落或区块。
  • 保留原始计划结构的同时允许增量修改,保持可追溯性。
  • 安装前建议熟悉 Annotation Syntax 以避免格式错误。
  • 注意:变更前会提示确认,防止意外覆盖重要内容。

SKILL.md

Compatibility: If AskUserQuestion is unavailable, present options as a numbered list and wait for the user's reply. If Task is unavailable, run parallel steps sequentially. The context: fork and agent: frontmatter fields are Claude Code-specific — on OpenCode and VS Code Copilot they are ignored and the skill runs inline using the current model.

Update an EM plan or task milestone file. Two input modes:

  • Annotations: > and >> markers already written in plan files
  • Conversational: plain-language description of what to change

Annotation syntax

> instruction — standalone line, applies to the block immediately below it:

> rewrite this phase for the new auth approach
### Phase 2 - Authentication Migration

content >> instruction — inline suffix, applies to that line:

- Migrate user sessions >> mark done
- Add refresh token rotation >> remove this task
- Configure OAuth providers >> change to use env vars

Both can appear in plan.md and any tasks/*.md.

Step -1: Parse Flags

BG_MODE = true if --bg present
SILENT  = true if --silent present

If BG_MODE=true: skip the confirmation in Step 1 and send a desktop notification after Step 5.

Step 0: Select Plan

Check for plan slug argument. If not provided:

  1. List .codevoyant/em/plans/*/plan.md sorted by modification time (most recent first)
  2. If only one plan, auto-select it
  3. If multiple, use AskUserQuestion to present the list and ask the user to choose
  4. If none exist, inform user to run /em:plan first

Verify .codevoyant/em/plans/{slug}/plan.md exists. Set PLAN_DIR=".codevoyant/em/plans/{slug}".

Step 0.5: Determine Input Mode

Check the argument string and triggering message for a change description:

  • If a non-slug argument is present (e.g., /em:update add observability to phase 3), treat everything after the slug as CHANGE_DESCRIPTION
  • If neither: CHANGE_DESCRIPTION is empty -> annotation mode

Set INPUT_MODE:

  • conversationalCHANGE_DESCRIPTION is non-empty
  • annotations — scan plan files for > / >> markers
  • If both present, process conversational change first, then apply any annotations

Step 1: Process Conversational Change (if INPUT_MODE includes conversational)

Read plan.md and any relevant tasks/*.md to understand current structure.

Translate CHANGE_DESCRIPTION into concrete edits:

  1. Identify exactly which files are affected
  2. Determine what needs to change -- specific new text, removed lines, renamed sections
  3. Show a concise preview before applying:
Proposed changes for: "{CHANGE_DESCRIPTION}"

  plan.md
    + Phase 2: add observability milestone under deliverables

  tasks/develop.md
    + Task: "Set up distributed tracing with OpenTelemetry"
    + Failure mode: "Trace context lost across service boundaries"

Apply these changes?

If the change marks a task as done, after applying offer: "Push status update to Linear? (uses mcp__linear-server__save_issue with completed state)"

If BG_MODE=true, auto-apply without asking.

Otherwise use AskUserQuestion:

question: "Apply these changes to {slug}?"
header: "Roadmap Update"
multiSelect: false
options:
  - label: "Apply"
    description: "{first line of change summary}"
  - label: "Adjust"
    description: "Let me clarify what I want"
  - label: "Cancel"
    description: "Don't change the plan"
  • Apply: proceed
  • Adjust: ask "What should be different?", update proposed changes, re-confirm
  • Cancel: exit

Step 2: Scan for Annotations

grep -rn "^>" {PLAN_DIR}/plan.md {PLAN_DIR}/tasks/ 2>/dev/null
grep -rn ">>" {PLAN_DIR}/plan.md {PLAN_DIR}/tasks/ 2>/dev/null

For each annotation, parse: FILE, LINE_NUM, CONTENT (before >>), INSTRUCTION.

If INPUT_MODE=annotations and no annotations found:

No annotations found in {slug}.

To annotate, edit plan.md or tasks/*.md directly:
  > rewrite this section for the new approach     -- applies to next block
  - task name >> mark done                        -- applies to this line

Exit.

Step 3: Apply Each Annotation

Work bottom-to-top within each file so line numbers stay valid.

InstructionAction
"mark done", "done", "✓"Mark the item complete
"remove", "delete", "drop"Delete the target line(s) or section
"rewrite", "replace", "change to"Rewrite per instruction
"add", "insert", "append"Insert new content
"rename"Update the label/title
Free-formInterpret and apply as a direct edit

Remove the annotation marker after applying. Log each change for the summary.

Step 4: Consistency Pass

After all changes:

  • Verify task milestone files still exist: {PLAN_DIR}/tasks/design.md, tasks/develop.md, tasks/deploy.md
  • Check milestone naming and task numbering is consistent throughout plan.md
  • Verify "NOT this period" section still accurately reflects deferrals

Step 5: Validation Pass

Run 2 validation rounds autonomously — no user prompts.

For each round, launch parallel agents (model: claude-haiku-4-5-20251001, run_in_background: true):

Plan-level agent -- checks plan.md: milestones have objectives/deliverables/risks, assumptions listed.

Per-task-file agents -- one per tasks/*.md file touched in this update: each task has requirements, ACs, design/SA fields filled; tasks are specific and actionable.

Collect results (TaskOutput block: true). Auto-fix any NEEDS_IMPROVEMENT issues. Run round 2 after fixes. Cap at 3 rounds.

Step 6: Report

Updated: {slug}

  Changes applied:
    plan.md:24           -- added observability milestone
    tasks/develop.md:8   -- added OpenTelemetry task

  Validation: {N} rounds -- {PASS | X issues remain}

If an annotation was ambiguous or could not be applied:

⚠️  Skipped annotation at {file}:{line}: {reason}
    Annotation preserved — resolve manually.

Step 7: Notify (--bg only)

If BG_MODE=true and SILENT=false:

npx @codevoyant/agent-kit notify --title "em:update complete" --message "Roadmap '{slug}' updated"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.67%
按下载量换算35

Claude

32.22%
按下载量换算32

Cursor

19.97%
按下载量换算20

Gemini CLI

8.81%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills