{
  "schemaVersion": "1.0",
  "item": {
    "slug": "obsidian-direct",
    "name": "Obsidian - read, search, write and edit direct to obsidian vault.",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/RuslanLanket/obsidian-direct",
    "canonicalUrl": "https://clawhub.ai/RuslanLanket/obsidian-direct",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/obsidian-direct",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-direct",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/obsidian_cli.py",
      "scripts/obsidian_search.py",
      ".clawhub/origin.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-direct",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T07:00:03.136Z",
      "expiresAt": "2026-05-13T07:00:03.136Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-direct",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-direct",
        "contentDisposition": "attachment; filename=\"obsidian-direct-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "obsidian-direct"
      },
      "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-direct"
    },
    "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-direct",
    "agentPageUrl": "https://openagent3.xyz/skills/obsidian-direct/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-direct/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-direct/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 Knowledge Base",
        "body": "Obsidian vault = folder with Markdown files + .obsidian/ config."
      },
      {
        "title": "Configuration",
        "body": "Vault Path: /home/ruslan/webdav/data/ruslain\nEnv: OBSIDIAN_VAULT=/home/ruslan/webdav/data/ruslain"
      },
      {
        "title": "CLI Usage",
        "body": "Scripts location: /home/ruslan/.openclaw/workspace/skills/obsidian/scripts\n\nNote: Global flags (--vault, --json) must come BEFORE the command.\n\nexport OBSIDIAN_VAULT=/home/ruslan/webdav/data/ruslain\ncd /home/ruslan/.openclaw/workspace/skills/obsidian/scripts\n\n# Search (fuzzy/phonetic) - uses ripgrep for speed\npython3 obsidian_search.py \"$OBSIDIAN_VAULT\" \"query\" --limit 10 --json\n\n# List notes\npython3 obsidian_cli.py --json list                    # all notes\npython3 obsidian_cli.py --json list \"Projects\"         # in folder\n\n# List folders\npython3 obsidian_cli.py --json folders\n\n# Read note\npython3 obsidian_cli.py --json read \"Note Name\"\n\n# Create note\npython3 obsidian_cli.py --json create \"Title\" -c \"Content\" -f \"Folder\" -t tag1 tag2\npython3 obsidian_cli.py --json create \"Title\" -c \"Content\" --auto-folder  # auto-detect folder\n\n# Edit note\npython3 obsidian_cli.py --json edit \"Note\" append -c \"Text to append\"\npython3 obsidian_cli.py --json edit \"Note\" prepend -c \"Text at start\"\npython3 obsidian_cli.py --json edit \"Note\" replace -c \"New full content\"\npython3 obsidian_cli.py --json edit \"Note\" replace-section -s \"Summary\" -c \"New section text\"\n\n# Tags\npython3 obsidian_cli.py --json tags\n\n# Links (incoming/outgoing)\npython3 obsidian_cli.py --json links \"Note Name\"\n\n# Suggest folder for content\npython3 obsidian_cli.py --json suggest-folder \"content text\" --title \"Note Title\""
      },
      {
        "title": "Workflow: Query Knowledge Base",
        "body": "Run obsidian_search.py with user query\nRead top results if needed for context\nFormulate answer based on found content\nCite sources: [[Note Name]]"
      },
      {
        "title": "Workflow: Save Note",
        "body": "If no folder specified → run suggest-folder or use --auto-folder\nCreate note with create command\nAdd appropriate tags based on content\nReport created path to user"
      },
      {
        "title": "Workflow: Edit Note by Prompt",
        "body": "User prompts like:\n\n\"Добавь резюме в конец заметки X\" → edit X append -c \"...\"\n\"Перепиши заметку Y более кратко\" → read note, rewrite, edit Y replace -c \"...\"\n\"Добавь секцию 'Выводы' в заметку Z\" → edit Z replace-section -s \"Выводы\" -c \"...\""
      },
      {
        "title": "Note Format",
        "body": "---\ncreated: 2024-01-15T10:30:00\nmodified: 2024-01-15T12:00:00\ntags:\n  - project\n  - work\n---\n\n# Title\n\nContent with [[wikilinks]] and #inline-tags."
      },
      {
        "title": "Wikilinks",
        "body": "[[Note Name]] — link to note\n[[Note Name|Display Text]] — link with alias\n[[Note Name#Section]] — link to section"
      },
      {
        "title": "Frontmatter Fields",
        "body": "Standard fields:\n\ncreated — creation timestamp\nmodified — last edit timestamp\ntags — list of tags\naliases — alternative names for linking"
      },
      {
        "title": "Search Behavior",
        "body": "obsidian_search.py uses:\n\nripgrep for fast initial filtering\nTitle matching (highest weight)\nTag matching\nFuzzy content search with phonetic transliteration (RU↔EN)\nReturns: path, title, score, matched context"
      }
    ],
    "body": "Obsidian Knowledge Base\n\nObsidian vault = folder with Markdown files + .obsidian/ config.\n\nConfiguration\nVault Path: /home/ruslan/webdav/data/ruslain\nEnv: OBSIDIAN_VAULT=/home/ruslan/webdav/data/ruslain\nCLI Usage\n\nScripts location: /home/ruslan/.openclaw/workspace/skills/obsidian/scripts\n\nNote: Global flags (--vault, --json) must come BEFORE the command.\n\nexport OBSIDIAN_VAULT=/home/ruslan/webdav/data/ruslain\ncd /home/ruslan/.openclaw/workspace/skills/obsidian/scripts\n\n# Search (fuzzy/phonetic) - uses ripgrep for speed\npython3 obsidian_search.py \"$OBSIDIAN_VAULT\" \"query\" --limit 10 --json\n\n# List notes\npython3 obsidian_cli.py --json list                    # all notes\npython3 obsidian_cli.py --json list \"Projects\"         # in folder\n\n# List folders\npython3 obsidian_cli.py --json folders\n\n# Read note\npython3 obsidian_cli.py --json read \"Note Name\"\n\n# Create note\npython3 obsidian_cli.py --json create \"Title\" -c \"Content\" -f \"Folder\" -t tag1 tag2\npython3 obsidian_cli.py --json create \"Title\" -c \"Content\" --auto-folder  # auto-detect folder\n\n# Edit note\npython3 obsidian_cli.py --json edit \"Note\" append -c \"Text to append\"\npython3 obsidian_cli.py --json edit \"Note\" prepend -c \"Text at start\"\npython3 obsidian_cli.py --json edit \"Note\" replace -c \"New full content\"\npython3 obsidian_cli.py --json edit \"Note\" replace-section -s \"Summary\" -c \"New section text\"\n\n# Tags\npython3 obsidian_cli.py --json tags\n\n# Links (incoming/outgoing)\npython3 obsidian_cli.py --json links \"Note Name\"\n\n# Suggest folder for content\npython3 obsidian_cli.py --json suggest-folder \"content text\" --title \"Note Title\"\n\nWorkflow: Query Knowledge Base\nRun obsidian_search.py with user query\nRead top results if needed for context\nFormulate answer based on found content\nCite sources: [[Note Name]]\nWorkflow: Save Note\nIf no folder specified → run suggest-folder or use --auto-folder\nCreate note with create command\nAdd appropriate tags based on content\nReport created path to user\nWorkflow: Edit Note by Prompt\n\nUser prompts like:\n\n\"Добавь резюме в конец заметки X\" → edit X append -c \"...\"\n\"Перепиши заметку Y более кратко\" → read note, rewrite, edit Y replace -c \"...\"\n\"Добавь секцию 'Выводы' в заметку Z\" → edit Z replace-section -s \"Выводы\" -c \"...\"\nNote Format\n---\ncreated: 2024-01-15T10:30:00\nmodified: 2024-01-15T12:00:00\ntags:\n  - project\n  - work\n---\n\n# Title\n\nContent with [[wikilinks]] and #inline-tags.\n\nWikilinks\n[[Note Name]] — link to note\n[[Note Name|Display Text]] — link with alias\n[[Note Name#Section]] — link to section\nFrontmatter Fields\n\nStandard fields:\n\ncreated — creation timestamp\nmodified — last edit timestamp\ntags — list of tags\naliases — alternative names for linking\nSearch Behavior\n\nobsidian_search.py uses:\n\nripgrep for fast initial filtering\nTitle matching (highest weight)\nTag matching\nFuzzy content search with phonetic transliteration (RU↔EN)\nReturns: path, title, score, matched context"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RuslanLanket/obsidian-direct",
    "publisherUrl": "https://clawhub.ai/RuslanLanket/obsidian-direct",
    "owner": "RuslanLanket",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/obsidian-direct",
    "downloadUrl": "https://openagent3.xyz/downloads/obsidian-direct",
    "agentUrl": "https://openagent3.xyz/skills/obsidian-direct/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-direct/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-direct/agent.md"
  }
}