Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

readwise-article-saver阅读文章保护程序

Agent Skill

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

总安装

3,919

周安装

157

GitHub Stars

公开资料未说明

下载量

1,269
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install readwise-article-saver

简介

将文章链接自动保存至 Readwise Reader,支持微信公众号等特殊格式处理。

  • 适用于定期归档网络资料、建立个人知识库或进行后续内容分析。
  • 通过内容自动标记提升检索效率,便于后期复习与引用。
  • 需绑定 Readwise 账户并授权访问指定收藏夹。
  • 注意遵守目标网站的反爬虫政策,避免高频请求导致访问受限。

SKILL.md

name
readwise_article_saver
description
>
metadata
openclaw
requires
bins
["python3", "curl"]
config
["READWISE_TOKEN", "OPENROUTER_API_KEY"]

Readwise Article Saver

Save articles to Readwise Reader with LLM-powered tagging from a controlled taxonomy. WeChat articles are fetched server-side to avoid Readwise's parsing failures.

Workflow

When the user sends a message containing one or more URLs, execute these steps immediately without asking for confirmation.

Step 1 — Fetch and save the article

Use exec to run the bundled Python script. The script handles:

  • WeChat detection and server-side fetching with MicroMessenger UA
  • HTML content validation (empty-page detection)
  • Title and author extraction
  • Calling the Readwise Save API
python3 ~/.openclaw/workspace/skills/readwise_article_saver/save_article.py "THE_URL"

The script outputs JSON to stdout:

{
  "status": "ok",
  "title": "Article Title",
  "author": "Author Name",
  "domain": "mp.weixin.qq.com",
  "text_preview": "First 8000 characters of article body text...",
  "is_wechat": true,
  "fetch_method": "server_fetch",
  "readwise_status": 201
}

Or on failure:

{
  "status": "error",
  "error": "Description of what went wrong",
  "fallback_saved": true
}

If status is "error" and fallback_saved is false, inform the user that manual saving is needed (open in WeChat → share to Readwise).

Step 2 — Generate tags with llm-task

If Step 1 returned status: "ok" and includes a text_preview, use the llm-task tool to classify the article. Pass the full taxonomy as the prompt and the article metadata as input.

Call llm-task with:

{
  "prompt": "You are a document classifier. Read the document and return 2-5 tags as a JSON array of strings. PREFER tags from the taxonomy. If the content's central subject is not covered, create a new specific tag (1-3 words, same specificity as existing tags). Never create broad tags like 'Technology' or 'Finance'. Never assign 'favorite' or 'shortlist'.\
\
TAXONOMY:\
- AI agent: AI agents, autonomous systems, agentic workflows, tool-use architectures\
- Chips: semiconductors, chip design, GPU/TPU, NVIDIA/AMD/TSMC, export controls\
- AI 上下文: context windows, RAG, prompt engineering, foundation models, broader AI landscape\
- VC: venture capital, fund mechanics, early-stage investments, seed/pre-A/series-A\
- PE: private equity, series-B/C/D, buyouts, LBO mechanics\
- Fundraising: LP/GP dynamics, new LP allocation trends\
- Private Credit: direct lending, BDCs, unitranche, mezzanine, private debt\
- Equity: public equities, stock analysis, earnings, equity research, trading ideas\
- M&A: mergers, acquisitions, deal-making, corporate restructuring\
- Market: broad market conditions, macro outlook, cross-asset dynamics\
- Family Office: family office structures, ultra-HNW wealth management\
- Launching Fund: starting a fund, emerging manager playbooks, GP fundraising\
- Politics: domestic politics, elections, government policy (single country; NOT cross-border)\
- IR: international relations, foreign policy, diplomacy, geopolitics, great-power competition\
- Economics: macroeconomics, monetary/fiscal policy, trade economics\
- infra: infrastructure investment, physical/digital infrastructure\
- Consumer: consumer markets, retail, CPG, consumption-driven analysis\
- Startup Growth: startup scaling, growth strategies, go-to-market, PMF\
- Founder: founder-centric advice, founder stories, lessons from building\
- China, US, Europe, Middle East: apply when region is primary focus\
- Ray Dalio, Paul Graham, Howard Marks, 黄铮, Trump: apply ONLY if person is central subject (>50% content)\
- YC, XVC, Space X, Anthropic, Cursor: apply ONLY if company is primary subject\
- Career: career strategy, job transitions, professional development\
- Personal Development: mindset, self-improvement, habits, mental models\
- Mindset: psychological frameworks, resilience, cognitive biases\
- Guide: practical how-to, tutorials, step-by-step guides\
\
RULES:\
1. Always separate Politics from IR.\
2. For finance, choose the most specific tag. Never use generic 'Finance'.\
3. Key Thinker/Company tags only if central subject, not passing mention.\
4. Geographic tags only when region is primary focus.\
5. Return a JSON array of 2-5 strings. Nothing else.",
  "input": {
    "title": "<title from Step 1>",
    "author": "<author from Step 1>",
    "domain": "<domain from Step 1>",
    "text": "<text_preview from Step 1>"
  },
  "schema": {
    "type": "array",
    "items": { "type": "string" },
    "minItems": 1,
    "maxItems": 5
  }
}

The llm-task tool returns a JSON array of tag strings, e.g. ["AI agent", "China", "Guide"].

Step 3 — Apply tags to the saved article

Use exec to call the Readwise API to update the article's tags:

python3 ~/.openclaw/workspace/skills/readwise_article_saver/update_tags.py "THE_URL" "tag1" "tag2" "tag3"

Step 4 — Report to user

Combine the results and report concisely:

  • Success: ✅ 「Article Title」已保存到 Readwise Reader。标签: tag1, tag2, tag3
  • ⚠️ Partial: ⚠️ 文章已保存但标签生成失败。标签: openclaw
  • Failure: ❌ 无法保存此文章。建议在微信中打开后手动保存。

Do NOT add unnecessary commentary. Report the result and move on.

Handling multiple URLs

If the user sends multiple URLs in one message, process each URL through Steps 1-3 sequentially, then present a summary table of all results.

Troubleshooting

ErrorCauseSolution
READWISE_TOKEN not setEnv var missingSet in openclaw.json under skills.entries
Readwise API 401Token expiredRegenerate at readwise.io/access_token
Server fetch failed (WeChat)Link expired or anti-botUser should save manually from WeChat
llm-task returns errorLLM provider issueArticle is still saved; tags fallback to "openclaw"

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

OpenClaw

70.65%
按下载量换算897

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills