โ† All skills
Tencent SkillHub ยท Productivity

Obsidian Sync

Sync files between Clawdbot workspace and Obsidian. Run the sync server to enable two-way file synchronization with the OpenClaw Obsidian plugin.

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

Sync files between Clawdbot workspace and Obsidian. Run the sync server to enable two-way file synchronization with the OpenClaw Obsidian plugin.

โฌ‡ 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
SKILL.md, scripts/sync-server.mjs

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

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

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
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/sync-server.mjs Scripts