Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

legado-book-source-developerLegado 书源开发者

Agent Skill

legado-book-source-developer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,394

周安装

140

GitHub Stars

公开资料未说明

下载量

1,109
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install legado-book-source-developer

简介

为 Legado 阅读应用提供小说/漫画书源开发技术支持。

  • 适用于 OpenClaw 中创建或调试书源规则的场合。
  • 通过 clawhub 安装,建议参考原始文档学习规则语法。
  • 使用前需确认是否涉及网络请求或第三方资源访问。legado-book-source-developer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 维护状态未知,可能存在规则解析错误或兼容性问题。

SKILL.md

name
legado-book-source-developer
description
Legado (阅读) Android app book source development skill. For creating book sources for novel/manga websites, debugging existing book source rules, querying Legado knowledge (CSS selectors, rule formats, POST requests), and analyzing website HTML structure. Covers searchUrl, ruleSearch, ruleToc, ruleContent, ruleBookInfo configuration. Use only with user-owned or authorized websites.

Legado Book Source Developer

A toolkit for creating, debugging, and managing Legado book sources. Includes analysis tools, real book source examples, and a knowledge base built from Legado source code.

Quick Start

1. Detect encoding → 2. Fetch real HTML → 3. Query knowledge base → 4. Analyze structure → 5. Create book source

Rules should be derived from actual HTML analysis rather than assumptions.

Usage Scope

This skill is intended for developing book sources for websites the user owns or has authorization to access. The included tools (URL analysis, HTML fetching, source uploading) should only be used on target sites with the user's explicit consent. Do not use these tools for unauthorized scraping, bypassing access controls, or accessing content without permission.

Tools

Knowledge Query

ToolPurpose
search_knowledge(query)Search knowledge base
get_css_selector_rules()CSS selector reference (paginated)
get_real_book_source_examples(limit)Real book source analysis results
get_book_source_templates(limit)Proven book source templates
read_file_paginated(path, page)Read large files with pagination
list_all_knowledge_files()List all knowledge files

HTML Analysis

ToolPurpose
smart_fetch_html(url, method, body, headers, charset)Fetch HTML with encoding support
smart_web_analyzer(html)Full page structure analysis
smart_bookinfo_analyzer(html)Book info page analysis
smart_toc_analyzer(html)Table of contents analysis
smart_content_analyzer(html)Content page analysis

Book Source Management

ToolPurpose
edit_book_source(complete_source="JSON")Create/edit book source
validate_book_source.pyValidate book source JSON (in tools/)

Analysis Scripts (in tools/)

ScriptDepsPurpose
analyze_url.pyrequests, bs4Website analysis (encoding + structure + search API)
analyze_url.shcurlWebsite analysis (no Python required)
quick_analyze.pyrequests, bs4Quick analysis with auto HTML storage
js_param_analyzer.pyrequests, bs4JS parameter/endpoint analysis
validate_book_source.pyBook source JSON validation (no deps)
upload_book_source.pyrequestsUpload book source to public image host (default: tu.406np.xyz) for shareable direct links
No Python? See references/no_python_workflow.md for using host MCP tools (browser, HTTP, code execution).

3-Phase Workflow

Phase 1: Information Collection

Step 1: Query Knowledge Base

search_knowledge("CSS选择器格式 提取类型 @text @html @href @src")
get_real_book_source_examples(limit=5)
get_book_source_templates(limit=3)

Step 2: Detect Encoding (once, at start)

detect_charset(url="http://example.com")
  • UTF-8 → omit charset (default)
  • GBK/GB2312 → add "charset":"gbk" to all requests

Step 3: Fetch Real HTML

smart_fetch_html(url="http://example.com/search", charset="gbk")
smart_fetch_html(url="http://example.com/search", method="POST",
                 body="keyword={{key}}&t=1", charset="gbk")

Step 4: Analyze Structure

smart_web_analyzer(html="...")
smart_bookinfo_analyzer(html="...")
smart_toc_analyzer(html="...")
smart_content_analyzer(html="...")

Phase 2: Review

  1. Write rules based on knowledge base + real HTML analysis
  2. Validate CSS selectors, extraction types, regex format
  3. Handle special cases (no cover, lazy loading, merged info)

When uncertain, ask the user rather than guessing.

Phase 3: Create Book Source

  1. Prepare complete JSON with all required fields
  2. Call edit_book_source(complete_source="完整JSON")
  3. Output as standard JSON array (no comments, no code blocks)

Rule String Format

CSS选择器@提取类型##正则表达式##替换内容

Extraction Types:

  • @text — text content (includes children)
  • @ownText — element text only (excludes children)
  • @html — HTML structure
  • @textNode — text nodes
  • @href — link URL
  • @src — image source
  • @js — JavaScript processing

Numeric Indices:

  • .0 = first, .-1 = last (NOT :first-child / :last-child)

Text Selection:

  • text.关键词 (NOT :contains())

Common Patterns

Standard list with cover:

{"bookList": ".book-list .item", "name": ".title@text", "bookUrl": "a@href", "coverUrl": "img@src"}

No cover on search page:

{"coverUrl": ""}

Lazy loading images:

{"coverUrl": "img@data-original||img@src"}

nextContentUrl rule: Chapter number changes → SET it. Page number only → LEAVE EMPTY.

Known Constraints

Unsupported fields (not in Legado source):

  • prevContentUrl does not exist
  • :contains() pseudo-class is not supported (use text.关键词)
  • :first-child / :last-child are not supported (use .0 / .-1)

Recommended practices:

  • Base rules on real HTML analysis rather than assumptions
  • Query the knowledge base before writing rules
  • Detect encoding once at the start

Required fields: See references/legado_data_structures.md for complete field specs from BookSource.kt, SearchRule.kt, TocRule.kt, ContentRule.kt, BookInfoRule.kt.

References

FileContent
references/legado_development_guide.mdWorkflow, HTML patterns, encoding, regex, troubleshooting
references/legado_data_structures.mdSource code analysis: data structures, rule engine, DB schema
references/Legado书源开发完整指南.mdComprehensive development guide
references/用户交互指南.mdCommon scenario interaction flows
references/方法-JS扩展类.mdJavaScript API documentation
references/Legado书源编码处理指南.mdEncoding handling guide
references/knowledge_base/book_sources/Real book source analysis (MD)
references/book_source_database/book_sources/Book source database (JSON)

Most Used Patterns (from real sources)

CSS Selectors: img(40x), h1(30x), div(13x), content(12x), intro(11x), h3(9x)

Extraction Types: @href(81x), @text(72x), src(60x), @html(33x), @js(25x)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.96%
按下载量换算909

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills