mnhkahn/cyeam-cli

cnote

云端笔记——在 OneDrive 上管理轻量 HTML 笔记,支持查看、新建、追加、列表。需要 Microsoft 登录。想查电视节目去问 tv skill。【重要】?

First seen Jun 12, 2026

Installation

$ npx skills add mnhkahn/cyeam-cli --skill cnote

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mnhkahn/cyeam-cli · top by installs.

npx skills add mnhkahn/cyeam-cli

Browse all from mnhkahn/cyeam-cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.16

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,306 B
  • docs SUMMARY.md 257 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 101 installs

SKILL.md

云端笔记

概述

在 OneDrive Notes 文件夹中管理 HTML 笔记。需要先登录 Microsoft 账号(登录方式见 cyeam-cli skill 的"登录方式")。

cyeam cnote list                     # 列出所有笔记
cyeam cnote get "笔记标题"            # 查看(默认 markdown 格式)
cyeam cnote get "笔记标题" --format text
cyeam cnote new "笔记标题" < note.html
cyeam cnote append "笔记标题" < more.html

安装

# macOS Apple Silicon
curl -L https://github.com/mnhkahn/cyeam-cli/releases/latest/download/cyeam_Darwin_arm64.tar.gz | tar xz && chmod +x cyeam && sudo mv cyeam /usr/local/bin/

# macOS Intel
curl -L https://github.com/mnhkahn/cyeam-cli/releases/latest/download/cyeam_Darwin_x86_64.tar.gz | tar xz && chmod +x cyeam && sudo mv cyeam /usr/local/bin/

# Linux amd64
curl -L https://github.com/mnhkahn/cyeam-cli/releases/latest/download/cyeam_Linux_x86_64.tar.gz | tar xz && chmod +x cyeam && sudo mv cyeam /usr/local/bin/

检查安装:which cyeam && cyeam version

命令

cyeam whoami                         查看登录状态(登录方式见 cyeam-cli skill)

cyeam cnote list                     列出笔记(显示文件名、修改时间、可点击链接)
cyeam cnote get <title>              读取笔记内容(默认 markdown 渲染)
cyeam cnote get <title> --format text
cyeam cnote new <title> < note.html  从 stdin 创建笔记
cyeam cnote append <title> < note.html

数据存储

笔记存储在 OneDrive 的 Notes/ 文件夹下,每篇笔记是一个 .html 文件。列表时如果有 webUrl 会显示可点击的"打开"链接。

注意事项

  • 需要 Microsoft 账号登录,使用 Device Code 流程(登录方式见 cyeam-cli skill)
  • 登录后 token 自动刷新(带 refresh_token)
  • 内容是纯 HTML,get 命令会解析并转换为 markdown/text 显示
  • newappend 从 stdin 读取,适合管道:echo "<h1>hello</h1>" | cyeam cnote new test