{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/obsidian-linux",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-linux",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/obsidian-linux",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Obsidian",
        "body": "Obsidian vault = a normal folder on disk with Markdown files.\n\nVault structure (typical):\n\nNotes: *.md (plain text Markdown; edit with any editor)\nConfig: .obsidian/ (workspace + plugin settings; don't touch from scripts)\nCanvases: *.canvas (JSON)\nAttachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.)"
      },
      {
        "title": "Find active vault(s)",
        "body": "Obsidian desktop tracks vaults in a config file (source of truth):\n\nmacOS: ~/Library/Application Support/obsidian/obsidian.json\nLinux: ~/.config/obsidian/obsidian.json\n\nnotesmd-cli resolves vaults from that file; vault name is the folder name (path suffix)."
      },
      {
        "title": "Verify default vault",
        "body": "Always check before running commands:\n\nnotesmd-cli print-default --path-only 2>/dev/null && echo \"OK\" || echo \"NOT_SET\"\n\nIf NOT_SET, configure it:\n\nnotesmd-cli set-default \"VAULT_NAME\"\n\nDon't guess vault paths — read the config file or use print-default."
      },
      {
        "title": "Vault info",
        "body": "notesmd-cli print-default              # show default vault name + path\nnotesmd-cli print-default --path-only  # path only\nnotesmd-cli list                       # list notes and folders in vault\nnotesmd-cli list \"Folder\"              # list inside a folder"
      },
      {
        "title": "Search",
        "body": "notesmd-cli search \"query\"             # fuzzy search note names\nnotesmd-cli search-content \"query\"     # search inside notes (shows snippets + lines)"
      },
      {
        "title": "Read",
        "body": "notesmd-cli print \"path/note\"          # print note contents\nnotesmd-cli frontmatter \"path/note\"    # view or modify note frontmatter"
      },
      {
        "title": "Create & edit",
        "body": "notesmd-cli create \"Folder/Note\" --content \"...\" --open    # create note\nnotesmd-cli create \"Folder/Note\" --content \"...\" --append  # append to existing note\nnotesmd-cli create \"Folder/Note\" --content \"...\" --overwrite  # overwrite note\n\nNote: create requires Obsidian URI handler (Obsidian must be installed). Avoid hidden dot-folder paths."
      },
      {
        "title": "Move / delete",
        "body": "notesmd-cli move \"old/path/note\" \"new/path/note\"  # rename/move (updates [[wikilinks]])\nnotesmd-cli delete \"path/note\""
      },
      {
        "title": "Multi-vault",
        "body": "Add --vault \"Name\" to any command:\n\nnotesmd-cli print \"2025-01-10\" --vault \"Work\"\nnotesmd-cli search \"meeting\" --vault \"Personal\""
      },
      {
        "title": "Daily notes",
        "body": "notesmd-cli daily                      # open/create today's daily note\nnotesmd-cli daily --vault \"Work\"       # for a specific vault"
      },
      {
        "title": "Get current date (cross-platform)",
        "body": "date +%Y-%m-%d                         # today\n# Yesterday (GNU first, BSD fallback):\ndate -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d\n# Last Friday:\ndate -d \"last friday\" +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d\n# N days ago:\ndate -d \"3 days ago\" +%Y-%m-%d 2>/dev/null || date -v-3d +%Y-%m-%d"
      },
      {
        "title": "Append to daily note",
        "body": "# Journal entry\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- Did the thing\" --append\n\n# Task\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- [ ] Buy groceries\" --append\n\n# Timestamped log\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- $(date +%H:%M) Meeting notes here\" --append\n\n# With custom folder (e.g. Daily Notes plugin folder)\nnotesmd-cli create \"Daily Notes/$(date +%Y-%m-%d)\" --content \"- Entry\" --append"
      },
      {
        "title": "Read a daily note",
        "body": "notesmd-cli print \"$(date +%Y-%m-%d)\"  # today\nnotesmd-cli print \"$(date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d)\"  # yesterday\nnotesmd-cli print \"2025-01-10\"         # specific date"
      },
      {
        "title": "Common patterns",
        "body": "Create a new note with content:\n\nnotesmd-cli create \"Projects/My Project\" --content \"# My Project\\n\\nNotes here.\" --open\n\nFind and read a note:\n\nnotesmd-cli search \"meeting\"\nnotesmd-cli print \"path/from/search/result\"\n\nSafe rename preserving links:\n\nnotesmd-cli move \"old/note name\" \"new/folder/note name\"\n\nSearch inside notes:\n\nnotesmd-cli search-content \"TODO\"\nnotesmd-cli search-content \"project alpha\"\n\nPrefer direct file edits when appropriate (just edit the .md file); Obsidian picks them up automatically."
      }
    ],
    "body": "Obsidian\n\nObsidian vault = a normal folder on disk with Markdown files.\n\nVault structure (typical):\n\nNotes: *.md (plain text Markdown; edit with any editor)\nConfig: .obsidian/ (workspace + plugin settings; don't touch from scripts)\nCanvases: *.canvas (JSON)\nAttachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.)\nSetup\nFind active vault(s)\n\nObsidian desktop tracks vaults in a config file (source of truth):\n\nmacOS: ~/Library/Application Support/obsidian/obsidian.json\nLinux: ~/.config/obsidian/obsidian.json\n\nnotesmd-cli resolves vaults from that file; vault name is the folder name (path suffix).\n\nVerify default vault\n\nAlways check before running commands:\n\nnotesmd-cli print-default --path-only 2>/dev/null && echo \"OK\" || echo \"NOT_SET\"\n\n\nIf NOT_SET, configure it:\n\nnotesmd-cli set-default \"VAULT_NAME\"\n\n\nDon't guess vault paths — read the config file or use print-default.\n\nnotesmd-cli quick reference\nVault info\nnotesmd-cli print-default              # show default vault name + path\nnotesmd-cli print-default --path-only  # path only\nnotesmd-cli list                       # list notes and folders in vault\nnotesmd-cli list \"Folder\"              # list inside a folder\n\nSearch\nnotesmd-cli search \"query\"             # fuzzy search note names\nnotesmd-cli search-content \"query\"     # search inside notes (shows snippets + lines)\n\nRead\nnotesmd-cli print \"path/note\"          # print note contents\nnotesmd-cli frontmatter \"path/note\"    # view or modify note frontmatter\n\nCreate & edit\nnotesmd-cli create \"Folder/Note\" --content \"...\" --open    # create note\nnotesmd-cli create \"Folder/Note\" --content \"...\" --append  # append to existing note\nnotesmd-cli create \"Folder/Note\" --content \"...\" --overwrite  # overwrite note\n\n\nNote: create requires Obsidian URI handler (Obsidian must be installed). Avoid hidden dot-folder paths.\n\nMove / delete\nnotesmd-cli move \"old/path/note\" \"new/path/note\"  # rename/move (updates [[wikilinks]])\nnotesmd-cli delete \"path/note\"\n\nMulti-vault\n\nAdd --vault \"Name\" to any command:\n\nnotesmd-cli print \"2025-01-10\" --vault \"Work\"\nnotesmd-cli search \"meeting\" --vault \"Personal\"\n\nDaily notes\nnotesmd-cli daily                      # open/create today's daily note\nnotesmd-cli daily --vault \"Work\"       # for a specific vault\n\nGet current date (cross-platform)\ndate +%Y-%m-%d                         # today\n# Yesterday (GNU first, BSD fallback):\ndate -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d\n# Last Friday:\ndate -d \"last friday\" +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d\n# N days ago:\ndate -d \"3 days ago\" +%Y-%m-%d 2>/dev/null || date -v-3d +%Y-%m-%d\n\nAppend to daily note\n# Journal entry\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- Did the thing\" --append\n\n# Task\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- [ ] Buy groceries\" --append\n\n# Timestamped log\nnotesmd-cli create \"$(date +%Y-%m-%d)\" --content \"- $(date +%H:%M) Meeting notes here\" --append\n\n# With custom folder (e.g. Daily Notes plugin folder)\nnotesmd-cli create \"Daily Notes/$(date +%Y-%m-%d)\" --content \"- Entry\" --append\n\nRead a daily note\nnotesmd-cli print \"$(date +%Y-%m-%d)\"  # today\nnotesmd-cli print \"$(date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d)\"  # yesterday\nnotesmd-cli print \"2025-01-10\"         # specific date\n\nCommon patterns\n\nCreate a new note with content:\n\nnotesmd-cli create \"Projects/My Project\" --content \"# My Project\\n\\nNotes here.\" --open\n\n\nFind and read a note:\n\nnotesmd-cli search \"meeting\"\nnotesmd-cli print \"path/from/search/result\"\n\n\nSafe rename preserving links:\n\nnotesmd-cli move \"old/note name\" \"new/folder/note name\"\n\n\nSearch inside notes:\n\nnotesmd-cli search-content \"TODO\"\nnotesmd-cli search-content \"project alpha\"\n\n\nPrefer direct file edits when appropriate (just edit the .md file); Obsidian picks them up automatically."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/TriplEight/obsidian-linux",
    "publisherUrl": "https://clawhub.ai/TriplEight/obsidian-linux",
    "owner": "TriplEight",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}