{
  "schemaVersion": "1.0",
  "item": {
    "slug": "obsidian-sync",
    "name": "Obsidian Sync",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/AndyBold/obsidian-sync",
    "canonicalUrl": "https://clawhub.ai/AndyBold/obsidian-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/obsidian-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/sync-server.mjs"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/obsidian-sync"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/obsidian-sync",
    "agentPageUrl": "https://openagent3.xyz/skills/obsidian-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-sync/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Obsidian Sync Server",
        "body": "A secure file sync server for two-way synchronization between Clawdbot and Obsidian.\n\n📦 This skill is part of obsidian-openclaw\nAn Obsidian plugin that lets you chat with your Clawdbot agent and sync notes between your vault and the agent's workspace."
      },
      {
        "title": "Quick Start",
        "body": "SYNC_TOKEN=\"your-gateway-token\" node scripts/sync-server.mjs"
      },
      {
        "title": "Configuration",
        "body": "Environment VariableDefaultDescriptionSYNC_PORT18790Server portSYNC_BINDlocalhostBind addressSYNC_WORKSPACE/data/clawdbotRoot workspace pathSYNC_TOKEN(required)Auth token (use Gateway token)SYNC_ALLOWED_PATHSnotes,memoryComma-separated allowed subdirectories"
      },
      {
        "title": "Security",
        "body": "Only configured subdirectories are accessible\nPath traversal (../) is blocked\nAll requests require Authorization: Bearer <token>\nBind to localhost; expose via Tailscale serve for remote access"
      },
      {
        "title": "API Endpoints",
        "body": "MethodEndpointDescriptionGET/sync/statusHealth checkGET/sync/list?path=notesList markdown filesGET/sync/read?path=notes/x.mdRead file + metadataPOST/sync/write?path=notes/x.mdWrite file (conflict detection)"
      },
      {
        "title": "Exposing via Tailscale",
        "body": "tailscale serve --bg --https=18790 http://localhost:18790"
      },
      {
        "title": "User systemd service",
        "body": "mkdir -p ~/.config/systemd/user\n\ncat > ~/.config/systemd/user/openclaw-sync.service << 'EOF'\n[Unit]\nDescription=OpenClaw Sync Server\nAfter=network.target\n\n[Service]\nType=simple\nEnvironment=SYNC_TOKEN=your-token-here\nEnvironment=SYNC_WORKSPACE=/data/clawdbot\nEnvironment=SYNC_ALLOWED_PATHS=notes,memory\nExecStart=/usr/bin/node /path/to/skills/obsidian-sync/scripts/sync-server.mjs\nRestart=on-failure\nRestartSec=5\n\n[Install]\nWantedBy=default.target\nEOF\n\nsystemctl --user daemon-reload\nsystemctl --user enable --now openclaw-sync\nloginctl enable-linger $USER  # Start on boot"
      },
      {
        "title": "Obsidian Plugin",
        "body": "This skill provides the backend for the OpenClaw Obsidian plugin:\n\ngithub.com/AndyBold/obsidian-openclaw\n\nThe plugin provides:\n\n💬 Chat sidebar — Talk to your Clawdbot agent from Obsidian\n📁 File actions — Create, edit, delete notes via conversation\n🔄 Two-way sync — Keep notes synchronized between vault and agent\n🔒 Secure storage — OS keychain integration for tokens\n📋 Audit logging — Track all file operations\n\nInstall the plugin via BRAT using: AndyBold/obsidian-openclaw"
      }
    ],
    "body": "Obsidian Sync Server\n\nA secure file sync server for two-way synchronization between Clawdbot and Obsidian.\n\n📦 This skill is part of obsidian-openclaw\nAn Obsidian plugin that lets you chat with your Clawdbot agent and sync notes between your vault and the agent's workspace.\n\nQuick Start\nSYNC_TOKEN=\"your-gateway-token\" node scripts/sync-server.mjs\n\nConfiguration\nEnvironment Variable\tDefault\tDescription\nSYNC_PORT\t18790\tServer port\nSYNC_BIND\tlocalhost\tBind address\nSYNC_WORKSPACE\t/data/clawdbot\tRoot workspace path\nSYNC_TOKEN\t(required)\tAuth token (use Gateway token)\nSYNC_ALLOWED_PATHS\tnotes,memory\tComma-separated allowed subdirectories\nSecurity\nOnly configured subdirectories are accessible\nPath traversal (../) is blocked\nAll requests require Authorization: Bearer <token>\nBind to localhost; expose via Tailscale serve for remote access\nAPI Endpoints\nMethod\tEndpoint\tDescription\nGET\t/sync/status\tHealth check\nGET\t/sync/list?path=notes\tList markdown files\nGET\t/sync/read?path=notes/x.md\tRead file + metadata\nPOST\t/sync/write?path=notes/x.md\tWrite file (conflict detection)\nExposing via Tailscale\ntailscale serve --bg --https=18790 http://localhost:18790\n\nRunning as a Service\nUser systemd service\nmkdir -p ~/.config/systemd/user\n\ncat > ~/.config/systemd/user/openclaw-sync.service << 'EOF'\n[Unit]\nDescription=OpenClaw Sync Server\nAfter=network.target\n\n[Service]\nType=simple\nEnvironment=SYNC_TOKEN=your-token-here\nEnvironment=SYNC_WORKSPACE=/data/clawdbot\nEnvironment=SYNC_ALLOWED_PATHS=notes,memory\nExecStart=/usr/bin/node /path/to/skills/obsidian-sync/scripts/sync-server.mjs\nRestart=on-failure\nRestartSec=5\n\n[Install]\nWantedBy=default.target\nEOF\n\nsystemctl --user daemon-reload\nsystemctl --user enable --now openclaw-sync\nloginctl enable-linger $USER  # Start on boot\n\nObsidian Plugin\n\nThis skill provides the backend for the OpenClaw Obsidian plugin:\n\ngithub.com/AndyBold/obsidian-openclaw\n\nThe plugin provides:\n\n💬 Chat sidebar — Talk to your Clawdbot agent from Obsidian\n📁 File actions — Create, edit, delete notes via conversation\n🔄 Two-way sync — Keep notes synchronized between vault and agent\n🔒 Secure storage — OS keychain integration for tokens\n📋 Audit logging — Track all file operations\n\nInstall the plugin via BRAT using: AndyBold/obsidian-openclaw"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/AndyBold/obsidian-sync",
    "publisherUrl": "https://clawhub.ai/AndyBold/obsidian-sync",
    "owner": "AndyBold",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/obsidian-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/obsidian-sync",
    "agentUrl": "https://openagent3.xyz/skills/obsidian-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-sync/agent.md"
  }
}