Loading...
Loading...
This skill should be used when interacting with the YouMind API to manage content such as boards, crafts, notes, picks, and materials. It provides installation and usage instructions for the youmind CLI, which enables searching, inspecting, and calling YouMind's OpenAPI endpoints.
npx skill4agent add youmind-openlab/skills youmindyoumindnpm install -g @youmind-ai/cliyoumindexport YOUMIND_API_KEY=sk-ym-xxx--api-key sk-ym-xxxyoumind search [query]search boardsearch craft{ name, summary }youmind info <name>$refyoumind call <name> [params]# Key-value pairs
youmind call createBoard --name "My Board"
# JSON string
youmind call createBoard '{"name":"My Board"}'
# Stdin pipe
echo '{"name":"My Board"}' | youmind call createBoardyoumind search <keyword>youmind info <apiName>youmind call <apiName> [params]# Find board-related APIs
youmind search board
# Check createBoard schema
youmind info createBoard
# Create the board
youmind call createBoard --name "Research Notes"
# Find note APIs and create a note
youmind search note
youmind info createNote
youmind call createNote '{"title":"First Note","boardId":"..."}'| Option | Description |
|---|---|
| API key (overrides |
| API endpoint (default: |