โ† All skills
Tencent SkillHub ยท Developer Tools

SlipBot Kindle Importer

Import reading notes from Kindle HTML exports into the slipbox. Use when user sends a Kindle notebook export file (HTML/XHTML). Parses book title and author, extracts only user's Notes (skips Highlights), then runs slipbot for each.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Import reading notes from Kindle HTML exports into the slipbox. Use when user sends a Kindle notebook export file (HTML/XHTML). Parses book title and author, extracts only user's Notes (skips Highlights), then runs slipbot for each.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Kindle Import

Parse Kindle notebook exports (HTML) and create slipbox entries for user's notes.

Input Format

Kindle exports are XHTML files with this structure: <div class="bookTitle">Book Title Here</div> <div class="authors">Author Name</div> ... <div class="sectionHeading">Chapter/Section Name</div> <div class="noteHeading">Highlight (yellow) - Section > Page X</div> <div class="noteText">Highlighted text from book</div> <div class="noteHeading">Note - Section > Page X</div> <div class="noteText">User's own note</div> Key distinction: noteHeading starting with "Highlight" โ†’ book text โ†’ Skip noteHeading starting with "Note" โ†’ user's own thoughts โ†’ Import

Metadata Extraction

Book title: content of .bookTitle div Author: content of .authors div Source type: book

Content Extraction

Find all .noteHeading elements If heading starts with "Note" โ†’ get the following .noteText content โ†’ import If heading starts with "Highlight" โ†’ skip Section info (e.g., "Client-side/Stateless Sessions > Page 28") can be ignored

Workflow

Parse file โ†’ extract book title and author Extract user notes โ†’ collect only Note entries (not Highlights) Precheck โ†’ show user: book title, author, note count, ask for confirmation On confirmation โ†’ for each note, invoke slipbot: Type: note (- prefix) Source: ~ book, {title} by {author} Let slipbot handle: filename, tags, links, graph update Report โ†’ count of notes created

Example

  • Input file metadata:
  • Title: "The JWT Handbook"
  • Author: "Sebastian E Peyrott"
  • Parsed entries:
  • Highlight (yellow) - Page 28: "This is easily solved by..." โ†’ SKIP
  • Note - Page 28: "Applications should not allow unsigned JWTs..." โ†’ IMPORT
  • Slipbot call:
  • Applications should not allow unsigned JWTs to be considered valid. ~ book, The JWT Handbook by Sebastian E Peyrott

Edge Cases

No user notes (only Highlights): Report "no notes to import" Multiple authors: Preserve as-is from the file Missing author: Use "Unknown" as author Special characters in title/content: Preserve as-is HTML entities: Decode before storing (& โ†’ &, etc.)

Supported File Types

.html files exported from Kindle app XHTML files (same structure) Files sent via Telegram (application/xml or text/plain mime types)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc