{
  "schemaVersion": "1.0",
  "item": {
    "slug": "paperzilla",
    "name": "Paperzilla",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pors/paperzilla",
    "canonicalUrl": "https://clawhub.ai/pors/paperzilla",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/paperzilla",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paperzilla",
    "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/paperzilla"
    },
    "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/paperzilla",
    "agentPageUrl": "https://openagent3.xyz/skills/paperzilla/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperzilla/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperzilla/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": "Paperzilla CLI (pz) 🦖",
        "body": "A command-line tool for Paperzilla, an AI-powered scientific paper discovery platform."
      },
      {
        "title": "Install",
        "body": "macOS:\n\nbrew install paperzilla-ai/tap/pz\n\nWindows (Scoop):\n\nscoop bucket add paperzilla-ai https://github.com/paperzilla-ai/scoop-bucket\nscoop install pz\n\nLinux:\n\ncurl -sL https://github.com/paperzilla-ai/pz/releases/latest/download/pz_linux_amd64.tar.gz | tar xz\nsudo mv pz /usr/local/bin/"
      },
      {
        "title": "Authentication",
        "body": "Log in with your Paperzilla account before doing anything else:\n\npz login"
      },
      {
        "title": "List Projects",
        "body": "Lists your available projects and their IDs.\n\npz project list"
      },
      {
        "title": "Browse Feed",
        "body": "Fetches the papers for a given project ID.\n\npz feed <project-id>\n\nFilter & Export Flags:\n\n--must-read : Filter only for must-read papers.\n--limit 5 : Limit the number of returned results.\n--since YYYY-MM-DD : Filter papers published after a specific date.\n--json : Output in JSON format (excellent for parsing with other tools or piping into Claude/Gemini).\n\nExample:\n\npz feed 12345 --must-read --limit 5 --json"
      },
      {
        "title": "Feed Reader Integration (RSS/Atom)",
        "body": "Get an Atom feed URL you can add to any feed reader (Vienna RSS, NetNewsWire, Feedly, etc.):\n\npz feed <project-id> --atom\n\nThis prints a URL with an embedded feed token. Running --atom again after revoking will generate a new token."
      },
      {
        "title": "API Configuration",
        "body": "By default, it connects to https://paperzilla.ai. To override, set PZ_API_URL.\n\nexport PZ_API_URL=\"https://custom.paperzilla.ai\""
      }
    ],
    "body": "Paperzilla CLI (pz) 🦖\n\nA command-line tool for Paperzilla, an AI-powered scientific paper discovery platform.\n\nInstall\n\nmacOS:\n\nbrew install paperzilla-ai/tap/pz\n\n\nWindows (Scoop):\n\nscoop bucket add paperzilla-ai https://github.com/paperzilla-ai/scoop-bucket\nscoop install pz\n\n\nLinux:\n\ncurl -sL https://github.com/paperzilla-ai/pz/releases/latest/download/pz_linux_amd64.tar.gz | tar xz\nsudo mv pz /usr/local/bin/\n\nAuthentication\n\nLog in with your Paperzilla account before doing anything else:\n\npz login\n\nCore Commands\nList Projects\n\nLists your available projects and their IDs.\n\npz project list\n\nBrowse Feed\n\nFetches the papers for a given project ID.\n\npz feed <project-id>\n\n\nFilter & Export Flags:\n\n--must-read : Filter only for must-read papers.\n--limit 5 : Limit the number of returned results.\n--since YYYY-MM-DD : Filter papers published after a specific date.\n--json : Output in JSON format (excellent for parsing with other tools or piping into Claude/Gemini).\n\nExample:\n\npz feed 12345 --must-read --limit 5 --json\n\nFeed Reader Integration (RSS/Atom)\n\nGet an Atom feed URL you can add to any feed reader (Vienna RSS, NetNewsWire, Feedly, etc.):\n\npz feed <project-id> --atom\n\n\nThis prints a URL with an embedded feed token. Running --atom again after revoking will generate a new token.\n\nAPI Configuration\n\nBy default, it connects to https://paperzilla.ai. To override, set PZ_API_URL.\n\nexport PZ_API_URL=\"https://custom.paperzilla.ai\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pors/paperzilla",
    "publisherUrl": "https://clawhub.ai/pors/paperzilla",
    "owner": "pors",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/paperzilla",
    "downloadUrl": "https://openagent3.xyz/downloads/paperzilla",
    "agentUrl": "https://openagent3.xyz/skills/paperzilla/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paperzilla/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paperzilla/agent.md"
  }
}