← All skills
Tencent SkillHub · Content Creation

Library

Authorized SansFiction library manager. Adds books to your library, updates reading status, logs progress, and can schedule a daily “how much did you read today?” check-in. Requires a SansFiction personal token (read/write).

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

Authorized SansFiction library manager. Adds books to your library, updates reading status, logs progress, and can schedule a daily “how much did you read today?” check-in. Requires a SansFiction personal token (read/write).

⬇ 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.1

Documentation

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

What this skill does

Library management (auth required): add/remove books, set reading status, log progress, view “currently reading”, and reading stats. Daily check-in: schedule a reminder that asks “How much did you read today?” and then logs what the user reports.

Hard rules

Never ask for or store passwords. Use a SansFiction token only. Never echo the token back to the user or write it into chat logs. No side effects without confirmation when the target book is ambiguous (multiple matches).

Setup (one-time) — get the token

If SANSFICTION_TOKEN is missing, do this immediately: Tell the user to open SansFiction → Connect AI Agents and use Manual Token: Go to: https://sansfiction.com/docs/agents In Manual Token, click Generate token Copy the token Ask the user to paste the token once in this chat. Persist it (recommended): In ~/.openclaw/openclaw.json: skills.entries.sansfiction-library.apiKey: "<TOKEN>" (this maps to env var SANSFICTION_TOKEN) Or set: skills.entries.sansfiction-library.env.SANSFICTION_TOKEN: "<TOKEN>" If you can’t edit config automatically, give the user the exact snippet to paste.

How to talk to SansFiction (MCP over HTTP)

Endpoint: https://sansfiction.com/api/mcp Use JSON-RPC with Bearer auth.

1) List available tools (discover exact tool names)

curl -s https://sansfiction.com/api/mcp \ -H "Authorization: Bearer $SANSFICTION_TOKEN" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' 2) Call a tool Replace TOOL_NAME and ARGS with what tools/list returns. curl -s https://sansfiction.com/api/mcp \ -H "Authorization: Bearer $SANSFICTION_TOKEN" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"TOOL_NAME","arguments":ARGS}}' Error handling • If you get 401 Unauthorized, auth is missing/invalid. Ask user to regenerate token and update config. • If tools/list is empty, verify the URL is exactly /api/mcp and auth header is present. ⸻ Library management playbook (what to do for each request) A) Add a book to the user’s library When user says: “add X” / “put X in my library” 1. Use MCP search tools (discover name via tools/list). Prefer search by: • ISBN (best) → exact match • Title + author 2. If multiple plausible matches: • Show up to 5 options with distinguishing details (author, year, edition, pages/publisher if available). • Ask the user to pick one. 3. Call the “add to library” tool. 4. Confirm: • Book added • Current status (ask if they want “to-read” vs “reading”) B) Set reading status When user says: “mark as reading/finished/paused/abandoned” 1. Resolve the book (same matching rules as above). 2. Call the “set status” tool with the exact status enum required by SansFiction. • If the server rejects your status string, use the allowed values from the error/tool schema and retry. 3. Confirm the new status. C) Log progress When user says: “I read 20 pages” / “I’m at page 150” / “read 30 minutes” 1. Ask which book if not explicitly stated AND they have more than one active book. 2. Call the “log progress” / “update progress” tool. • Prefer page number if provided. • Otherwise log pages read or minutes read, whichever the tool supports. 3. Confirm what was recorded (book + new page/progress + date). D) List currently reading When user says: “what am I reading?” / “list currently reading” 1. Call the “list library” tool filtered to “currently reading”. 2. Return: • Title + author • Current progress (page/% if available) E) Stats When user asks: “monthly stats”, “how many books this year” 1. Call the “stats” tool(s). 2. Summarize clearly (books finished, pages/minutes, streak if available). ⸻ Daily reading reminder (cron) Goal: once per day, ask: “How much did you read today? Reply with: book (optional), pages or minutes, and current page if you know it.” Turn it on If the user asks for the reminder (or says “enable daily check-in”): 1. Schedule a cron job (timezone: Europe/Warsaw) at a reasonable default (21:00 local), unless the user specifies a time. CLI example: openclaw cron add \ --name "SansFiction reading check-in" \ --cron "0 21 * * *" \ --tz "Europe/Warsaw" \ --session isolated \ --message "Reading check-in: how much did you read today? Reply with pages/minutes and (optionally) which book + your current page." \ --deliver \ --channel last What to do when the user replies Treat their reply as a progress log: • Parse pages/minutes and optional book/current page. • If book is missing/ambiguous, ask one quick follow-up. • Then log progress via MCP and confirm. Turn it off If the user says “disable reading reminder”: • Remove the cron job named SansFiction reading check-in. ⸻ User-facing examples (how users can invoke this skill) • “/sansfiction-library add Project Hail Mary” • “/sansfiction-library mark Dune finished” • “/sansfiction-library log Dune page 150” • “/sansfiction-library what am I currently reading?” • “/sansfiction-library enable daily reading reminder at 20:30” Sources used: SansFiction MCP endpoint + token flow [oai_citation:0‡SansFiction](https://sansfiction.com/docs/agents), OpenClaw skill frontmatter/metadata + config injection [oai_citation:1‡OpenClaw](https://docs.openclaw.ai/tools/skills), OpenClaw cron scheduling (for the daily reminder) [oai_citation:2‡OpenClaw](https://docs.openclaw.ai/automation/cron-jobs).

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • skill.md Docs