youmind

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.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "youmind" with this command: npx skills add youmind-openlab/skills/youmind-openlab-skills-youmind

YouMind CLI Skill

Interact with the YouMind API to manage boards, crafts, notes, picks, and other content through the youmind CLI.

Installation

npm install -g @youmind-ai/cli

To verify installation: youmind (should print usage info).

If the command is not found, install it first before proceeding.

Authentication

Set the API key as environment variable:

export YOUMIND_API_KEY=sk-ym-xxx

Or pass per-command with --api-key sk-ym-xxx.

Commands

Three commands following a discover → inspect → execute workflow:

1. Search — Discover Available APIs

youmind search [query]
  • Without query: list all available API endpoints
  • With query: filter APIs by name or description (e.g., search board, search craft)
  • Output: JSON array of { name, summary } objects

2. Info — Inspect API Schema

youmind info <name>
  • Returns the full schema including request body and response schema
  • All $ref references are resolved inline
  • Use this to understand required parameters before calling an API

3. Call — Execute an API

youmind call <name> [params]

Requires authentication. Three ways to pass parameters:

# 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 createBoard

Workflow

To accomplish a task with the YouMind API:

  1. Search for relevant APIs: youmind search <keyword>
  2. Inspect the API schema: youmind info <apiName>
  3. Call the API with correct parameters: youmind call <apiName> [params]

Example: Create a board and add a note

# 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":"..."}'

Global Options

OptionDescription
--api-key <key>API key (overrides YOUMIND_API_KEY env var)
--endpoint <url>API endpoint (default: https://youmind.com)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.

Repository SourceNeeds Review
169.9K96Kanthropics
Coding

remotion-best-practices

Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.

Repository SourceNeeds Review
153.8K2.2Kremotion-dev
Coding

azure-ai

Service Use When MCP Tools CLI

Repository SourceNeeds Review
139.3K157microsoft
Coding

azure-deploy

AUTHORITATIVE GUIDANCE — MANDATORY COMPLIANCE

Repository SourceNeeds Review
138.9K157microsoft