Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

content-alchemy内容炼金术

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

4,919

周安装

199

GitHub Stars

公开资料未说明

下载量

1,544
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install content-alchemy

简介

将文章、网页、PDF 和摘录转化为结构化笔记、关键见解、实际行动和可重复使用的要点。

SKILL.md

name
content-alchemy
slug
content-alchemy
version
1.0.0
description
Turn articles, web pages, PDFs, and excerpts into structured notes, key insights, practical actions, and reusable takeaways.
changelog
English-source release for GitHub and international ClawHub publishing.
metadata
{"clawdbot":{"emoji":"🧪","os":["linux","darwin","win32"],"requires":{"bins":["python3","pdftotext","pdfinfo"]}}}

Content Alchemy

Skill Purpose

Use this skill to transform reading input into reusable personal outcomes rather than plain summaries.

Supported input types:

  • article text
  • web URLs
  • extracted web text
  • PDF files
  • book excerpts
  • long explanatory passages

Expected output shape:

  • structured notes
  • key insights
  • actionable next steps
  • reusable takeaway

When To Use

Prefer this skill when the user wants something like:

  • "Turn this article into something I can keep"
  • "Extract the useful takeaways from this page"
  • "Turn this PDF into notes and actions"
  • "Help me continue reading this long PDF"
  • "Summarize this content, but make it more useful than a plain summary"

Differentiation Rules

Always follow these rules:

  1. Do not treat the task as plain summarization.
  2. Reconstruct value, structure, and usefulness instead of merely compressing content.
  3. The output should feel like a saved personal artifact, not model paraphrase.
  4. Every result should improve at least one of these:

- easier to revisit - easier to retain - easier to act on - easier to reuse

  1. If the result still reads like a generic summary, restructure it again.

Scope and Limits

This release supports three routes:

  • plain_text
  • web_url
  • pdf_file

This release does not directly handle:

  • OCR for scanned PDFs
  • code analysis workflows
  • pure table-first analysis
  • fragmented, image-first inputs with little readable text

If text extraction fails or text quality is too low, say so clearly and recommend OCR or source text.

Script Rules

When running bundled scripts:

  • always use python3
  • prefer absolute paths from the installed skill directory
  • do not assume the current working directory is the skill directory

Recommended setup:

SKILL_ROOT="$HOME/.claude/skills/content-alchemy"

Content transformation is performed directly by the model.

  • There is no process_content_alchemy.py script.
  • Do not invent a hidden processing script.
  • If you need a fixed output structure, use:

- templates/result_template.md - templates/checkpoint_template.md

Input Route A: plain_text

Use this route for:

  • article bodies
  • extracted web content
  • excerpts
  • long explanatory text

Process directly in-model using the outcome-oriented structure.

Input Route B: web_url

When the input is a URL:

  1. Run extract_web_text.py
  2. Extract title, site, author, publication time, and body text
  3. Check whether the extraction is strong enough to support transformation
  4. If not, explain the limit and ask for source text

Command:

python3 "$SKILL_ROOT/scripts/extract_web_text.py" "https://example.com/article"

Troubleshooting only:

python3 "$SKILL_ROOT/scripts/extract_web_text.py" "https://example.com/article" --insecure

Input Route C: pdf_file

When the input is a PDF:

  1. Run plan_pdf_reading.py
  2. Determine the strategy from page count and text quality
  3. Use extract_pdf_text.py for the appropriate page range
  4. For longer PDFs, initialize or restore state and proceed segment by segment

Plan command:

python3 "$SKILL_ROOT/scripts/plan_pdf_reading.py" "/path/to/file.pdf"

The planning result returns:

  • session_root
  • plan_file
  • state_file
  • commands
  • segment_results_dir
  • checkpoint_results_dir

Prefer the exact returned paths and commands instead of guessing filenames.

Extract a page range:

python3 "$SKILL_ROOT/scripts/extract_pdf_text.py" "/path/to/file.pdf" --page-start 1 --page-end 5

Initialize or restore state:

python3 "$SKILL_ROOT/scripts/update_pdf_session_state.py" init --plan-file "<returned plan_file>" --state-file "<returned state_file>"

Force reset only when the user explicitly wants to restart:

python3 "$SKILL_ROOT/scripts/update_pdf_session_state.py" init --plan-file "<returned plan_file>" --state-file "<returned state_file>" --force-reset

Move to the next segment:

python3 "$SKILL_ROOT/scripts/update_pdf_session_state.py" next --state-file "<returned state_file>"

Save the current segment result:

python3 "$SKILL_ROOT/scripts/record_pdf_segment_result.py" --state-file "<returned state_file>" --content-file "/path/to/segment-result.md"

Build the next checkpoint package:

python3 "$SKILL_ROOT/scripts/build_pdf_checkpoint.py" --state-file "<returned state_file>"

Save a checkpoint summary:

python3 "$SKILL_ROOT/scripts/record_pdf_checkpoint.py" --state-file "<returned state_file>" --content-file "/path/to/checkpoint-summary.md"

Show session progress:

python3 "$SKILL_ROOT/scripts/summarize_pdf_session.py" --state-file "<returned state_file>"

Find the most recent saved PDF session:

python3 "$SKILL_ROOT/scripts/find_recent_pdf_session.py"

PDF Routing Rules

Default routing by page count:

  • 1-40 pages -> single_pass
  • 41-150 pages -> segmented_read
  • 151-400 pages -> long_form_read
  • 401+ pages -> book_mode

If multi-window sampling still reports low_text_pdf = true, treat the PDF as likely scanned, image-based, or low-quality text.

Session State Rules

For segmented_read, long_form_read, and book_mode:

  1. Initialize state before the first reading step.
  2. Read state before continuing.
  3. Update state before previous / next / jump actions.
  4. Do not rely on chat memory alone in a new session.
  5. If state is missing, re-plan or re-initialize instead of pretending progress exists.
  6. Prefer returned commands from the planning result whenever available.
  7. Restore saved progress by default unless the user explicitly asks to restart.
  8. Save every completed segment result immediately.
  9. Build checkpoint source material before writing a checkpoint summary.

Existing Session Behavior

If plan_pdf_reading.py returns an existing_session:

  1. "Continue next segment" should restore state and then move forward.
  2. "Resume from last position" should restore state and read the current segment without advancing.
  3. "Where am I?" or "reading status" should call summarize_pdf_session.py.
  4. Only use --force-reset when the user explicitly wants to restart from the beginning.

In status summaries, distinguish clearly between:

  • total completed segments
  • contiguous completion from the beginning
  • the earliest incomplete checkpoint window

Output Structure

Default segment results should use this shape:

  1. Source information
  2. Content theme
  3. Three core ideas
  4. Reconstructed structure
  5. Key insights
  6. Actionable next steps
  7. Reusable takeaway

For checkpoints:

  1. stage range
  2. stage theme
  3. core findings
  4. reconstructed structure
  5. key insights
  6. follow-up actions or reading guidance
  7. reusable checkpoint takeaway

Writing Rules

  • The model writes the transformation directly.
  • Write result content to a temporary markdown file first.
  • Then call the correct record script to save it into the official session structure.
  • Do not manually write final segment-XXX.md or checkpoint-XXX.md files unless the record script is intentionally bypassed for debugging.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.91%
按下载量换算1,388

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills