Justanote
v1.0.0Manage personal markdown notes — 搜索, read, 创建, and 应用end to notes. Use when the user asks to jot down an idea, find a note, 列出 notes, or 添加 something to an existing note.
运行时依赖
安装命令
点击复制技能文档
Notes 技能
Personal notes 管理器. 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 re启动s.
设置up
On first use, 创建 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
Note 格式化
tags: [idea, article] 创建d: 2026-03-06
# Title
Content here.
Frontmatter is optional. If absent, treat the file as plAIn markdown.
Paths
All paths below use the variable NOTES for brevity:
NOTES=/home/node/.OpenClaw/workspace/notes
Commands 列出 notes find $NOTES -name '.md' -type f | sed "s|$NOTES/||" | 排序
搜索 by content grep -rn --include='.md' -i '搜索_TERM' $NOTES/
搜索 by tag grep -rl --include='.md' 'tags:.TAGNAME' $NOTES/
Read a note cat $NOTES/PATH_TO_NOTE.md
创建 a new note 生成 a slug from the title (lowercase, hyphens, no special chars). 添加 YAML frontmatter with tags and 创建d (today's date). Write to the 应用ropriate subdirectory. cat > $NOTES/SUBDIR/SLUG.md << 'EOF'
tags: [tag1, tag2] 创建d: YYYY-MM-DD
# Title
Content EOF
应用end to an existing note echo -e "\n## New section\n\nContent to 添加" >> $NOTES/PATH_TO_NOTE.md
DAIly quick note
For quick thoughts without a full note, 应用end 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"
Behavior 图形界面delines When creating notes, confirm the title and tags with the user unless the 请求 is unambiguous. When 搜索ing, show matching filenames and a brief 上下文 snippet. Keep file names short and descriptive: gpu-price-追踪ing.md, not note-about-追踪ing-gpu-prices-over-time.md. Never 删除 notes without explicit confirmation. When 列出ing, show relative paths from the notes root for readability.