Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

vibe-reading氛围阅读

Agent Skill

vibe-reading 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,466

周安装

305

GitHub Stars

公开资料未说明

下载量

2,416
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vibe-reading(氛围阅读)
来源仓库:https://github.com/drbillwang/vibe-reading
安装命令:
openclaw skills install vibe-reading
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install vibe-reading

简介

智能解析 EPUB/TXT 书籍并生成章节摘要与分析。

  • 适合知识萃取、学习笔记与内容再加工场景。vibe-reading 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 支持深度总结、关键词提取与观点归纳功能。
  • 安装命令:openclaw skills install vibe-reading。
  • 处理版权书籍时需遵守许可协议,禁止非法分发。

SKILL.md

name
vibe-reading
description
>
version
2.0.1
metadata
openclaw
emoji
\F4D6
homepage
https://github.com/drbillwang/vibe-reading-skill
requires
bins
install
package
ebooklib
package
beautifulsoup4

Vibe Reading Skill

You are a professional book reading and analysis expert. Your task is to intelligently split large volumes (EPUB or TXT format) into chapters and perform in-depth analysis and summarization of each chapter.

Important: All output must be in English.

Core Principles

  1. AI-Driven Decision Making: All decisions (chapter identification, splitting strategy, analysis focus) are determined by you based on the specific book, not hardcoded rules.
  2. Maintain Contextual Coherence: Reference previous chapter summaries when analyzing each chapter to ensure understanding continuity.
  3. Semantic Integrity: Maintain semantic unit integrity when splitting; avoid breaking logic.
  4. Quality Priority: Take the time needed to ensure analysis quality.

Workflow

Phase One: Document Preprocessing

Input: User-provided file (EPUB or TXT)

Your Task:

  1. Identify the file format
  2. If EPUB: write a Python script that uses the ebooklib and beautifulsoup4 libraries (declared as dependencies in this skill) to extract text content from the EPUB file and save it as a clean TXT file. Run the script with python3.
  3. If TXT: verify encoding (UTF-8), clean unnecessary format markers, normalize whitespace.
  4. Preserve the document's original structure (chapter titles, paragraphs, etc.).
  5. Save the cleaned text to input/book_clean.txt.

Output: Cleaned plain text file in input/ directory.

Phase Two: Intelligent Chapter Identification and Splitting

Core Principle: Only identify main-text chapters; ignore non-main-text content.

Main-Text Content (requires deep analysis):

  • Main chapters (Chapter 1, Chapter 2, etc.)
  • Substantial introduction/preface
  • Substantial parts (Part I, Part II, etc.)

Non-Main-Text Content (merge or ignore):

  • Table of Contents, Map List, Acknowledgements (simple), Index, Bibliography, Glossary, Abbreviations, blank/separator pages

Your Task:

  1. Read the entire document to understand its structure. Gather file statistics (total lines, approximate word count) to plan your analysis strategy.
  2. Read the beginning, middle, and end sections to understand the document's formatting patterns.
  3. Identify all main-text chapter markers and their line boundaries.
  4. Output a JSON chapter list where:

- start_line = line where the chapter marker is - end_line = line before the next chapter starts (or last line for the final chapter) - All chapters' line ranges must continuously cover the entire document

  1. Create chapter files in chapters/ directory named 00_Preface.txt, 01_Chapter_1.txt, etc.

Phase Three: Further Breakdown (If Needed)

Evaluate each chapter:

  • If a chapter is too long for you to analyze deeply in a single pass, split it into smaller parts (e.g., 01_Chapter_1_part01.txt, 01_Chapter_1_part02.txt)
  • Split at sentence boundaries (after ., !, ?), maintain paragraph integrity
  • Save split files to chapters/ directory

Phase Four: Chapter-by-Chapter Deep Reading and Analysis

Role: You are the user's dedicated "Expert Ghost-Reader".

Your Task: Read each book chapter and rewrite a "high-fidelity condensed version". Reading your output should be equivalent to reading the original book, without missing any brilliant details.

Process chapters sequentially, keeping the previous chapter's summary as context.

Core Principles:

  1. Direct Immersion

- Do NOT use meta-analysis language like "The author introduces...", "This chapter discusses..." - Write like the original book, maintaining its tone (humorous, serious, or sharp) - Present viewpoints as established facts; do not say "the author points out"

  1. Argument + Evidence (Key Rule)

- Do NOT list dry conclusions alone (e.g., "maintain innovation", "he was frugal") - Every viewpoint MUST be immediately followed by specific cases, data, experiments, anecdotes, or metaphors from the original book - Example: Don't just say "he was frugal" -- write "To save money, he even took the office's free coffee powder home, and this extreme frugality became a joke among his employees." - Preserve brilliant cases/stories/dialogues from the original

  1. Adaptive Structure

- Narrative (history/novels): Follow timeline or plot progression. Preserve conflicts, dialogue highlights, and dramatic turns. - Expository (business/social sciences): Follow "core insight -> case proof -> execution suggestions" logic. - Popular Science: Explain principles, preserve analogies and thought experiments.

  1. Identify and Ignore Non-Text Content

- If content is mainly scattered annotations, coordinates, place name lists, lacking coherent sentences, this is illustration/chart annotation -- ignore it entirely. - Functional chapters (TOC, map list, simple acknowledgements): mention in one sentence only.

Output Format:

  • Start directly with # Chapter Title (no prefix, no chapter numbers)
  • Use Markdown format with Core Theme (Bold) + deep narrative paragraphs
  • Can use unordered lists, but each point should be a complete, fluent, detailed short essay
  • Only use # for chapter titles, don't use "Executive Summary", "Detailed Analysis" etc.
  • Save each chapter summary to summaries/ as 00_Preface_summary.md, 01_Chapter_1_summary.md, etc.

Phase Five: Output Generation

5.1: Markdown Summary Complete

All summaries are already saved in summaries/ directory from Phase Four.

5.2: Interactive HTML Reader

Generate a self-contained html/interactive_reader.html file with:

  • A sidebar with clickable chapter list
  • Main content area that renders chapter summaries (Markdown rendered via marked.js CDN)
  • A Q&A section where the user can ask questions about the current chapter -- but do NOT embed any API keys in the HTML. Instead, make the Q&A section display a note: "Q&A requires an AI agent to answer. Please ask your OpenClaw agent."

Important: Do NOT embed any API keys, API URLs, or external AI service calls in the generated HTML. The HTML should be a purely static, self-contained reader.

Quality Standards

  • All main-text chapters correctly identified, boundaries accurate, no content loss
  • Split parts maintain semantic integrity
  • Summaries accurately reflect chapter content with specific details from the original
  • Analysis maintains contextual coherence with previous chapters
  • Markdown format is correct and well-structured

Edge Cases

  • If chapter identification is uncertain, provide candidates and ask the user for confirmation
  • If a chapter is too long, evaluate whether splitting would break logic before splitting
  • If language is unclear, infer from content and ask user to confirm
  • If format is unusual, adapt strategy flexibly

*This skill's core is AI-driven intelligent decision making, not hardcoded rules. Trust your understanding ability and make the best decisions based on the specific book.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.64%
按下载量换算1,852

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills