getnote-tag
Original:🇺🇸 English
Translated
Manage note tags in Get笔记 via the getnote CLI
5installs
Sourceiswalle/getnote-cli
Added on
NPX Install
npx skill4agent add iswalle/getnote-cli getnote-tagTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →getnote-tag Skill
Add, list, and remove tags on notes.
Prerequisites
- CLI installed and authenticated (
getnoteshould show "Authenticated")getnote auth status
Commands
List tags on a note
getnote tag list <note_id>Returns all tags with their IDs and types.
Tag types:
- — auto-generated by AI
ai - — added by the user
manual - — system tag (cannot be deleted)
system
bash
getnote tag list 1896830231705320746
getnote tag list 1896830231705320746 -o jsonAdd a tag
getnote tag add <note_id> <tag>bash
getnote tag add 1896830231705320746 工作Remove a tag
getnote tag remove <note_id> <tag_id>⚠️ Requires tag ID (integer from), not tag name. ⚠️tag listtype tags cannot be removed.system
bash
# Step 1: get tag IDs
getnote tag list 1896830231705320746 -o json
# Step 2: remove by tag ID
getnote tag remove 1896830231705320746 123Agent Usage Notes
- returns
tag list -o json(flat, no{"note_id":"...","tags":[{"id":"...","name":"...","type":"..."}]}wrapper).success - takes a numeric tag ID, not a name — always call
tag removefirst.tag list - To replace all tags at once, use instead.
getnote note update --tag "tag1,tag2" - Exit code = success; non-zero = error. Error details go to stderr.
0