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.
npx skills add HViktorTsoi/youdaonote-claude-skills --skill youdaonote-notesgit clone --depth 1 https://github.com/HViktorTsoi/youdaonote-claude-skillsWrote 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.
[](https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-notes)<a href="https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-notes"><img src="https://agentmods.dev/badge/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-notes/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.
<a href="https://agentmods.dev/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-notes"><img src="https://agentmods.dev/badge/skills/hviktortsoi/youdaonote-claude-skills/youdaonote-notes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00097 | $0.01932 |
| Opus 5 | $0.00048 | $0.00966 |
| Sonnet 5 | $0.00019 | $0.00386 |
| Haiku 4.5 | $0.00010 | $0.00193 |
Grade C, and why
youdaonote-notes 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 How it starts
The opening of the file, as written. The whole thing — 234 lines — stays where its author put it; the contents beside it link to each section on GitHub.
有道云笔记 · 笔记管理 Skill
前置条件
# 安装 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
安装信息
| 项目 | 路径 |
|---|---|
| CLI 二进制 | ~/.local/bin/youdaonote |
| 配置文件 | ~/.youdaonote.json |
| PATH 配置 | 安装脚本自动写入 ~/.zshrc,新终端生效 |
若当前终端尚未 source
~/.zshrc,请用完整路径调用:~/.local/bin/youdaonote <command>
笔记操作命令
查看笔记列表
# 列出根目录笔记
youdaonote list
# 列出指定目录的笔记(需目录 ID)
youdaonote list -f <folderID>
⚠️
list不支持--json参数,输出为纯文本格式。
读取笔记内容
youdaonote read <fileId>
创建笔记(富文本 .note 格式)
⚠️
create命令固定创建.note富文本格式,无法创建 Markdown 笔记。
# 创建带标题和内容的笔记
youdaonote create -n "笔记标题" -c "笔记内容"
# 只创建标题(内容为空)
youdaonote create -n "笔记标题"
# 内容超过 10KB 时,从文件读取
youdaonote create -n "笔记标题" --file content.md
# 保存到指定目录
youdaonote create -n "笔记标题" -c "内容" -f <folderID>
创建 Markdown 笔记(.md 格式)
create 命令无法创建 .md 笔记,必须使用 save 命令并指定 "type": "md"。
步骤一: 用 Write 工具将 markdown 内容写入文件
⚠️ 严禁用
python3 -c "内容"或 shell heredoc 内联传入含反引号的 markdown! shell 会把```当命令替换执行,导致代码块内容被清空或替换成命令输出。 必须先用 Write 工具写文件,再用 Python 读取。
# 用 Write 工具写入 /tmp/note_content.md,内容为完整 markdown
步骤二: 用 Python 读取文件生成 JSON
import json
with open('/tmp/note_content.md', 'r') as f:
content = f.read()
payload = {
"title": "笔记标题", # 不需要带 .md 后缀,save 命令会自动处理
"type": "md", # 关键:指定 md 类型
"content": content,
"parentId": "<folderID>" # 目标目录 ID;不传则存到「我的资源」
}
with open('/tmp/note_payload.json', 'w') as f:
json.dump(payload, f, ensure_ascii=False)
步骤三: 用 save 命令创建占位笔记(内容随意,仅用于建立 .md 文件)
youdaonote save --file /tmp/note_payload.json
# 输出:笔记 ID:XXXXXXXX
⚠️
save/createAnyNote是为 HTML 内容设计的,会把"编码为",导致代码块中的引号乱码。 因此 不能 用 save 直接写入含引号的 markdown 内容,只用它建立.md文件。
步骤四: 立即用 update 命令覆写真正的内容(updateMarkdownNote 不做 HTML 转义)
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.
- 12d ago First seen · 234 lines · 97 tokens per session scan C ded9e0a02e1d
youdaonote-notes is a skill published in the GitHub repository HViktorTsoi/youdaonote-claude-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 97 tokens to every session and 1,932 once invoked, about $0.0005 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.
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.
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.
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.
omh-morning-brief
This is a Hermes-native morning-brief workflow skill.
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.
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.