Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

cell-youmind细胞你的头脑

Agent Skill

cell-youmind 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,782

周安装

75

GitHub Stars

公开资料未说明

下载量

624
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cell-youmind(细胞你的头脑)
来源仓库:https://github.com/cellinlab/cell-youmind
安装命令:
openclaw skills install cell-youmind
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cell-youmind

简介

cell-youmind 集成 YouMind CLI 与 API,用于管理 boards、notes、materials 等资源。

  • 适用于知识工作者通过结构化笔记系统组织项目信息与创意素材。
  • 支持跨会话检索、材料整理与协作内容同步,强化个人工作流记忆。
  • 安装命令:openclaw skills install cell-youmind;需配置 YouMind 账户凭证与 API 权限。
  • 敏感信息存储应启用加密,避免在公共环境暴露访问密钥。

SKILL.md

name
youmind
description
Use this skill when working with YouMind through the official YouMind CLI and API. Trigger it for YouMind boards, notes, crafts, picks, materials, chats, documents, slides, skills, scheduled tasks, board content management, API discovery, schema inspection, or direct YouMind operations from OpenClaw. Especially relevant when the user wants to list or create boards, create notes, add URL materials, inspect board content, create documents or slides, interact with chats, manage YouMind skills, manage scheduled tasks, discover the correct API for a task, or call YouMind APIs safely.
metadata
{"openclaw":{"homepage":"https://github.com/cellinlab/cell-skills/tree/main/skills/youmind"}}

YouMind CLI Skill

Use the official youmind CLI as the default interface to YouMind.

This skill is optimized for OpenClaw usage, so it should help with both:

  • discovering what YouMind APIs exist
  • directly executing common YouMind tasks

Runtime Assumptions

  • Prefer the official CLI over older custom local wrappers.
  • The CLI is installed at ~/.local/bin/youmind in this environment.
  • If youmind is not in PATH, use:
export PATH="$HOME/.local/bin:$PATH"
  • Authenticate with YOUMIND_API_KEY or --api-key.
  • Prefer read-first exploration before writes when the exact API is not already known.

Current Local Status

This environment has already been validated.

Installed CLI:

npm install -g @youmind-ai/cli --prefix "$HOME/.local"

Verified working commands:

  • youmind search
  • youmind info
  • youmind call

Verified working APIs in this workspace:

  • createBoard
  • getBoard
  • createNote
  • createMaterialByUrl
  • listMaterials

Known APIs discovered from the installed CLI include:

  • Boards: listBoards, getBoard, createBoard, updateBoard, trashBoard, getDefaultBoard
  • Notes: createNote, updateNote
  • Materials: createMaterialByUrl, getMaterial, listMaterials, moveMaterials, trashMaterial, publishMaterial, createMaterialGroup, updateMaterialGroup, ungroupMaterialGroup
  • Crafts: listCrafts, getCraft, publishCraft, trashCraft, createCraftGroup, updateCraftGroup, ungroupCraftGroup, moveCrafts
  • Picks: createPick, updatePick, trashPick
  • Documents: createDocument, createDocumentByMarkdown, updateDocument
  • Slides: createSlides, updateSlides
  • Chats: createChat, sendMessage, listChats, getChat, listMessages
  • Skills: createSkill, getSkill, updateSkill, installSkill, trashSkill
  • Search: search, webSearch
  • Scheduled tasks: createScheduledTask, updateScheduledTask, trashScheduledTask, getScheduledTask, listScheduledTasks

Core Workflow

Use this three-step pattern when the exact API is unclear:

  1. Search for a relevant API
  2. Inspect the schema
  3. Execute the API call

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.

Command Reference

Search available APIs

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

Inspect API schema

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

Execute an API call

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

Functional Index

Use this section as a quick task-to-CLI map.

1. Boards

Typical tasks:

  • list boards
  • get board details
  • create a board
  • update a board
  • trash a board
  • get default board

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.

2. Notes

Typical tasks:

  • create a note
  • update a note
  • attach note to a board

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.

3. Materials

Typical tasks:

  • add a URL as material
  • inspect a material
  • list materials in a board
  • group or move materials
  • trash or publish materials

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:

  • URL material creation has been verified working.
  • A newly created web material may initially appear with a status like fetching.
  • listMaterials has been verified working.
  • listMaterials returns a board listing model as a list of board content entities.
  • No local file upload API has been discovered in the current official CLI surface. Searches for file, upload, pdf, and office did not expose a file-upload endpoint.

4. Crafts

Typical tasks:

  • list crafts in a board
  • inspect craft details
  • publish or trash crafts
  • group or move crafts

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.

5. Picks

Typical tasks:

  • create a pick
  • update a pick
  • trash a pick

Discovery commands:

youmind search pick

Known pick APIs:

youmind info createPick
youmind info updatePick
youmind info trashPick

6. Documents

Typical tasks:

  • create a document
  • create a document from Markdown
  • update a document

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.

7. Slides

Typical tasks:

  • create slides
  • update slides

Discovery commands:

youmind search slides

Known slide APIs:

youmind info createSlides
youmind info updateSlides

8. Chats

Typical tasks:

  • create a chat
  • send a follow-up message
  • list chats
  • inspect a chat
  • read messages

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

9. Skills

Typical tasks:

  • create a skill in YouMind
  • inspect a skill
  • update a skill
  • install a skill
  • uninstall or trash a skill

Discovery commands:

youmind search skill

Known skill APIs:

youmind info createSkill
youmind info getSkill
youmind info updateSkill
youmind info installSkill
youmind info trashSkill

10. Scheduled tasks

Typical tasks:

  • create a scheduled task
  • update a scheduled task
  • list scheduled tasks
  • get a scheduled task
  • trash a scheduled task

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

11. Search and research

Typical tasks:

  • semantic search across a board or library
  • web search for fresh external information

Known search APIs:

youmind info search
youmind info webSearch

12. General library or unknown tasks

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.

Recommended Operating Patterns

Safe read-first pattern

For unfamiliar or risky tasks:

youmind search <keyword>
youmind info <apiName>
youmind call <readApi> '{...}'

Only perform writes after understanding the schema.

Fast path for common operations

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>"}'

Destructive actions

Before operations like trashBoard, trashMaterial, trashPick, trashCraft, trashSkill, or trashScheduledTask, confirm with the user unless they were already explicit.

Authentication

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.

Global Options

--api-key <key>    API key
--base-url <url>   API endpoint, default https://youmind.com

OpenClaw Usage Guidance

  • If the task is known and already covered by a verified API, call it directly.
  • If the task is ambiguous, start with youmind search.
  • Before non-trivial writes, use youmind info.
  • Summarize discovered API options briefly before executing if there is any ambiguity.
  • Prefer the official CLI over older wrapper implementation.
  • Treat local file upload as unsupported unless the official CLI later exposes a file-upload API.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.37%
按下载量换算608

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills