# Send Obsidian (Linux) 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-linux",
    "name": "Obsidian (Linux)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TriplEight/obsidian-linux",
    "canonicalUrl": "https://clawhub.ai/TriplEight/obsidian-linux",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/obsidian-linux",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-linux",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "obsidian-linux",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T06:57:18.928Z",
      "expiresAt": "2026-05-13T06:57:18.928Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-linux",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-linux",
        "contentDisposition": "attachment; filename=\"obsidian-linux-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "obsidian-linux"
      },
      "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-linux"
    },
    "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-linux",
    "downloadUrl": "https://openagent3.xyz/downloads/obsidian-linux",
    "agentUrl": "https://openagent3.xyz/skills/obsidian-linux/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-linux/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-linux/agent.md"
  }
}
```
## Documentation

### Obsidian

Obsidian vault = a normal folder on disk with Markdown files.

Vault structure (typical):

Notes: *.md (plain text Markdown; edit with any editor)
Config: .obsidian/ (workspace + plugin settings; don't touch from scripts)
Canvases: *.canvas (JSON)
Attachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.)

### Find active vault(s)

Obsidian desktop tracks vaults in a config file (source of truth):

macOS: ~/Library/Application Support/obsidian/obsidian.json
Linux: ~/.config/obsidian/obsidian.json

notesmd-cli resolves vaults from that file; vault name is the folder name (path suffix).

### Verify default vault

Always check before running commands:

notesmd-cli print-default --path-only 2>/dev/null && echo "OK" || echo "NOT_SET"

If NOT_SET, configure it:

notesmd-cli set-default "VAULT_NAME"

Don't guess vault paths — read the config file or use print-default.

### Vault info

notesmd-cli print-default              # show default vault name + path
notesmd-cli print-default --path-only  # path only
notesmd-cli list                       # list notes and folders in vault
notesmd-cli list "Folder"              # list inside a folder

### Search

notesmd-cli search "query"             # fuzzy search note names
notesmd-cli search-content "query"     # search inside notes (shows snippets + lines)

### Read

notesmd-cli print "path/note"          # print note contents
notesmd-cli frontmatter "path/note"    # view or modify note frontmatter

### Create & edit

notesmd-cli create "Folder/Note" --content "..." --open    # create note
notesmd-cli create "Folder/Note" --content "..." --append  # append to existing note
notesmd-cli create "Folder/Note" --content "..." --overwrite  # overwrite note

Note: create requires Obsidian URI handler (Obsidian must be installed). Avoid hidden dot-folder paths.

### Move / delete

notesmd-cli move "old/path/note" "new/path/note"  # rename/move (updates [[wikilinks]])
notesmd-cli delete "path/note"

### Multi-vault

Add --vault "Name" to any command:

notesmd-cli print "2025-01-10" --vault "Work"
notesmd-cli search "meeting" --vault "Personal"

### Daily notes

notesmd-cli daily                      # open/create today's daily note
notesmd-cli daily --vault "Work"       # for a specific vault

### Get current date (cross-platform)

date +%Y-%m-%d                         # today
# Yesterday (GNU first, BSD fallback):
date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d
# Last Friday:
date -d "last friday" +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d
# N days ago:
date -d "3 days ago" +%Y-%m-%d 2>/dev/null || date -v-3d +%Y-%m-%d

### Append to daily note

# Journal entry
notesmd-cli create "$(date +%Y-%m-%d)" --content "- Did the thing" --append

# Task
notesmd-cli create "$(date +%Y-%m-%d)" --content "- [ ] Buy groceries" --append

# Timestamped log
notesmd-cli create "$(date +%Y-%m-%d)" --content "- $(date +%H:%M) Meeting notes here" --append

# With custom folder (e.g. Daily Notes plugin folder)
notesmd-cli create "Daily Notes/$(date +%Y-%m-%d)" --content "- Entry" --append

### Read a daily note

notesmd-cli print "$(date +%Y-%m-%d)"  # today
notesmd-cli print "$(date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d)"  # yesterday
notesmd-cli print "2025-01-10"         # specific date

### Common patterns

Create a new note with content:

notesmd-cli create "Projects/My Project" --content "# My Project\\n\\nNotes here." --open

Find and read a note:

notesmd-cli search "meeting"
notesmd-cli print "path/from/search/result"

Safe rename preserving links:

notesmd-cli move "old/note name" "new/folder/note name"

Search inside notes:

notesmd-cli search-content "TODO"
notesmd-cli search-content "project alpha"

Prefer direct file edits when appropriate (just edit the .md file); Obsidian picks them up automatically.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: TriplEight
- Version: 1.2.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-05-06T06:57:18.928Z
- Expires at: 2026-05-13T06:57:18.928Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/obsidian-linux)
- [Send to Agent page](https://openagent3.xyz/skills/obsidian-linux/agent)
- [JSON manifest](https://openagent3.xyz/skills/obsidian-linux/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/obsidian-linux/agent.md)
- [Download page](https://openagent3.xyz/downloads/obsidian-linux)