youdaonote-clip

youdaonote-clip is a skill for Claude Code, Codex from HViktorTsoi/youdaonote-claude-skills. It costs 69 tokens per session (742 once invoked), scanned C, original, MIT.

A command-line tool for saving web pages to Youdao Cloud Notes, an online note-taking service. It can also show recently saved pages.

In plain words
What is it for?
Use it to clip a web page, save the captured HTML data locally, choose a notes folder, or list recent saved pages.
Why use it?
It removes the manual steps of copying web content into notes and makes saved pages easier to review from the command line.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to clip a web page, save the captured HTML data locally, choose a notes folder, or list recent saved pages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add HViktorTsoi/youdaonote-claude-skills --skill youdaonote-clip
Clone the repo
git clone --depth 1 https://github.com/HViktorTsoi/youdaonote-claude-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for youdaonote-clip

README.md
[![agentmods](https://agentmods.dev/badge/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip/github.svg)](https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip)
Your own site
<a href="https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip"><img src="https://agentmods.dev/badge/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for youdaonote-clip

Your own site · 80×15
<a href="https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip"><img src="https://agentmods.dev/badge/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-clip.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 742 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.00742
Opus 5 $0.00034 $0.00371
Sonnet 5 $0.00014 $0.00148
Haiku 4.5 $0.00007 $0.00074

Measured 12d ago against content hash f9d0c1993d01, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

youdaonote-clip scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://artifact.lx.netease.com/download/youdaonote-cli/install.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://artifact.lx.netease.com/download/youdaonote-cli/install.sh | bash
skills/youdaonote-clip/SKILL.md · 81 lines

What it actually says

有道云笔记 · 网页剪藏 Skill

前置条件

使用前确认 CLI 已安装并配置好 API Key:

# 安装 CLI(macOS/Linux)
curl -fsSL https://artifact.lx.netease.com/download/youdaonote-cli/install.sh | bash

# 配置 API Key(从 https://mopen.163.com/#/dashboard 获取)
youdaonote config set apiKey YOUR_API_KEY

# 验证
youdaonote recent

安装信息

项目 路径
CLI 二进制 ~/.local/bin/youdaonote
配置文件 ~/.youdaonote.json
PATH 配置 安装脚本自动写入 ~/.zshrc,新终端生效

若当前终端尚未 source ~/.zshrc,请用完整路径调用:~/.local/bin/youdaonote <command>

主要操作

剪藏网页

# 基本剪藏
youdaonote clip "https://example.com/article"

# 剪藏到指定目录(需要目录 ID)
youdaonote clip "https://example.com/article" -f <folderID>

# 保存剪藏原始 HTML 数据到本地文件
youdaonote clip-save --file result.json

查看最近收藏

# 查看最近 15 条收藏
youdaonote recent

# 查看最近 N 条收藏
youdaonote recent -l 30

# 以 JSON 格式输出
youdaonote recent -c

工作流程

  1. 用户提供网址 → 运行 youdaonote clip "URL" 执行剪藏
  2. 用户要查看收藏 → 运行 youdaonote recent 列出最近收藏
  3. 如剪藏失败(网络超时等)→ 告知用户可设置环境变量 YOUDAONOTE_MCP_TIMEOUT=120 增大超时时间
  4. 如遇到 URL 含 & 字符 → 提醒用户用引号包裹 URL

错误处理

  • API Key 未配置:引导用户运行 youdaonote config set apiKey YOUR_API_KEY
  • 命令未找到:先尝试完整路径 ~/.local/bin/youdaonote,若仍失败则重新安装 CLI
  • 剪藏失败:检查网络、确认 URL 可访问、尝试增大超时

环境变量

变量 说明 示例
YOUDAONOTE_API_KEY API 密钥(优先级高于 config) export YOUDAONOTE_API_KEY="xxx"
YOUDAONOTE_MCP_TIMEOUT 请求超时秒数(默认 60) export YOUDAONOTE_MCP_TIMEOUT=120
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 81 lines · 69 tokens per session scan C f9d0c1993d01

Subscribe to this mod's changes

youdaonote-clip is a skill published in the GitHub repository HViktorTsoi/youdaonote-claude-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 69 tokens to every session and 742 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

inbox-triage

Route raw Obsidian inbox captures into keep/promote/project/archive/deep-read. Load when user asks to triage inbox, sort captures, or process fleeting notes. Do NOT use for relationship analysis, synthesis, health diagnosis, or note creation.

r007b34r/opencode-obsidian-knowledge-workflow · 56 tokens

note-promotion

Decide whether material should become a stable, reusable, linkable Obsidian note. Load when user asks to upgrade, promote, or stabilize material into a formal note. Do NOT use for inbox triage, link discovery, or weekly synthesis.

r007b34r/opencode-obsidian-knowledge-workflow · 54 tokens

vault-health-feedback

Diagnose whether an Obsidian knowledge workflow produces cognitive return or is becoming a passive archive. Load when vault feels archival or dead. Do NOT use for inbox triage, link review, synthesis, or direct restructuring.

r007b34r/opencode-obsidian-knowledge-workflow · 48 tokens

omh-morning-brief

This is a Hermes-native morning-brief workflow skill.

rlaope/oh-my-hermes · 92 tokens

add-teams

Adds Microsoft Teams connector to a Power Apps code app. Use when sending Teams messages, posting to channels, or integrating with Teams chat.

microsoft/power-platform-skills · 31 tokens

design-mcp-server

Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.

cyanheads/obsidian-mcp-server · 62 tokens