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

minimax-pdfminimax PDF 搜索

Agent Skill

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

总安装

171,108

周安装

7,350

GitHub Stars

公开资料未说明

下载量

59,976
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install minimax-pdf

简介

用于报告、论文和结构化文档的 HTML 优先 PDF 制作技能。必须在从 HTML 生成 PDF 可交付成果之前应用。

SKILL.md

name
minimax-pdf
description
HTML-first PDF production skill for reports, papers, and structured documents. Must be applied before generating PDF deliverables from HTML.

A. Scope and Operating Contract

This skill governs authoring and converting HTML into print-quality PDF.

Primary output goals:

  • Stable pagination and predictable layout on Linux runtime.
  • Searchable/selectable text (no screenshot-based fallback).
  • Professional, citation-safe long-form documents.

B. Hard Constraints (Do Not Violate)

B1. Conversion entrypoint

For HTML->PDF, use html_to_pdf only.

Forbidden:

  • Screenshot/print hacks or manual browser printing
  • Direct invocation of low-level local scripts for conversion

Reason: image-stitch paths degrade text quality and create pagination discontinuity.

B2. Rendering safety rules

  • Do not inject Paged.js manually. The runtime pipeline handles loading.
  • Do not rely on CSS counters (counter-reset, counter-increment, counter()).
  • Do not use runtime charting engines (ECharts, Chart.js, D3, Plotly, etc.).
  • Charts should be pre-rendered as static images and prefer landscape aspect ratio.
  • Decorative emoji/icon glyphs are disallowed unless explicitly requested.

C Intent Parsing

Classify the task before execution:

IntentTypical user requestPipeline
Build"写一份报告并导出 PDF"build-pdf
Transform"把这篇内容翻译后做成 PDF"transform-pdf
Existing PDF ops"提取/合并/拆分 PDF"process-existing-pdf
LaTeX explicit"请用 LaTeX/.tex/Tectonic"latex-compile

Clarification policy:

  • If request is clear, execute directly.
  • If ambiguous, ask once with a compact checklist:

- 文档类型/主题 - 是否要封面 - 字数或页数边界 - 语言与格式偏好

Important clarification behavior:

  • Ask at most one clarification round for intent.
  • After that, execute with explicit assumptions rather than repeatedly asking.

D. Content Governance

D1. Language policy

  • Chinese user query -> Chinese content
  • English user query -> English content
  • User-specified language -> obey exactly

D2. Outline policy

  • User provides outline -> preserve hierarchy/order, no silent restructuring
  • No outline -> choose structure by document type and keep narrative flow consistent

D3. Citation integrity

  • Never invent references.
  • Every citation must be verifiable (author/title/year/source).
  • Reused source should keep the same citation index.

Recommended citation style for this skill: IEEE numeric.

Sample reference list:

[1] R. Patel and L. Chen, "A comparative study on model routing," Journal of Applied AI, vol. 8, no. 3, pp. 44-58, 2025.
[2] M. Rivera, Systems Design Handbook, 2nd ed. New York, NY, USA: Northbridge Press, 2024.
[3] T. Huang, "Model evaluation checklist," Research Notes, https://example.org/eval (accessed Feb. 14, 2026).

E. Conversion Fidelity Checklist

When transforming existing material (translation/rewrite/reformat), preserve source fidelity:

E1. Links

  • Keep original destination URL in href.
  • Do not replace links with plain text.
  • Ensure conversion uses preserve_links=true.

E2. Images

Use a three-pass check:

  1. Count extracted image assets
  2. Count <img> tags in HTML
  3. Validate post-conversion image statistics

E3. Structure

  • Preserve source section sequence and anchor semantics.
  • Keep figure/table placement and numbering intent.
  • Do not add synthetic cover if source had none.

F. Implementation Blueprint

F1. Forbidden patterns

PatternWhy unstableReplacement
CSS content counters for numberingpagination DOM shifts can break numberingexplicit labels in markup
Dynamic JS chart libraries at render-timeprint pagination conflictspre-rendered static charts
Emoji/icon-heavy typographyLinux fallback inconsistencyplain text labels

Chart image policy:

  • Prefer landscape charts (width > height) to reduce page-break artifacts.

F2. Overflow guards (required baseline)

/* Keep printable blocks inside page width */
pre, table, figure, img, svg, .diagram, blockquote, .eq-block {
  max-inline-size: 100%;
  box-sizing: border-box;
}

pre {
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

figure img, figure svg {
  max-inline-size: 82%;
  max-block-size: 42vh;
  height: auto;
}

table { overflow-x: auto; }
.katex-display { overflow-x: auto; }
code { overflow-wrap: anywhere; }
a { overflow-wrap: anywhere; }
tr { break-inside: avoid; }

body {
  text-align: justify;
  text-align-last: start;
}

F3. Page model setup

@page {
  size: A4;
  margin: 2.4cm 1.9cm;
  @top-center { content: string(doc_title); }
  @bottom-center { content: counter(page); }
}

@page :first {
  @top-center { content: none; }
  @bottom-center { content: none; }
}

@page titlepage {
  @top-center { content: none; }
  @bottom-center { content: none; }
}

@page contents {
  @top-center { content: none; }
  @bottom-center { content: none; }
}

body { string-set: doc_title ""; }
h1 { string-set: doc_title content(); }
.cover-page { page: titlepage; }
.toc-sheet { page: contents; }

Pagination notes:

  • Apply break-inside: avoid only to compact units (single figure, single row, callout box).
  • Never apply it to large wrappers (chapter/section container).
  • Use thead { display: table-header-group; } for multi-page table headers.

F4. Visual direction

Default target is print-academic, not dashboard aesthetics.

Avoid:

  • heavy card shells
  • KPI tile walls
  • dark decorative title bars
  • oversized rounded/shadowed ornaments

Prefer:

  • plain headings + thin dividers
  • data-dense tables
  • restrained grayscale palette
  • simple, high-contrast typography

Type scale suggestion:

  • Body: 11pt
  • Subheading: 14pt
  • Primary heading: 18-20pt
  • Line height: 1.6-1.7

F. Cover page rules

Full-bleed baseline:

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

@page :first {
  margin: 0;
}

.cover-page {
  inline-size: 210mm;
  block-size: 297mm;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  break-after: page;
}

Cover variants:

  • Minimal: white background, centered title/meta, no decoration
  • Designed: low-saturation geometry/gradient, keep center area clear for title

If using image background, do not use CSS background-image. Use absolute <img>:

<section class="cover-page">
  <img class="cover-photo" src="cover.jpg" alt="">
  <div class="cover-layer">...</div>
</section>
.cover-photo {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cover-layer {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

F5. Numbering, references, TOC

Use explicit labels in markup, not CSS counters.

<figure id="arch-overview">
  <img src="system-overview.png" alt="System overview">
  <figcaption data-caption="Figure 1">Architecture Overview</figcaption>
</figure>

<table id="latency-table">
  <caption data-caption="Table 1">Latency by Scenario</caption>
  ...
</table>

<div class="eq-block" data-eq="(1)">$$f(x)=x^2+1$$</div>
figcaption::before {
  content: attr(data-caption) " ";
  font-weight: 700;
}

caption::before {
  content: attr(data-caption) " ";
  font-weight: 700;
}

.eq-block::after {
  content: attr(data-eq);
  float: right;
}

Anchor placement rule:

  • Put id on the highest logical container (figure, table, section wrapper), not on inline caption text.

TOC example with computed page numbers:

<nav class="toc-sheet" aria-label="Contents">
  <ul class="toc-list">
    <li><a href="#sec-intro">1 Intro</a></li>
    <li><a href="#sec-method">2 Method</a></li>
  </ul>
</nav>
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li { margin: 0.45em 0; }

.toc-list a {
  display: flex;
  gap: 0.5em;
  color: inherit;
  text-decoration: none;
}

.toc-list a::after {
  margin-inline-start: auto;
  content: target-counter(attr(href url), page);
}

Optional in-text page reference:

a.page-ref::after {
  content: " (p." target-counter(attr(href url), page) ")";
  opacity: 0.72;
  font-size: 0.86em;
}

F6. Formula and diagram policy

  • For math, use KaTeX with auto-render.
  • Keep formula color neutral and print-safe.
  • For Mermaid, keep topology simple; if rendering becomes unstable, replace with static image.

F7. Reusable layout patterns

Definition block:

.definition {
  border-inline-start: 3px solid #475569;
  padding-inline-start: 1rem;
  margin: 1rem 0;
}

.definition-title { font-weight: 700; }
.definition-body { font-style: italic; }

Procedure block:

.procedure {
  border: 1px solid #cbd5e1;
  padding: 0.75rem;
  background: #f8fafc;
}

Fixed-size centered badges must use flexbox:

.badge-index {
  inline-size: 1.7em;
  block-size: 1.7em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
}

F8. Citation anchors and footnotes

Reference anchor consistency:

  • Every <a href="#ref-n">[n]</a> must map to one <li id="ref-n">.
  • No dangling reference IDs.
a.citation {
  color: #1f2937;
  text-decoration: none;
  vertical-align: super;
  font-size: 0.78em;
}

.ref-list li {
  padding-inline-start: 2em;
  text-indent: -2em;
}

Paged footnote pattern:

.fn {
  float: footnote;
}

.fn::footnote-call {
  content: counter(footnote);
  vertical-align: super;
  font-size: 0.78em;
}

.fn::footnote-marker {
  content: counter(footnote) ". ";
}

@page {
  @footnote {
    margin-top: 1.1em;
    border-top: 1px solid #d1d5db;
    padding-top: 0.55em;
  }
}

F9. Layout tuning guide

When page count or layout does not meet targets, adjust in this priority order:

SymptomFirst moveSecond moveAvoid
Page count exceeds targetreduce heading sizesreduce line-height slightlyaggressive body font shrink
Page count below targetincrease line-heightincrease page margins slightlyadding low-value filler text
Table overflows page widthreduce cell paddingallow word wrapping on long tokensforcing fixed table widths
Figure breaks layoutreduce figure max-width/max-heightmove figure near paragraph boundaryavoid on large parent containers
Text looks crampedraise line-heightincrease side margins slightlyoversized heading jumps
Resume too sparse/densetune margins firstthen adjust heading scalechanging section order silently

G Fidelity Gates

Run all gates before final delivery.

G1. Hyperlinks

  • Ensure external links keep original href.
  • In conversion call, enforce preserve_links=true.

G2. Images (3-pass)

  1. Source extraction count (baseline)
  2. HTML <img> count and mapping
  3. Post-conversion result check

G3. Anchor integrity

  • Cross-references must point to real IDs.
  • Place id on top-level containers (figure, section wrapper), not inner text nodes.
  • For TOC and page refs, use print-aware links with page target resolution (target-counter).

G4. Structure parity (for transforms)

  • Keep source section order unless user requests restructuring.
  • Do not inject a cover page when source had none (unless user requests one).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.93%
按下载量换算50,338

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills