AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Obsidian Cli

skill-lionellau-capture-concept-obsidian-cli · by lionellau

Required companion skill for safe Obsidian vault operations: resolving vault paths, searching notes, creating notes, updating YAML properties, appending logs, validating backlinks, and using Obsidian URI/CLI helpers when available. Use whenever an agent needs to operate on an Obsidian vault.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-lionellau-capture-concept-obsidian-cli

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-lionellau-capture-concept-obsidian-cli)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Obsidian Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Obsidian CLI

Use this skill for safe operations on a local Obsidian vault. The vault is a filesystem directory containing .obsidian/.

Operating Model

  1. Resolve the vault path from the user, environment, or calling skill config.
  2. Verify the path exists and contains .obsidian/.
  3. Prefer rg for search.
  4. Use an available obsidian command or Obsidian URI only when it exists and

the command shape is known.

  1. Fall back to direct file operations when CLI helpers are unavailable.
  2. Never edit outside the resolved vault.

Tool Detection

command -v obsidian >/dev/null && echo "OBSIDIAN_COMMAND=true" || echo "OBSIDIAN_COMMAND=false"
command -v rg >/dev/null && echo "RG=true" || echo "RG=false"

Search

Preferred:

rg -n --glob '*.md' "query|alias|topic" "$VAULT"

Fallback:

find "$VAULT" -name '*.md' -not -path '*/.trash/*'

If an obsidian command supports search in the environment, it may be used, but do not assume a universal syntax without testing it first.

Create Notes

Create parent directories as needed and write Markdown files directly. Preserve existing files unless the user asked to update them.

mkdir -p "$VAULT/Concepts/software-engineering"

Prefer readable kebab-case filenames:

cache-key-mismatch.md

Update Properties

When a deterministic helper exists, use it. Otherwise edit YAML carefully:

  • preserve unrelated fields
  • preserve user content
  • update updated:
  • keep related: as a flat list of existing note slugs

Backlinks

Before adding a backlink, validate the target file exists. When adding a forward link, also add a reverse link if the related note has a clear structure and can be edited safely.

If the reverse edit is risky, skip it and report the reason.

Logs

Append capture operations to capture-log.md or wiki-log.md in the vault root. Use wikilinks for note references.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.