Skip to content

Skill

Desktop only

Skills require the Dessix desktop app to be running and are only available on desktop.

The Actions and Scenes you create in Dessix are more than prompts — they can serve as skills that AI clients (like Cursor, Claude Code, and OpenClaw) call directly.

A single MCP tool performs one operation. A skill chains multiple operations into a complete workflow, letting AI drive a task within the boundaries you define.

MCP tools are independent single operations; skills chain them into goal-driven combined workflows

How skills relate to MCP

LayerWhat it doesExample
MCP toolSingle read or write operationdessix_search_blocks, dessix_create_block
SkillMulti-step composition toward a clear goalDistill a discussion into a reusable Action

The MCP page covers individual tools. This page focuses on combining them to achieve more.

Enable skills on different platforms

Dessix provides a skill connector (@dessix/skill) that lets AI clients call the Dessix desktop MCP bridge directly via a local socket — no extra JSON-RPC middleware required.

Choose the installation method for your platform.

Prerequisites

  • Node.js v18+
  • Dessix desktop app running (the bridge is served by the Electron process)
  • (Optional) Set the DESSIX_MCP_BRIDGE_ENDPOINT environment variable to override the default socket path

Cursor / Claude Code

Both Cursor and Claude Code load Dessix skills from a skill folder.

bash
npx skills add dessix-skill
bash
git clone https://github.com/DessixIO/skill.git
cd skill
bash
# Copy SKILL.md, scripts/, and references/ into your project directory

After installation, verify the connection:

bash
node scripts/dessix-bridge.mjs health

OpenClaw

OpenClaw manages and distributes skills through the ClawHub skill registry.

Install OpenClaw

bash
curl -fsSL https://openclaw.ai/install.sh | bash
powershell
iwr -useb https://openclaw.ai/install.ps1 | iex
bash
npm install -g openclaw@latest
openclaw onboard --install-daemon

Install the Dessix skill

bash
npm i -g clawhub
clawhub install dessix-skill
bash
git clone https://github.com/DessixIO/skill.git ./skills/dessix-skill
bash
git clone https://github.com/DessixIO/skill.git ~/.openclaw/skills/dessix-skill

OpenClaw skill loading precedence: ./skills (workspace) > ~/.openclaw/skills (global) > bundled skills. Start a new session after installation for the skill to take effect.

Three typical workflows

Skill discovery

Goal: See what reusable Actions and Scenes exist in your current workspace.

StepWhat you sayWhat AI does
1Show me the current workspaceRetrieves workspace info
2List all Actions and ScenesSearches blocks by type
3Summarize each skill for meReads each skill's content and outputs a catalog

Useful when onboarding to a new project or reviewing existing knowledge.

Distill a discussion into a skill

Goal: Turn insights from a Topic discussion into a new, reusable Action or Scene.

StepWhat you sayWhat AI does
1Extract the context from my "Growth Strategy" topicRetrieves the full conversation history
2Find related notes to supplement itSearches by meaning for supporting content
3Create a "Growth Analysis" action based on all of thisDrafts and creates the Action

Insights no longer stay buried in conversations — they become repeatable AI behaviors.

Skill maintenance

Goal: Review and refresh existing Actions and Scenes to keep them accurate.

StepWhat you sayWhat AI does
1Find all Actions related to "weekly report"Searches for matching Action blocks
2Check if this Action's content is still validReads and analyzes the current content
3Change the output format to a Markdown tableUpdates the Action content

Regular maintenance reduces drift between what a skill says and what you actually need.

Things to keep in mind

  • Start with read-only workflows (skill discovery) to confirm everything works before writing.
  • Before creating or editing an Action or Scene, confirm the target workspace and content scope.
  • The skill connector connects to the Dessix desktop app directly — no separate MCP configuration required.

Build with ❤️ by Dessix