Install
openclaw skills install cell-youmindUse this skill when working with YouMind through the official YouMind CLI and API. Trigger it for YouMind boards, notes, crafts, picks, materials, chats, doc...
openclaw skills install cell-youmindUse the official youmind CLI as the default interface to YouMind.
This skill is optimized for OpenClaw usage, so it should help with both:
~/.local/bin/youmind in this environment.youmind is not in PATH, use:export PATH="$HOME/.local/bin:$PATH"
YOUMIND_API_KEY or --api-key.This environment has already been validated.
Installed CLI:
npm install -g @youmind-ai/cli --prefix "$HOME/.local"
Verified working commands:
youmind searchyoumind infoyoumind callVerified working APIs in this workspace:
createBoardgetBoardcreateNotecreateMaterialByUrllistMaterialsKnown APIs discovered from the installed CLI include:
listBoards, getBoard, createBoard, updateBoard, trashBoard, getDefaultBoardcreateNote, updateNotecreateMaterialByUrl, getMaterial, listMaterials, moveMaterials, trashMaterial, publishMaterial, createMaterialGroup, updateMaterialGroup, ungroupMaterialGrouplistCrafts, getCraft, publishCraft, trashCraft, createCraftGroup, updateCraftGroup, ungroupCraftGroup, moveCraftscreatePick, updatePick, trashPickcreateDocument, createDocumentByMarkdown, updateDocumentcreateSlides, updateSlidescreateChat, sendMessage, listChats, getChat, listMessagescreateSkill, getSkill, updateSkill, installSkill, trashSkillsearch, webSearchcreateScheduledTask, updateScheduledTask, trashScheduledTask, getScheduledTask, listScheduledTasksUse this three-step pattern when the exact API is unclear:
Example:
export PATH="$HOME/.local/bin:$PATH"
export YOUMIND_API_KEY="..."
youmind search board
youmind info createBoard
youmind call createBoard '{"name":"Research Notes","icon":{"name":"folder","color":"#3B82F6"}}'
If the exact API is already known and simple, it is fine to call it directly.
youmind search [query]
Use this to discover endpoint names by keyword.
Examples:
youmind search
youmind search board
youmind search note
youmind search material
youmind search craft
youmind search pick
youmind search document
youmind search slides
youmind search chat
youmind search skill
youmind search scheduled
youmind info <apiName>
Use this before writes or whenever required fields are uncertain.
Examples:
youmind info createBoard
youmind info createNote
youmind info createMaterialByUrl
youmind info createDocumentByMarkdown
youmind info createSlides
youmind info createChat
youmind call <apiName> [params]
Supported parameter styles:
# Key-value pairs
youmind call createBoard --name "My Board" --icon.name folder --icon.color "#3B82F6"
# JSON string
youmind call createBoard '{"name":"My Board","icon":{"name":"folder","color":"#3B82F6"}}'
# Stdin JSON
echo '{"name":"My Board","icon":{"name":"folder","color":"#3B82F6"}}' | youmind call createBoard
Use this section as a quick task-to-CLI map.
Typical tasks:
Discovery commands:
youmind search board
Common board APIs:
youmind info listBoards
youmind info getBoard
youmind info createBoard
youmind info updateBoard
youmind info trashBoard
youmind info getDefaultBoard
Examples:
youmind call createBoard '{"name":"My Board","icon":{"name":"folder","color":"#3B82F6"}}'
youmind call getBoard '{"id":"<board-id>"}'
Notes:
createBoard currently requires either prompt or name plus a valid icon.Typical tasks:
Discovery commands:
youmind search note
Known note APIs:
youmind info createNote
youmind info updateNote
Examples:
youmind call createNote '{"content":"hello"}'
youmind call createNote '{"boardId":"<board-id>","title":"My Note","content":"hello","genTitle":false}'
Notes:
content is required.boardId is optional if the note should live inside a board.genTitle can be used for AI-generated titles.createNote has been verified working.Typical tasks:
Discovery commands:
youmind search material
Known material APIs:
youmind info createMaterialByUrl
youmind info getMaterial
youmind info listMaterials
youmind info createMaterialGroup
youmind info updateMaterialGroup
youmind info ungroupMaterialGroup
youmind info moveMaterials
youmind info trashMaterial
youmind info publishMaterial
Examples:
youmind call createMaterialByUrl '{"boardId":"<board-id>","url":"https://example.com"}'
youmind call listMaterials '{"boardId":"<board-id>"}'
Notes:
fetching.listMaterials has been verified working.listMaterials returns a board listing model as a list of board content entities.file, upload, pdf, and office did not expose a file-upload endpoint.Typical tasks:
Discovery commands:
youmind search craft
Known craft APIs:
youmind info listCrafts
youmind info getCraft
youmind info publishCraft
youmind info trashCraft
youmind info createCraftGroup
youmind info updateCraftGroup
youmind info ungroupCraftGroup
youmind info moveCrafts
When handling a craft request, search first if the exact API is not already obvious.
Typical tasks:
Discovery commands:
youmind search pick
Known pick APIs:
youmind info createPick
youmind info updatePick
youmind info trashPick
Typical tasks:
Discovery commands:
youmind search document
Known document APIs:
youmind info createDocument
youmind info createDocumentByMarkdown
youmind info updateDocument
Use createDocumentByMarkdown when the user already has markdown content and wants a document quickly.
Typical tasks:
Discovery commands:
youmind search slides
Known slide APIs:
youmind info createSlides
youmind info updateSlides
Typical tasks:
Discovery commands:
youmind search chat
youmind search message
Known chat APIs:
youmind info createChat
youmind info sendMessage
youmind info listChats
youmind info getChat
youmind info listMessages
Typical tasks:
Discovery commands:
youmind search skill
Known skill APIs:
youmind info createSkill
youmind info getSkill
youmind info updateSkill
youmind info installSkill
youmind info trashSkill
Typical tasks:
Discovery commands:
youmind search scheduled
youmind search task
Known scheduled-task APIs:
youmind info createScheduledTask
youmind info updateScheduledTask
youmind info trashScheduledTask
youmind info getScheduledTask
youmind info listScheduledTasks
Typical tasks:
Known search APIs:
youmind info search
youmind info webSearch
If the user asks for a YouMind action but the API name is unknown, start from keyword discovery.
Examples:
youmind search library
youmind search content
youmind search board
youmind search note
youmind search material
youmind search document
Then inspect with youmind info <apiName> before calling.
For unfamiliar or risky tasks:
youmind search <keyword>
youmind info <apiName>
youmind call <readApi> '{...}'
Only perform writes after understanding the schema.
When the API is already known and low risk, call it directly.
Examples:
youmind call getBoard '{"id":"<board-id>"}'
youmind call createNote '{"boardId":"<board-id>","content":"..."}'
youmind call listMaterials '{"boardId":"<board-id>"}'
Before operations like trashBoard, trashMaterial, trashPick, trashCraft, trashSkill, or trashScheduledTask, confirm with the user unless they were already explicit.
Preferred local shell style:
export YOUMIND_API_KEY="sk-ym-..."
Or pass directly:
youmind --api-key "sk-ym-..." search board
Prefer environment variables in shell sessions to reduce accidental key exposure in repeated commands.
--api-key <key> API key
--base-url <url> API endpoint, default https://youmind.com
youmind search.youmind info.