# Send Obsidian Sync 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/obsidian-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/sync-server.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "obsidian-sync",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:45:04.911Z",
      "expiresAt": "2026-05-07T13:45:04.911Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-sync",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-sync",
        "contentDisposition": "attachment; filename=\"obsidian-sync-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "obsidian-sync"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Obsidian Sync Server

A secure file sync server for two-way synchronization between Clawdbot and Obsidian.

📦 This skill is part of obsidian-openclaw
An Obsidian plugin that lets you chat with your Clawdbot agent and sync notes between your vault and the agent's workspace.

### Quick Start

SYNC_TOKEN="your-gateway-token" node scripts/sync-server.mjs

### Configuration

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

### Security

Only configured subdirectories are accessible
Path traversal (../) is blocked
All requests require Authorization: Bearer <token>
Bind to localhost; expose via Tailscale serve for remote access

### API Endpoints

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)

### Exposing via Tailscale

tailscale serve --bg --https=18790 http://localhost:18790

### User systemd service

mkdir -p ~/.config/systemd/user

cat > ~/.config/systemd/user/openclaw-sync.service << 'EOF'
[Unit]
Description=OpenClaw Sync Server
After=network.target

[Service]
Type=simple
Environment=SYNC_TOKEN=your-token-here
Environment=SYNC_WORKSPACE=/data/clawdbot
Environment=SYNC_ALLOWED_PATHS=notes,memory
ExecStart=/usr/bin/node /path/to/skills/obsidian-sync/scripts/sync-server.mjs
Restart=on-failure
RestartSec=5

[Install]
WantedBy=default.target
EOF

systemctl --user daemon-reload
systemctl --user enable --now openclaw-sync
loginctl enable-linger $USER  # Start on boot

### Obsidian Plugin

This skill provides the backend for the OpenClaw Obsidian plugin:

github.com/AndyBold/obsidian-openclaw

The plugin provides:

💬 Chat sidebar — Talk to your Clawdbot agent from Obsidian
📁 File actions — Create, edit, delete notes via conversation
🔄 Two-way sync — Keep notes synchronized between vault and agent
🔒 Secure storage — OS keychain integration for tokens
📋 Audit logging — Track all file operations

Install the plugin via BRAT using: AndyBold/obsidian-openclaw
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AndyBold
- Version: 1.0.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-30T13:45:04.911Z
- Expires at: 2026-05-07T13:45:04.911Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/obsidian-sync)
- [Send to Agent page](https://openagent3.xyz/skills/obsidian-sync/agent)
- [JSON manifest](https://openagent3.xyz/skills/obsidian-sync/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/obsidian-sync/agent.md)
- [Download page](https://openagent3.xyz/downloads/obsidian-sync)