← All skills
Tencent SkillHub · AI

obsidian-curator

Manage Obsidian vaults via LiveSync CouchDB — capture notes, AI-enrich and file them, manage tasks, audit and tidy vault structure. Use when working with Obs...

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

Manage Obsidian vaults via LiveSync CouchDB — capture notes, AI-enrich and file them, manage tasks, audit and tidy vault structure. Use when working with Obs...

⬇ 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

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
0.1.1

Documentation

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

obsidian-curator

Manage Obsidian vaults through the CouchDB database that powers Obsidian LiveSync. Capture, process, file, audit, tidy, and manage tasks — all via CLI or Node.js API. Prerequisites: CouchDB with LiveSync configured, E2EE disabled.

Security & Trust

Open source: github.com/philmossman/obsidian-curator (MIT) npm provenance: Published via GitHub Actions OIDC with Sigstore attestation — cryptographically verifiable build provenance No lifecycle scripts: No preinstall, install, or postinstall scripts — npm install only copies files Minimal dependencies: Only nano (CouchDB client) and date-fns (date parsing) Local network only: Connects to your CouchDB instance (user-configured host/port). No external telemetry, no phone-home, no data leaves your network Credentials: Stored locally in ~/.obsidian-curator/config.json — never transmitted except to your own CouchDB E2EE note: LiveSync E2EE must be disabled because the tool reads/writes vault documents directly via CouchDB. This is a LiveSync architectural requirement, not a security compromise by this tool

Setup

Run the interactive wizard — it tests the CouchDB connection live: obsidian-curator init Configures: CouchDB connection, vault structure preset (PARA/Zettelkasten/Johnny Decimal/Flat/Custom), AI provider (OpenAI/Anthropic/Ollama/None), task projects. Config location: ~/.obsidian-curator/config.json

Capture (no AI needed)

obsidian-curator capture "Quick thought about project X" obsidian-curator capture "Meeting notes from standup" --source meeting

Process inbox (AI required)

Enrich inbox notes with tags, summary, and suggested folder: obsidian-curator process obsidian-curator process --limit 5 --dry-run obsidian-curator process --force # re-process already-processed notes

File notes (AI required)

Route processed notes to canonical vault folders: obsidian-curator file obsidian-curator file --dry-run --min-confidence 0.8

Audit (no AI needed)

Check vault structure against configured canonical folders: obsidian-curator audit

Tidy (AI optional)

Find duplicates, structure violations, dead notes. With AI, ambiguous cases are triaged automatically: obsidian-curator tidy --dry-run obsidian-curator tidy --checks dupes,stubs

Tasks (no AI needed)

obsidian-curator tasks # list open tasks obsidian-curator tasks --project Work --priority high obsidian-curator task "call dentist next Tuesday" # create task (parses dates, priority, project) obsidian-curator done "dentist" # mark done by partial title match

Config

obsidian-curator config show obsidian-curator config set ai.provider ollama obsidian-curator config set vault.host 192.168.1.100

Programmatic API

const { VaultClient, Curator, createAIAdapter, loadConfig } = require('obsidian-curator'); const config = loadConfig(); const vault = new VaultClient(config.vault); await vault.ping(); const ai = createAIAdapter(config); const curator = new Curator({ vault, ai, config }); await curator.capture('Quick thought'); await curator.process({ limit: 5 }); await curator.file({ dryRun: true }); await curator.audit(); await curator.tidy({ checks: ['dupes', 'stubs'], dryRun: true }); const tasks = await curator.tasks({ status: 'open', project: 'Work' }); await curator.createTask('call Alice next Friday'); await curator.taskBrief(); // markdown summary

AI Providers

ProviderCostPrivacySetupnoneFreeLocalDefault — rule-based features onlyollamaFreeLocalconfig set ai.provider ollama + model nameopenaiPay-per-useCloudconfig set ai.provider openai + API keyanthropicPay-per-useCloudconfig set ai.provider anthropic + API keyCustom/OpenRouterVariesVariesUse openai provider with custom baseUrl

Vault Structure Presets

PARA: inbox → Projects / Areas / Resources / Archives Zettelkasten: inbox → Slipbox / References / Projects / Archives Johnny Decimal: inbox → numbered category folders (00-09, 10-19, ...) Flat: inbox only, no enforced structure Custom: define your own canonical folders

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc