Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计未展示

skill%3aupdate技能%3a 更新

Agent Skill

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

总安装

240

周安装

10

GitHub Stars

公开资料未说明

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适用于信息调研、内容聚合和线索筛选等研究类任务场景。
  • 通过关键词匹配和来源仓库分析,提供候选结果的快速定位与初步筛选能力。
  • 安装命令:npx skills add https://github.com/cloudvoyant/codevoyant --skill skill:update。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

Compatibility: AskUserQuestion falls back to numbered list on non-Claude-Code platforms.

Skill Requirements

command -v npx >/dev/null 2>&1 || echo "MISSING: npx"

Critical Rules

  • Never modify skill files directly — always produce a plan first, accept it, then apply
  • Read the current SKILL.md in full before proposing anything
  • If target is ambiguous, ask the user

Step 0: Parse arguments

SKILL_NAME="${1:-}"

Step 1: Determine target

Check if a skill plan is currently active:

npx @codevoyant/agent-kit plans list --status Active --plugin skill 2>/dev/null

If one active plan found → offer to update it. If multiple active plans found → ask which one. If no active plans → ask if updating an existing skill (and which one).

If the user provides SKILL_NAME, resolve to either:

  • .codevoyant/plans/{skill-name}/plan.md (in-progress plan)
  • skills/{skill-name}/SKILL.md or .claude/skills/{skill-name}/SKILL.md (existing skill)

If ambiguous between plan and existing skill, ask:

AskUserQuestion:
  question: "Found both a plan and an existing skill for '{name}'. Which to update?"
  header: "Target"
  options:
    - label: "Update the in-progress plan"
    - label: "Update the existing committed skill"

Store as TARGET_TYPE (plan | existing) and TARGET_PATH.

Step 2: Read and scope the update

Read TARGET_PATH in full. If TARGET_TYPE=plan, also read all files in the plan directory (implementation phases, proposed skill files, research artifacts, etc.) to understand the full current state.

Ask which dimensions to improve:

AskUserQuestion:
  question: "Which dimensions do you want to improve?"
  header: "Update scope"
  multiSelect: true
  options:
    - label: "Address requests in plan — act on feedback or TODOs left in plan files" (Only if TARGET_TYPE = plan)
    - label: "Prompt quality — improve instruction clarity, step specificity, trigger description"
    - label: "Performance — parallelization, model selection (haiku vs sonnet vs opus), background flags"
    - label: "Agent additions/improvements — add agents, refine existing agent prompts or models"
    - label: "Skill dependencies — add/update/remove required tools or npx packages"

Store selected dimensions as UPDATE_DIMENSIONS.

Step 3: Confirm proposed changes

For each dimension in UPDATE_DIMENSIONS, articulate specifically what you intend to change — not vague intentions but concrete edits.

If "Address requests in plan" is selected: read all plan files in .codevoyant/plans/{skill-slug}/ (plan.md, implementation phases, proposed skill files, any inline comments or TODOs), then list each request or piece of feedback found and state exactly how you will address it.

For all other dimensions: describe the specific edit per dimension. Example: "For Prompt quality: I'll rewrite the trigger description to include three more trigger phrases and tighten Step 2 to name the exact tool used."

Present this as your proposed direction and ask for confirmation:

AskUserQuestion:
  question: "Does this capture the changes you want to make?"
  header: "Direction check"
  options:
    - label: "Yes — proceed"
    - label: "No — I want something different (describe below)"

If the user wants changes, apply and re-confirm once before continuing.


If the skill being updated is technology-specific or knowledge-oriented (infer from reading the SKILL.md — check for references to specific frameworks, external APIs, or research artifacts), also ask:

AskUserQuestion:
  question: "Are there specific resources, docs, or URLs you want to consult for this update?"
  header: "Resources"
  options:
    - label: "Yes — I'll list them below"
    - label: "No — use what's in the skill already"

If yes, wait for the user to provide the list. Store as RESOURCE_LIST.

Step 4: Research (if resources provided)

If RESOURCE_LIST is non-empty:

Tell the user: "Starting deep research on {N} resource(s) — this may take a few minutes. I'll notify you when the plan is ready."

Use the Agent tool to launch all researchers in a single message (one tool call per resource) so they run concurrently. For each resource, substitute into agents/skill-researcher.md:

  • {RESOURCE_URL} — the resource URL or path
  • {SKILL_NAME} — the skill being updated
  • {OUTPUT_PATH}.codevoyant/plans/{skill-slug}-update-{YYMMDD}/research/{slug}.md

Each agent: model: claude-sonnet-4-6, run_in_background: true.

Do not send agent calls across separate messages — all must be in one message to run in parallel. Wait for all to complete before continuing.

Read all artifacts in .codevoyant/plans/{skill-slug}-update-{YYMMDD}/research/ and incorporate findings into the plan.

Step 5: Write update plan

  • Create .codevoyant/plans/{skill-slug}-update-{YYMMDD}/plan.md describing what changes will be made per dimension and why
  • Create .codevoyant/plans/{skill-slug}-update-{YYMMDD}/files/proposed-skill.md — the full updated SKILL.md draft
  • If agents are being added or modified, create .codevoyant/plans/{skill-slug}-update-{YYMMDD}/files/agents/{agent-name}.md for each using references/agent-template.md
  • Once all files are written, add links to them near the top of plan.md

Register plan, if TARGEG_TYPE = existing:

npx @codevoyant/agent-kit plans register \
  --name "{skill-slug}-update-{YYMMDD}" \
  --plugin skill \
  --description "Update skill:{skill-name} ({dimensions})" \
  --total 3
npx @codevoyant/agent-kit notify \
  --title "skill:update — Plan ready" \
  --message "Update plan for '{skill-name}' is ready for review"

Present plan to user.

AskUserQuestion:
  question: "Does this update plan look right?"
  header: "Plan review"
  options:
    - label: "Accept — apply changes"
    - label: "Adjust (describe changes)"
    - label: "Cancel"

Loop until accepted or cancelled. You MUST keep asking until the user is satisfied.

Step 6: Apply changes

Only after plan accepted. Write from plan files to the actual skill directory:

  • Copy files/proposed-skill.md → TARGET_PATH
  • Copy files/agents/{name}.md{skill-dir}/agents/{name}.md for each modified agent

Do not touch any files not covered by the update plan.

Step 7: Validate

Run /skill:review to audit the new skill automatically.

Report: "Skill updated. Run /skill:review to audit changes."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

37.34%
按下载量换算30

Claude

31.45%
按下载量换算25

Cursor

18.32%
按下载量换算15

Gemini CLI

9.73%
按下载量换算8

安全审计

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

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills