← Back to Skills Marketplace
xiangst0816

Dessix Skill

by Hsiang · GitHub ↗ · v1.1.0
darwinlinuxwin32
397
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install dessix-skill
Description
Access a local Dessix desktop workspace by calling the Electron MCP bridge directly from Node.js (socket/pipe), without using MCP stdio JSON-RPC. Use when an...
README (SKILL.md)

Dessix Skill

Call the local Dessix bridge directly through a line-delimited JSON socket protocol.

Use scripts/dessix-bridge.mjs for all requests instead of re-implementing socket logic.

Workflow

  1. (Optional) Locate bundled MCP script path dynamically:
node scripts/dessix-bridge.mjs locate-mcp-script
  1. Verify the bridge is reachable:
node scripts/dessix-bridge.mjs health
  1. List workspaces:
node scripts/dessix-bridge.mjs invoke \
  --tool dessix_list_workspaces \
  --args '{}'
  1. Call target tool with JSON args:
node scripts/dessix-bridge.mjs invoke \
  --tool dessix_search_blocks \
  --args '{"query":"MCP","limit":10}'
  1. Read a Skill prompt from an Action/Scene block:
node scripts/dessix-bridge.mjs invoke \
  --tool dessix_get_skill \
  --args '{"block_id":"\x3CBLOCK_ID>"}'

Notes

  • Start Dessix desktop app first. The bridge is served by the Electron app process.
  • To discover bundled MCP script path at runtime, use node scripts/dessix-bridge.mjs locate-mcp-script.
    • Override auto-detection with DESSIX_MCP_SCRIPT_PATH (or --mcpScriptPath \x3Cpath>).
    • Current built-in candidates include:
      • macOS: /Applications/Dessix.app/Contents/Resources/electron/compiled/dessix-mcp.js
      • Windows: %LOCALAPPDATA%\\Programs\\Dessix\\resources\\electron\\compiled\\dessix-mcp.js
  • If DESSIX_MCP_BRIDGE_ENDPOINT is unset, this bridge client uses platform endpoint defaults:
    • macOS/Linux: ~/.dessix/mcp/dessix-mcp-bridge.sock
    • Windows: \\\\.\\pipe\\dessix-mcp-bridge
  • Use compact JSON for --args. Invalid JSON fails fast.
  • Read references/dessix-tools.md for tool names and argument templates.

Multi-Step Workflows

Combine tools to achieve higher-level goals. Validate outputs before any write.

Skill Discovery

Build a skill map for the current workspace (read-only):

node scripts/dessix-bridge.mjs invoke --tool dessix_get_current_workspace --args '{}'
node scripts/dessix-bridge.mjs invoke --tool dessix_search_blocks --args '{"types":["Action","Scene"],"limit":100}'
# for each block_id in results:
node scripts/dessix-bridge.mjs invoke --tool dessix_get_skill --args '{"block_id":"\x3CBLOCK_ID>"}'

Topic to Skill Draft

Turn a discussion thread into a reusable Action/Scene block:

node scripts/dessix-bridge.mjs invoke --tool dessix_get_topic_context --args '{"topic_id":"\x3CTHREAD_BLOCK_ID>"}'
node scripts/dessix-bridge.mjs invoke --tool dessix_search_blocks --args '{"semantic":"related skills and constraints","limit":20}'
# draft title+content from combined context, then:
node scripts/dessix-bridge.mjs invoke --tool dessix_create_block --args '{"patch":{"type":"Action","title":"\x3CTITLE>","content":"\x3CCONTENT>"}}'

Skill Maintenance

Find and refresh stale skill blocks:

node scripts/dessix-bridge.mjs invoke --tool dessix_search_blocks --args '{"query":"skill","types":["Action","Scene"],"limit":50}'
node scripts/dessix-bridge.mjs invoke --tool dessix_read_block --args '{"block_id":"\x3CBLOCK_ID>"}'
# compare current state, then patch:
node scripts/dessix-bridge.mjs invoke --tool dessix_update_block --args '{"block_id":"\x3CBLOCK_ID>","patch":{"title":"\x3CUPDATED>","content":"\x3CUPDATED>"}}'

Safety

  • Run read-only workflows first; escalate to writes only after validating block_id and result counts.
  • Compact JSON only for --args.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dessix-skill
  3. After installation, invoke the skill by name or use /dessix-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Fix SKILL.md frontmatter: use single-line JSON metadata for OpenClaw compatibility, correct OS platform identifiers (darwin/win32), remove redundant version field, update homepage URL
v1.0.0
Initial release
Metadata
Slug dessix-skill
Version 1.1.0
License
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Dessix Skill?

Access a local Dessix desktop workspace by calling the Electron MCP bridge directly from Node.js (socket/pipe), without using MCP stdio JSON-RPC. Use when an... It is an AI Agent Skill for Claude Code / OpenClaw, with 397 downloads so far.

How do I install Dessix Skill?

Run "/install dessix-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dessix Skill free?

Yes, Dessix Skill is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Dessix Skill support?

Dessix Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin, linux, win32).

Who created Dessix Skill?

It is built and maintained by Hsiang (@xiangst0816); the current version is v1.1.0.

💬 Comments