# Send Dessix Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dessix-skill",
    "name": "Dessix Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/xiangst0816/dessix-skill",
    "canonicalUrl": "https://clawhub.ai/xiangst0816/dessix-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dessix-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dessix-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "eslint.config.mjs",
      "package-lock.json",
      "package.json",
      "references/dessix-tools.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dessix-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:26:49.128Z",
      "expiresAt": "2026-05-06T17:26:49.128Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dessix-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dessix-skill",
        "contentDisposition": "attachment; filename=\"dessix-skill-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dessix-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dessix-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dessix-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/dessix-skill",
    "agentUrl": "https://openagent3.xyz/skills/dessix-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dessix-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dessix-skill/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xiangst0816
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:26:49.128Z
- Expires at: 2026-05-06T17:26:49.128Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dessix-skill)
- [Send to Agent page](https://openagent3.xyz/skills/dessix-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/dessix-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dessix-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/dessix-skill)