Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

YoudaoNote

v1.0.0

Use when the user wants to interact with YoudaoNote (有道云笔记) — listing, reading, creating, searching notes, clipping web pages, or saving Markdown/mindmap not...

0· 347·4 current·4 all-time
byCheng@huangcheng

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for huangcheng/youdao-note.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "YoudaoNote" (huangcheng/youdao-note) from ClawHub.
Skill page: https://clawhub.ai/huangcheng/youdao-note
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install youdao-note

ClawHub CLI

Package manager switcher

npx clawhub@latest install youdao-note
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name, description, and SKILL.md all consistently describe using a youdaonote CLI to list, read, create, search, clip, and save notes. Required capabilities described (API key configuration) match the stated purpose; no unrelated service credentials or binaries are requested.
Instruction Scope
Instructions are narrowly scoped to installing and using a youdaonote CLI and configuring an API key. However, the SKILL.md explicitly directs running a remote installer via `curl -fsSL https://artifact.lx.netease.com/download/youdaonote-cli/install.sh | bash`, which grants the remote script authority to write/execute on the host — an out-of-band action beyond the skill’s pure instruction scope and worth caution.
!
Install Mechanism
There is no registry install spec, but the README instructs piping a shell install script from artifact.lx.netease.com into bash. This is a high-risk pattern: it downloads and executes arbitrary remote code. The URL is not a well-known packaged-release host (e.g., GitHub release or major package manager) in the skill metadata, and the registry listing provides no checksums or signatures to verify the installer.
Credentials
The skill declares no required env vars or credentials. The SKILL.md asks the user to set an API key in the CLI (youdaonote config set apiKey), which is proportional to a note-syncing CLI. There are no requests for unrelated secrets or system-level credentials.
Persistence & Privilege
The skill is instruction-only, does not request always:true, and does not modify other skills or declare config path access. It does rely on installing a third-party CLI which may persist on disk — that persistence is due to the installer (see install_mechanism concern), not the skill metadata.
What to consider before installing
This skill appears to be a genuine usage guide for a YoudaoNote CLI, but the SKILL.md tells you to run a remote install script (curl | bash). That action will execute code from a remote server on your machine — treat it as risky unless you trust the source. Before installing: (1) verify the installer URL belongs to the official vendor (artifact.lx.netease.com appears related to NetEase but confirm official documentation), (2) fetch the script first (curl … -o install.sh) and review its contents and any checksums/signatures instead of piping to bash, (3) prefer installing from a trusted package manager or signed release when available, (4) run the installer in a sandbox/VM if possible, and (5) verify where the CLI stores your API key and what network calls it makes. If you cannot verify the installer's provenance or inspect it safely, avoid running the script.

Like a lobster shell, security has layers — review code before you run it.

latestvk976pfwq887t2zdfrc2pwvg8r9832dpk
347downloads
0stars
1versions
Updated 22h ago
v1.0.0
MIT-0

YoudaoNote CLI

Command-line tool for 有道云笔记. Operate on notes without opening the app — list, read, create, search, clip, and save from the terminal or scripts.

Setup

# Install (no Node.js required)
curl -fsSL https://artifact.lx.netease.com/download/youdaonote-cli/install.sh | bash

# Configure API Key (get from https://mopen.163.com/#/dashboard)
youdaonote config set apiKey YOUR_API_KEY

# Verify
youdaonote list

API Key requires a phone number bound to your YoudaoNote account.

Quick Reference

GoalCommand
List root directoryyoudaonote list
List a folderyoudaonote list -f <目录ID>
Read a noteyoudaonote read <fileId>
Create a noteyoudaonote create -n "标题" -c "内容"
Create empty noteyoudaonote create -n "标题"
Search notesyoudaonote search 关键词
Search (JSON output)youdaonote search "关键词" --json
Recent 15 notesyoudaonote recent
Recent N notesyoudaonote recent -l <N>
Recent with contentyoudaonote recent -c
Clip a webpageyoudaonote clip "https://..."
Clip to folderyoudaonote clip "https://..." -f <目录ID>
Save clip JSONyoudaonote clip-save --file result.json
Save note JSONyoudaonote save --file note.json

Save Formats

clip-save JSON (HTML clipping from browser plugins)

{
  "title": "笔记标题",
  "bodyHtml": "<p>正文内容</p>",
  "sourceUrl": "https://example.com",
  "images": []
}

save JSON (Markdown, mindmap, etc.)

{
  "title": "笔记.md",
  "type": "md",
  "content": "# 标题\n\n正文内容"
}

Common Workflows

Search and read in a script:

FILE_ID=$(youdaonote search "关键词" --json | jq -r '.[0].id')
youdaonote read "$FILE_ID"

Save a build report in CI:

cat > note.json << 'EOF'
{ "title": "构建报告.md", "type": "md", "content": "# 构建成功\n\n时间:$(date)" }
EOF
youdaonote save --file note.json

Troubleshooting

SymptomFix
API Key 未配置youdaonote config set apiKey YOUR_KEY
clip-save 报缺少必填字段JSON 需包含 titlebodyHtmlsourceUrl
save 报缺少必填字段JSON 需包含 titlecontent
Unterminated string JSON 解析失败改用 printf '%s\n' '...'--file 从文件读取
Windows JSON Parse error使用 --file 读取文件;或改用 PowerShell
Windows clip 后出现命令错误URL 含 & 时必须用英文双引号括起整个 URL
Windows 保存后乱码先执行 chcp 65001,或用 UTF-8 编辑器保存 JSON

Comments

Loading comments...