在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用getnote-tag
星标149
分支10
更新时间2026年4月2日 09:04
Manage note tags in Get笔记 via the getnote CLI
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Manage note tags in Get笔记 via the getnote CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage notes in Get笔记 via the getnote CLI
Manage authentication for Get笔记 CLI
Semantic search across notes in Get笔记 via the getnote CLI
Manage knowledge bases in Get笔记 via the getnote CLI
| name | getnote-tag |
| version | 0.3.0 |
| description | Manage note tags in Get笔记 via the getnote CLI |
Add, list, and remove tags on notes.
getnote CLI installed and authenticated (getnote auth status should show "Authenticated")getnote tag list <note_id>
Returns all tags with their IDs and types.
Tag types:
ai — auto-generated by AImanual — added by the usersystem — system tag (cannot be deleted)getnote tag list 1896830231705320746
getnote tag list 1896830231705320746 -o json
getnote tag add <note_id> <tag>
getnote tag add 1896830231705320746 工作
getnote tag remove <note_id> <tag_id>
⚠️ Requires tag ID (integer from
tag list), not tag name. ⚠️systemtype tags cannot be removed.
# Step 1: get tag IDs
getnote tag list 1896830231705320746 -o json
# Step 2: remove by tag ID
getnote tag remove 1896830231705320746 123
tag list -o json returns {"note_id":"...","tags":[{"id":"...","name":"...","type":"..."}]} (flat, no success wrapper).tag remove takes a numeric tag ID, not a name — always call tag list first.getnote note update --tag "tag1,tag2" instead.0 = success; non-zero = error. Error details go to stderr.