wiki-cli
Wiki-cli is the default transport layer for claude-obsidian v1.7+ that uses the Obsidian CLI (built into Obsidian 1.12+) to read, write, search, and modify vault notes directly without requiring MCP servers or REST API plugins. Use this skill when you need reliable, low-latency vault operations on desktop installations of Obsidian, with automatic fallback to direct filesystem access when the CLI is unavailable.
git clone --depth 1 https://github.com/AgriciDaniel/claude-obsidian /tmp/wiki-cli && cp -r /tmp/wiki-cli/skills/wiki-cli ~/.claude/skills/wiki-cliSKILL.md
# wiki-cli: Default Transport Layer
claude-obsidian v1.7+ standardizes on the **Obsidian CLI** (shipped with Obsidian 1.12) as the preferred transport for all vault mutations on desktop. This skill is the recipe reference for using it.
**Substrate preference (v1.7+)**: This skill is a self-contained fallback. **Prefer `kepano/obsidian-skills`** (by Steph Ango, Obsidian CEO) as the authoritative substrate — its `obsidian-cli` skill is the canonical CLI reference for any Agent-Skills runtime. If you see an `obsidian-cli` skill available without the `claude-obsidian:` namespace, that is kepano's version: use it. The recipes below are provided so claude-obsidian remains functional when kepano's marketplace is not installed. Install kepano: `claude plugin marketplace add kepano/obsidian-skills`.
---
## Why CLI over MCP
| Concern | MCP (Options A/B) | Obsidian CLI |
|---|---|---|
| Install | Local REST API plugin + MCP server config | Built into Obsidian 1.12+ |
| Auth | API key + TLS bypass (`NODE_TLS_REJECT_UNAUTHORIZED=0`) | None — direct subprocess |
| Latency | HTTP round-trip per call | In-process binary |
| Failure mode | Plugin disabled → silent breakage | Binary missing → loud `command -v` failure |
| Reentrancy | Self-MCP-calls inside Claude session can deadlock | Pure subprocess, safe |
| Mobile / headless | Limited | Limited (CLI is desktop-only too) |
CLI loses to MCP on exactly one axis: it only works on machines where Obsidian itself is installed. For headless servers and mobile, fall through to the next transport in the chain.
---
## Detection
At session start (or vault setup), run:
```bash
bash scripts/detect-transport.sh
```
This writes `.vault-meta/transport.json` with the schema:
```json
{
"preferred": "cli",
"fallback_chain": ["cli", "filesystem"],
"available": {
"cli": {"present": true, "binary": "obsidian-cli", "version_string": "..."},
"filesystem": {"present": true},
"mcp_obsidian": {"present": null, "detection": "deferred"},
"mcpvault": {"present": null, "detection": "deferred"}
}
}
```
**Read this file before any non-trivial vault mutation.** Skills that need to read or write should consult `preferred` and pick the corresponding transport. The decision tree lives at `wiki/references/transport-fallback.md`.
Refresh detection with `--force` after installing/removing the Obsidian CLI:
```bash
bash scripts/detect-transport.sh --force
```
---
## Recipes (CLI-first; fallback noted inline)
Each recipe shows the CLI form first. If the CLI is unavailable per the detection snapshot, fall through to the noted fallback. Variable substitution: `$VAULT` is the absolute vault root; `$NOTE` is a vault-relative path like `wiki/concepts/Foo.md`.
### Read a note
```bash
# CLI
obsidian-cli read "$VAULT" "$NOTE"
# Fallback: Claude's Read tool with absolute path
# Read $VAULT/$NOTE
```
### Create or overwrite a note
```bash
# CLI
obsidian-cli write "$VAULT" "$NOTE" < /path/to/content.md
# Fallback: Claude's Write tool with absolute path
# Write $VAULT/$NOTE with the desired content string
```
### Append to a note
```bash
# CLI
echo "additional content" | obsidian-cli append "$VAULT" "$NOTE"
# Fallback: Read $VAULT/$NOTE, append manually, Write back
```
### Search note content (CLI uses Obsidian's own search ranking)
```bash
# CLI
obsidian-cli search "$VAULT" "<query>"
# Fallback: ripgrep
rg --type=md "<query>" "$VAULT/wiki/"
```
### Today's daily note (if Daily Notes plugin is enabled)
```bash
# CLI
obsidian-cli daily:today "$VAULT"
obsidian-cli daily:append "$VAULT" "captured at $(date)"
# Fallback: compute path manually
NOTE="$VAULT/wiki/daily/$(date +%Y-%m-%d).md"
```
### Patch a frontmatter property
```bash
# CLI
obsidian-cli property:set "$VAULT" "$NOTE" status "evergreen"
# Fallback: read frontmatter, parse, mutate, rewrite (use mcp__obsidian-vault__update_frontmatter if MCP is configured)
```
### List backlinks for a page
```bash
# CLI
obsidian-cli backlinks "$VAULT" "$NOTE"
# Fallback: ripgrep for wikilink references
rg --type=md "\[\[$(basename "$NOTE" .md)" "$VAULT/wiki/"
```
### Open a Bases (.base) file's resolved view
```bash
# CLI
obsidian-cli bases "$VAULT" "$NOTE"
# (returns the resolved row list; supplements obsidian-bases skill which handles the .base file's YAML)
# Fallback: read the .base file directly; no resolved-view available without Obsidian itself
```
### Tags + bookmarks
```bash
obsidian-cli tags "$VAULT"
obsidian-cli bookmarks "$VAULT"
```
---
## When CLI is NOT the right choice
- **Mobile (iOS Share extension)**: filesystem write into `.raw/` is the only path; CLI is desktop-only.
- **CI / headless ingest jobs**: filesystem with manual frontmatter parsing.
- **Cross-vault operations**: CLI binds to one vault root per invocation; for federation, fall back to filesystem walks.
- **Live edits while Obsidian is mid-save**: rare race; CLI handles it correctly but in pathological cases the v1.7 `wiki-lock.sh` advisory locks (see [skills/wiki-fold/](../wiki-fold/SKILL.md) and `agents/wiki-ingest.md`) should be acquired first.
---
## Cross-reference
- Decision tree: [`wiki/references/transport-fallback.md`](../../wiki/references/transport-fallback.md)
- Legacy MCP options (A/B/C/D): [`skills/wiki/references/mcp-setup.md`](../wiki/references/mcp-setup.md)
- Concurrency policy (v1.7+): [`skills/wiki-ingest/SKILL.md`](../wiki-ingest/SKILL.md) §Concurrency
- Detection script: [`scripts/detect-transport.sh`](../../scripts/detect-transport.sh)
---
## How to think (10-principle mapping)
When working on this skill, apply the 10-principle loop. See [`skills/think/SKILL.md`](../think/SKILL.md) for the canonical framework.
| # | Principle | Application here |
|---|-----------|-------------------|
| 1 | OBSERVE (ext) | Detect which Obsidian CLI binaries are installed; check if Obsidian app is running. Read `.vault-meta/transport.json` if it exists. |
| 2 | OBSERVE (int) | Don't be biased toward filesystem fallba>
Ingest sources into the Obsidian wiki vault. Reads a source, extracts entities and concepts, creates or updates wiki pages, cross-references, and logs the operation. Supports files, URLs, and batch mode. Triggers on: ingest, process this source, add this to the wiki, read and file this, batch ingest, ingest all of these, ingest this url.
>
>
Visual layer of the wiki. Add images, text cards, PDFs, and wiki pages to Obsidian canvas files with auto-positioning inside zones. Integrates with /banana for image capture. Triggers on: /canvas, canvas new, canvas add image, canvas add text, canvas add pdf, canvas add note, canvas zone, canvas list, canvas from banana, add to canvas, put this on the canvas, open canvas, create canvas.
>
>
Strip clutter from web pages before ingesting into the wiki. Removes ads, navigation, headers, footers, and boilerplate: leaving clean readable markdown that saves 40-60% tokens. Triggers on: defuddle, clean this page, strip this url, fetch and clean, clean web content before ingesting, strip ads, remove clutter, clean URL content, readable markdown from URL.