{
  "schemaVersion": "1.0",
  "item": {
    "slug": "slipbot-kindle-importer",
    "name": "SlipBot Kindle Importer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jrswab/slipbot-kindle-importer",
    "canonicalUrl": "https://clawhub.ai/jrswab/slipbot-kindle-importer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/slipbot-kindle-importer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=slipbot-kindle-importer",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/slipbot-kindle-importer"
    },
    "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/slipbot-kindle-importer",
    "agentPageUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/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": "Kindle Import",
        "body": "Parse Kindle notebook exports (HTML) and create slipbox entries for user's notes."
      },
      {
        "title": "Input Format",
        "body": "Kindle exports are XHTML files with this structure:\n\n<div class=\"bookTitle\">Book Title Here</div>\n<div class=\"authors\">Author Name</div>\n...\n<div class=\"sectionHeading\">Chapter/Section Name</div>\n<div class=\"noteHeading\">Highlight (yellow) - Section > Page X</div>\n<div class=\"noteText\">Highlighted text from book</div>\n<div class=\"noteHeading\">Note - Section > Page X</div>\n<div class=\"noteText\">User's own note</div>\n\nKey distinction:\n\nnoteHeading starting with \"Highlight\" → book text → Skip\nnoteHeading starting with \"Note\" → user's own thoughts → Import"
      },
      {
        "title": "Metadata Extraction",
        "body": "Book title: content of .bookTitle div\nAuthor: content of .authors div\nSource type: book"
      },
      {
        "title": "Content Extraction",
        "body": "Find all .noteHeading elements\nIf heading starts with \"Note\" → get the following .noteText content → import\nIf heading starts with \"Highlight\" → skip\nSection info (e.g., \"Client-side/Stateless Sessions > Page 28\") can be ignored"
      },
      {
        "title": "Workflow",
        "body": "Parse file → extract book title and author\nExtract user notes → collect only Note entries (not Highlights)\nPrecheck → show user: book title, author, note count, ask for confirmation\nOn confirmation → for each note, invoke slipbot:\n\nType: note (- prefix)\nSource: ~ book, {title} by {author}\nLet slipbot handle: filename, tags, links, graph update\n\n\nReport → count of notes created"
      },
      {
        "title": "Example",
        "body": "Input file metadata:\n\nTitle: \"The JWT Handbook\"\nAuthor: \"Sebastian E Peyrott\"\n\nParsed entries:\n\nHighlight (yellow) - Page 28: \"This is easily solved by...\" → SKIP\nNote - Page 28: \"Applications should not allow unsigned JWTs...\" → IMPORT\n\nSlipbot call:\n\n- Applications should not allow unsigned JWTs to be considered valid. ~ book, The JWT Handbook by Sebastian E Peyrott"
      },
      {
        "title": "Edge Cases",
        "body": "No user notes (only Highlights): Report \"no notes to import\"\nMultiple authors: Preserve as-is from the file\nMissing author: Use \"Unknown\" as author\nSpecial characters in title/content: Preserve as-is\nHTML entities: Decode before storing (& → &, etc.)"
      },
      {
        "title": "Supported File Types",
        "body": ".html files exported from Kindle app\nXHTML files (same structure)\nFiles sent via Telegram (application/xml or text/plain mime types)"
      }
    ],
    "body": "Kindle Import\n\nParse Kindle notebook exports (HTML) and create slipbox entries for user's notes.\n\nInput Format\n\nKindle exports are XHTML files with this structure:\n\n<div class=\"bookTitle\">Book Title Here</div>\n<div class=\"authors\">Author Name</div>\n...\n<div class=\"sectionHeading\">Chapter/Section Name</div>\n<div class=\"noteHeading\">Highlight (yellow) - Section > Page X</div>\n<div class=\"noteText\">Highlighted text from book</div>\n<div class=\"noteHeading\">Note - Section > Page X</div>\n<div class=\"noteText\">User's own note</div>\n\n\nKey distinction:\n\nnoteHeading starting with \"Highlight\" → book text → Skip\nnoteHeading starting with \"Note\" → user's own thoughts → Import\nParsing Rules\nMetadata Extraction\nBook title: content of .bookTitle div\nAuthor: content of .authors div\nSource type: book\nContent Extraction\nFind all .noteHeading elements\nIf heading starts with \"Note\" → get the following .noteText content → import\nIf heading starts with \"Highlight\" → skip\nSection info (e.g., \"Client-side/Stateless Sessions > Page 28\") can be ignored\nWorkflow\nParse file → extract book title and author\nExtract user notes → collect only Note entries (not Highlights)\nPrecheck → show user: book title, author, note count, ask for confirmation\nOn confirmation → for each note, invoke slipbot:\nType: note (- prefix)\nSource: ~ book, {title} by {author}\nLet slipbot handle: filename, tags, links, graph update\nReport → count of notes created\nExample\n\nInput file metadata:\n\nTitle: \"The JWT Handbook\"\nAuthor: \"Sebastian E Peyrott\"\n\nParsed entries:\n\nHighlight (yellow) - Page 28: \"This is easily solved by...\" → SKIP\nNote - Page 28: \"Applications should not allow unsigned JWTs...\" → IMPORT\n\n\nSlipbot call:\n\n- Applications should not allow unsigned JWTs to be considered valid. ~ book, The JWT Handbook by Sebastian E Peyrott\n\nEdge Cases\nNo user notes (only Highlights): Report \"no notes to import\"\nMultiple authors: Preserve as-is from the file\nMissing author: Use \"Unknown\" as author\nSpecial characters in title/content: Preserve as-is\nHTML entities: Decode before storing (& → &, etc.)\nSupported File Types\n.html files exported from Kindle app\nXHTML files (same structure)\nFiles sent via Telegram (application/xml or text/plain mime types)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jrswab/slipbot-kindle-importer",
    "publisherUrl": "https://clawhub.ai/jrswab/slipbot-kindle-importer",
    "owner": "jrswab",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer",
    "downloadUrl": "https://openagent3.xyz/downloads/slipbot-kindle-importer",
    "agentUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/slipbot-kindle-importer/agent.md"
  }
}