โ† All skills
Tencent SkillHub ยท Productivity

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...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, eslint.config.mjs, package-lock.json, package.json, references/dessix-tools.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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

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

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":"<BLOCK_ID>"}' # compare current state, then patch: node scripts/dessix-bridge.mjs invoke --tool dessix_update_block --args '{"block_id":"<BLOCK_ID>","patch":{"title":"<UPDATED>","content":"<UPDATED>"}}'

Safety

Run read-only workflows first; escalate to writes only after validating block_id and result counts. Compact JSON only for --args.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Config1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/dessix-tools.md Docs
  • eslint.config.mjs Scripts
  • package-lock.json Config
  • package.json Config