Install
openclaw skills install just-noteManage personal markdown notes — search, read, create, and append to notes. Use when the user asks to jot down an idea, find a note, list notes, or add somet...
openclaw skills install just-notePersonal notes manager. Notes live in /home/node/.openclaw/workspace/notes/ as markdown files with optional YAML frontmatter.
On the host (VPS) this maps to /root/.openclaw/workspace/notes/ — data persists across container restarts.
On first use, create the notes directory if it doesn't exist:
mkdir -p /home/node/.openclaw/workspace/notes/ideas
mkdir -p /home/node/.openclaw/workspace/notes/projects
mkdir -p /home/node/.openclaw/workspace/notes/daily
mkdir -p /home/node/.openclaw/workspace/notes/misc
---
tags: [idea, article]
created: 2026-03-06
---
# Title
Content here.
Frontmatter is optional. If absent, treat the file as plain markdown.
All paths below use the variable NOTES for brevity:
NOTES=/home/node/.openclaw/workspace/notes
find $NOTES -name '*.md' -type f | sed "s|$NOTES/||" | sort
grep -rn --include='*.md' -i 'SEARCH_TERM' $NOTES/
grep -rl --include='*.md' 'tags:.*TAGNAME' $NOTES/
cat $NOTES/PATH_TO_NOTE.md
tags and created (today's date).cat > $NOTES/SUBDIR/SLUG.md << 'EOF'
---
tags: [tag1, tag2]
created: YYYY-MM-DD
---
# Title
Content
EOF
echo -e "\n## New section\n\nContent to add" >> $NOTES/PATH_TO_NOTE.md
For quick thoughts without a full note, append to today's daily file:
mkdir -p $NOTES/daily
FILE=$NOTES/daily/$(date +%Y-%m-%d).md
[ -f "$FILE" ] || echo "# $(date +%Y-%m-%d)" > "$FILE"
echo "- $(date +%H:%M) — Quick thought here" >> "$FILE"
gpu-price-tracking.md, not note-about-tracking-gpu-prices-over-time.md.