{
  "schemaVersion": "1.0",
  "item": {
    "slug": "upnote",
    "name": "UpNote",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/wemcdonald/upnote",
    "canonicalUrl": "https://clawhub.ai/wemcdonald/upnote",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/upnote",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upnote",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/upnote.sh"
    ],
    "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": "upnote",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T15:56:54.822Z",
      "expiresAt": "2026-05-08T15:56:54.822Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upnote",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upnote",
        "contentDisposition": "attachment; filename=\"upnote-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "upnote"
      },
      "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/upnote"
    },
    "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/upnote",
    "agentPageUrl": "https://openagent3.xyz/skills/upnote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/upnote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/upnote/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": "UpNote",
        "body": "Manage UpNote notes and notebooks using x-callback-url automation."
      },
      {
        "title": "Overview",
        "body": "UpNote is installed and supports x-callback-url endpoints for automation. Use the bundled upnote.sh script for all UpNote operations."
      },
      {
        "title": "Quick Start",
        "body": "Create a note:\n\nscripts/upnote.sh new --title \"My Note\" --text \"Note content here\"\n\nCreate a note with markdown:\n\nscripts/upnote.sh new --title \"Meeting Notes\" --text \"# Agenda\\n- Item 1\" --markdown\n\nCreate a note in a specific notebook:\n\nscripts/upnote.sh new --title \"Project Ideas\" --text \"Ideas...\" --notebook \"Work\""
      },
      {
        "title": "Create Note",
        "body": "scripts/upnote.sh new \\\n  --title \"Note Title\" \\\n  --text \"Content here\" \\\n  [--notebook \"Notebook Name\"] \\\n  [--markdown] \\\n  [--new-window]"
      },
      {
        "title": "Create Notebook",
        "body": "scripts/upnote.sh notebook new \"Notebook Name\""
      },
      {
        "title": "Open Note (requires note ID)",
        "body": "scripts/upnote.sh open <noteId> [true|false]\n\nTo get a note ID, right-click a note in UpNote → Copy Link → extract the ID from the URL."
      },
      {
        "title": "Open Notebook (requires notebook ID)",
        "body": "scripts/upnote.sh notebook open <notebookId>"
      },
      {
        "title": "View Tag",
        "body": "scripts/upnote.sh tag \"tag-name\""
      },
      {
        "title": "Search Notes",
        "body": "scripts/upnote.sh view all_notes --query \"search term\""
      },
      {
        "title": "View Modes",
        "body": "scripts/upnote.sh view <mode>\n\nAvailable modes:\n\nall_notes - All notes\nquick_access - Quick access notes\ntemplates - All templates\ntrash - Trash\nnotebooks - Notebooks (use with --notebook-id)\ntags - Tags (use with --tag-id)\nfilters - Filters (use with --filter-id)\nall_notebooks - All notebooks\nall_tags - All tags"
      },
      {
        "title": "Notes",
        "body": "All UpNote operations open the UpNote app\nNote and notebook IDs can be obtained by copying links from UpNote (right-click → Copy Link)\nThe script handles URL encoding automatically\nFor multi-line content, use \\n for line breaks or pass content via heredoc"
      },
      {
        "title": "scripts/upnote.sh",
        "body": "Shell script wrapper for UpNote x-callback-url operations. Handles URL encoding and provides a clean CLI interface."
      }
    ],
    "body": "UpNote\n\nManage UpNote notes and notebooks using x-callback-url automation.\n\nOverview\n\nUpNote is installed and supports x-callback-url endpoints for automation. Use the bundled upnote.sh script for all UpNote operations.\n\nQuick Start\n\nCreate a note:\n\nscripts/upnote.sh new --title \"My Note\" --text \"Note content here\"\n\n\nCreate a note with markdown:\n\nscripts/upnote.sh new --title \"Meeting Notes\" --text \"# Agenda\\n- Item 1\" --markdown\n\n\nCreate a note in a specific notebook:\n\nscripts/upnote.sh new --title \"Project Ideas\" --text \"Ideas...\" --notebook \"Work\"\n\nCommon Operations\nCreate Note\nscripts/upnote.sh new \\\n  --title \"Note Title\" \\\n  --text \"Content here\" \\\n  [--notebook \"Notebook Name\"] \\\n  [--markdown] \\\n  [--new-window]\n\nCreate Notebook\nscripts/upnote.sh notebook new \"Notebook Name\"\n\nOpen Note (requires note ID)\nscripts/upnote.sh open <noteId> [true|false]\n\n\nTo get a note ID, right-click a note in UpNote → Copy Link → extract the ID from the URL.\n\nOpen Notebook (requires notebook ID)\nscripts/upnote.sh notebook open <notebookId>\n\nView Tag\nscripts/upnote.sh tag \"tag-name\"\n\nSearch Notes\nscripts/upnote.sh view all_notes --query \"search term\"\n\nView Modes\nscripts/upnote.sh view <mode>\n\n\nAvailable modes:\n\nall_notes - All notes\nquick_access - Quick access notes\ntemplates - All templates\ntrash - Trash\nnotebooks - Notebooks (use with --notebook-id)\ntags - Tags (use with --tag-id)\nfilters - Filters (use with --filter-id)\nall_notebooks - All notebooks\nall_tags - All tags\nNotes\nAll UpNote operations open the UpNote app\nNote and notebook IDs can be obtained by copying links from UpNote (right-click → Copy Link)\nThe script handles URL encoding automatically\nFor multi-line content, use \\n for line breaks or pass content via heredoc\nResources\nscripts/upnote.sh\n\nShell script wrapper for UpNote x-callback-url operations. Handles URL encoding and provides a clean CLI interface."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wemcdonald/upnote",
    "publisherUrl": "https://clawhub.ai/wemcdonald/upnote",
    "owner": "wemcdonald",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/upnote",
    "downloadUrl": "https://openagent3.xyz/downloads/upnote",
    "agentUrl": "https://openagent3.xyz/skills/upnote/agent",
    "manifestUrl": "https://openagent3.xyz/skills/upnote/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/upnote/agent.md"
  }
}