{
  "schemaVersion": "1.0",
  "item": {
    "slug": "obsidian-daily",
    "name": "Obsidian Daily",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bastos/obsidian-daily",
    "canonicalUrl": "https://clawhub.ai/bastos/obsidian-daily",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/obsidian-daily",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-daily",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/obsidian-daily"
    },
    "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-daily",
    "agentPageUrl": "https://openagent3.xyz/skills/obsidian-daily/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-daily/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-daily/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 Daily Notes",
        "body": "Interact with Obsidian Daily Notes: create notes, append entries, read by date, and search content."
      },
      {
        "title": "Setup",
        "body": "Check if a default vault is configured:\n\nobsidian-cli print-default --path-only 2>/dev/null && echo \"OK\" || echo \"NOT_SET\"\n\nIf NOT_SET, ask the user:\n\nVault name (required)\nDaily notes folder (default: vault root, common: Daily Notes, Journal, daily)\nDate format (default: YYYY-MM-DD)\n\nConfigure the vault:\n\nobsidian-cli set-default \"VAULT_NAME\"\n\nObsidian Daily Notes plugin defaults:\n\nDate format: YYYY-MM-DD\nNew file location: Vault root\nTemplate file location: (none)"
      },
      {
        "title": "Date Handling",
        "body": "Get current date:\n\ndate +%Y-%m-%d\n\nCross-platform relative dates (GNU first, BSD fallback):\n\nReferenceCommandTodaydate +%Y-%m-%dYesterdaydate -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%dLast Fridaydate -d \"last friday\" +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d3 days agodate -d \"3 days ago\" +%Y-%m-%d 2>/dev/null || date -v-3d +%Y-%m-%dNext Mondaydate -d \"next monday\" +%Y-%m-%d 2>/dev/null || date -v+monday +%Y-%m-%d"
      },
      {
        "title": "Open/Create Today's Note",
        "body": "obsidian-cli daily\n\nOpens today's daily note in Obsidian, creating it from template if it doesn't exist."
      },
      {
        "title": "Append Entry",
        "body": "obsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"ENTRY_TEXT\")\" --append\n\nWith custom folder:\n\nobsidian-cli daily && obsidian-cli create \"Daily Notes/$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"ENTRY_TEXT\")\" --append"
      },
      {
        "title": "Read Note",
        "body": "Today:\n\nobsidian-cli print \"$(date +%Y-%m-%d).md\"\n\nSpecific date:\n\nobsidian-cli print \"2025-01-10.md\"\n\nRelative date (yesterday):\n\nobsidian-cli print \"$(date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d).md\""
      },
      {
        "title": "Search Content",
        "body": "obsidian-cli search-content \"TERM\""
      },
      {
        "title": "Search Notes",
        "body": "Interactive fuzzy finder:\n\nobsidian-cli search"
      },
      {
        "title": "Specific Vault",
        "body": "Add --vault \"NAME\" to any command:\n\nobsidian-cli print \"2025-01-10.md\" --vault \"Work\""
      },
      {
        "title": "Example Output",
        "body": "- Went to the doctor\n- [ ] Buy groceries\n- https://github.com/anthropics/skills\n- 15:45 This is a log line"
      },
      {
        "title": "Use Cases",
        "body": "Journal entry:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- Went to the doctor\")\" --append\n\nTask:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- [ ] Buy groceries\")\" --append\n\nLink:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- https://github.com/anthropics/skills\")\" --append\n\nTimestamped log:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- $(date +%H:%M) This is a log line\")\" --append\n\nRead last Friday:\n\nobsidian-cli print \"$(date -d 'last friday' +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d).md\"\n\nSearch for \"meeting\":\n\nobsidian-cli search-content \"meeting\""
      }
    ],
    "body": "Obsidian Daily Notes\n\nInteract with Obsidian Daily Notes: create notes, append entries, read by date, and search content.\n\nSetup\n\nCheck if a default vault is configured:\n\nobsidian-cli print-default --path-only 2>/dev/null && echo \"OK\" || echo \"NOT_SET\"\n\n\nIf NOT_SET, ask the user:\n\nVault name (required)\nDaily notes folder (default: vault root, common: Daily Notes, Journal, daily)\nDate format (default: YYYY-MM-DD)\n\nConfigure the vault:\n\nobsidian-cli set-default \"VAULT_NAME\"\n\n\nObsidian Daily Notes plugin defaults:\n\nDate format: YYYY-MM-DD\nNew file location: Vault root\nTemplate file location: (none)\nDate Handling\n\nGet current date:\n\ndate +%Y-%m-%d\n\n\nCross-platform relative dates (GNU first, BSD fallback):\n\nReference\tCommand\nToday\tdate +%Y-%m-%d\nYesterday\tdate -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d\nLast Friday\tdate -d \"last friday\" +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d\n3 days ago\tdate -d \"3 days ago\" +%Y-%m-%d 2>/dev/null || date -v-3d +%Y-%m-%d\nNext Monday\tdate -d \"next monday\" +%Y-%m-%d 2>/dev/null || date -v+monday +%Y-%m-%d\nCommands\nOpen/Create Today's Note\nobsidian-cli daily\n\n\nOpens today's daily note in Obsidian, creating it from template if it doesn't exist.\n\nAppend Entry\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"ENTRY_TEXT\")\" --append\n\n\nWith custom folder:\n\nobsidian-cli daily && obsidian-cli create \"Daily Notes/$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"ENTRY_TEXT\")\" --append\n\nRead Note\n\nToday:\n\nobsidian-cli print \"$(date +%Y-%m-%d).md\"\n\n\nSpecific date:\n\nobsidian-cli print \"2025-01-10.md\"\n\n\nRelative date (yesterday):\n\nobsidian-cli print \"$(date -d yesterday +%Y-%m-%d 2>/dev/null || date -v-1d +%Y-%m-%d).md\"\n\nSearch Content\nobsidian-cli search-content \"TERM\"\n\nSearch Notes\n\nInteractive fuzzy finder:\n\nobsidian-cli search\n\nSpecific Vault\n\nAdd --vault \"NAME\" to any command:\n\nobsidian-cli print \"2025-01-10.md\" --vault \"Work\"\n\nExample Output\n- Went to the doctor\n- [ ] Buy groceries\n- https://github.com/anthropics/skills\n- 15:45 This is a log line\n\nUse Cases\n\nJournal entry:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- Went to the doctor\")\" --append\n\n\nTask:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- [ ] Buy groceries\")\" --append\n\n\nLink:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- https://github.com/anthropics/skills\")\" --append\n\n\nTimestamped log:\n\nobsidian-cli daily && obsidian-cli create \"$(date +%Y-%m-%d).md\" --content \"$(printf '\\n%s' \"- $(date +%H:%M) This is a log line\")\" --append\n\n\nRead last Friday:\n\nobsidian-cli print \"$(date -d 'last friday' +%Y-%m-%d 2>/dev/null || date -v-friday +%Y-%m-%d).md\"\n\n\nSearch for \"meeting\":\n\nobsidian-cli search-content \"meeting\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bastos/obsidian-daily",
    "publisherUrl": "https://clawhub.ai/bastos/obsidian-daily",
    "owner": "bastos",
    "version": "1.2.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/obsidian-daily",
    "downloadUrl": "https://openagent3.xyz/downloads/obsidian-daily",
    "agentUrl": "https://openagent3.xyz/skills/obsidian-daily/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-daily/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-daily/agent.md"
  }
}