Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计未展示

skill%3anew技能%3a 新

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

公开资料未说明

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

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 write skill files until user accepts the plan
  • Step 0 is always bash argument parsing
  • Steps prefer npx @codevoyant/agent-kit operations over ad-hoc shell
  • No markdown tables in skill output — use definition lists, bullets, or Mermaid
  • Skills that are technology-specific must include a reference doc index in references/
  • Every skill ships with LICENSE.md (MIT)
  • See references/skill-template.md for canonical template

Step 0: Parse arguments

SKILL_NAME="[first non-flag argument, or empty]"
FROM_RESEARCH="[value after --research, or empty]"

Step 1: Load research context (if available)

If --research path provided, read that file as RESEARCH_CONTEXT.

Otherwise check .codevoyant/explore/ for recent explore artifacts relevant to SKILL_NAME. If found, offer to use them. Store as RESEARCH_CONTEXT (may be empty).

Step 2: High-level confirmation

Present a one-paragraph summary of the skill being proposed, derived from SKILL_NAME + RESEARCH_CONTEXT.

AskUserQuestion:
  question: "Does this match what you want to build? Any deviations before we plan?"
  header: "Skill overview"
  options:
    - label: "Looks right — proceed to planning"
    - label: "I have corrections (describe them)"

If corrections, apply and re-confirm once.

Step 3: Gather skill spec

Ask the following if not already known from context:

AskUserQuestion:
  questions:
    - question: "What agents should this skill create?"
      header: "Agents"
      options:
        - label: "No agents — runs inline"
        - label: "Single agent"
        - label: "Multiple parallel agents"
    - question: "Is this skill technology-specific?"
      header: "Tech scope"
      options:
        - label: "Yes — needs reference doc index (e.g. SvelteKit, Terraform, Firebase)"
        - label: "No — general purpose"
    - question: "Is this knowledge work?"
      header: "Knowledge"
      options:
        - label: "Yes — produces docs, research, or planning artifacts"
        - label: "No — produces code, config, or file changes"
    - question: "Where should the skill live?"
      header: "Destination"
      options:
        - label: "skills/ (public, top-level)"
        - label: ".claude/skills/ (private, this repo only)"
        - label: "Other (specify below)"

Store all answers as SKILL_SPEC.

Step 3.5: Confirm design direction

Based on SKILL_SPEC and RESEARCH_CONTEXT, synthesise a short design summary covering:

  • What the skill does and its primary output
  • How many steps and roughly what each does
  • Which agents are involved, what each one does, and what artifacts they produce
  • How skill, templates, and agents hand off to each other

If the user provided enough detail to be confident, present this as your understanding and ask for confirmation:

AskUserQuestion:
  question: "Does this match your intended design?"
  header: "Design check"
  options:
    - label: "Yes — looks right"
    - label: "No — I want something different (describe below)"

If the user provided minimal detail, present it as a best-guess proposal instead ("Here's what I'm thinking — does this sound right?") and ask the same question.

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


If SKILL_SPEC indicates tech-specific or knowledge work, also ask:

AskUserQuestion:
  question: "Are there specific resources, docs, or URLs you want the skill to consult?"
  header: "Resources"
  options:
    - label: "Yes — I'll list them below"
    - label: "No — use whatever is relevant"

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

Step 4: Plan the skill

4a. Launch research agents (parallel, background)

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 designed
  • {OUTPUT_PATH}.codevoyant/plans/{skill-slug}/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}/research/ and use them as input to 4b.

4b. Write the plan

  • Create .codevoyant/plans/{skill-slug}/plan.md with proposed skill file structure presented as a file-tree, and high level description of how the skill works, and utilizes agents and tools
  • Create .codevoyant/plans/{skill-slug}/files/proposed-skill.md which should adhere to the references/skill-template.md template
  • For every agent, create .codevoyant/plans/{skill-slug}/files/agents/{agent-name}.md using references/agent-template.md
  • Once all files have been created, update the plan file with links to relevant files near the top.

Register plan:

npx @codevoyant/agent-kit plans register \
  --name "{skill-slug}" \
  --plugin skill \
  --description "Create skill:{skill-name}" \
  --total 5
npx @codevoyant/agent-kit notify \
  --title "skill:new — Plan ready" \
  --message "'{skill-name}' plan is ready for review"

Present plan to user.

AskUserQuestion:
  question: "Does this plan look right?"
  header: "Plan review"
  options:
    - label: "Accept — create the skill"
    - label: "Adjust (describe changes)"

Loop until accepted. You MUST keep asking this question until the user is satisfied.

Step 5: Create skill files

Only after plan accepted:

a. Create SKILL.md at destination using references/skill-template.md:

  • Frontmatter (description, name, license, compatibility, argument-hint)

- Add disable-model-invocation: true if the skill is stateful or destructive AND does not use context: fork. A forked skill already runs in an isolated agent context — the two flags serve the same isolation purpose, don't combine them. - Add context: fork if the skill is long-running or should be isolated. This also provides stateful safety without needing disable-model-invocation.

  • Compatibility note block
  • Skill Requirements section (bash checks for deps)
  • Critical Rules (terse, ≤8 bullets; reference references/ for detail)
  • Step 0: bash argument parsing (always first)
  • Steps: terse recipe steps; prefer npx @codevoyant/agent-kit
  • If technology-specific: Agent Index section listing reference docs

b. Create references/{necessary templates}.md if tech-specific

c. Create agents/{agent-name}.md for each agent defined — one file per agent using references/agent-template.md

d. Create LICENSE.md (MIT, copyright codevoyant contributors)

e. If technology-specific, create references/{tech}-reference-index.md with links to official docs sections the skill should consult. The skill may additionally provide written guides in the references directory which can also be indexed in references/{tech}-reference-index.md.

e. If knowledge work specific, create references/{knowledgevase}-reference-index.md with links to external sources the skill should consult. The skill may additionally provide written guides in the references directory which can also be indexed in references/{tech}-reference-index.md.

Step 6: Validate

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

Report: "Skill {name} created at {path}."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.39%
按下载量换算29

Claude

28.39%
按下载量换算23

Cursor

20.32%
按下载量换算17

Gemini CLI

9.42%
按下载量换算8

安全审计

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

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/cloudvoyant/codevoyant --skill skill:new 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills