/install calliper-compare2markdown
Calliper-Compare2Markdown
Run a JavaScript workflow that submits two local files to the calliper synchronous API through PDRouter (POST /openapi/{serviceCode}/compare/markdown by default) and returns Markdown diff output in one step. This is suitable for document comparison, change extraction, compliance checks, and feeding structured diff content into follow-up scripts.
Installation
npx skills add PaodingAI/skills
Usage
node skills/calliper-saas-markdown/scripts/compare_to_markdown.js \x3Cleft-file-path> \x3Cright-file-path> [output-markdown-path]
Execution Constraints
- You must invoke
scripts/compare_to_markdown.jsdirectly. Do not reimplement the API flow yourself. - The behavior contract below explains what the script does, what it outputs, and when to use it. It is not a manual checklist for the model to imitate step by step.
- For any task that depends on cross-document differences, you must run this script first and continue from the generated Markdown result.
- Only inspect or modify the script implementation when the script itself is unavailable, failing, or needs a fix. Do not bypass it during normal use.
When to Use
- Use this skill when the user wants to compare two documents and get structured differences in Markdown.
- Use this skill when the user says things like "diff to markdown", "compare and output markdown", "导出差异 markdown", or asks for a machine-readable diff summary.
- When downstream work depends on differences, such as clause extraction, mismatch validation, or rule checks, use this skill first.
- When the diff content is only intermediate input, prefer writing to a working file and extract only required segments instead of returning full raw Markdown.
- When the user explicitly asks for the original markdown diff output, return the full Markdown directly.
Environment Variables
PD_ROUTER_API_KEY: Preferred bearer token used by the script.CALLIPER_ACCESS_TOKEN: Optional fallback bearer token whenPD_ROUTER_API_KEYis absent.PD_ROUTER_BASE_URL: Optional. Defaults tohttps://platform.paodingai.com/.PD_ROUTER_SERVICE_CODE: Optional. Defaults tocalliper.PD_ROUTER_COMPARE_ENDPOINT: Optional. Defaults to/compare/markdown. Use only when routing endpoint differs.CALLIPER_COMPARE_CONFIG: Optional. JSON string forwarded asconfigform field. Default is{}.
Script Behavior
- Read bearer token from
PD_ROUTER_API_KEY; fallback toCALLIPER_ACCESS_TOKEN; fail if both are missing. - Validate both local input files exist.
- Send one multipart request with
file1,file2, and optionalconfigtoPOST /openapi/{serviceCode}{compareEndpoint}usingAuthorization: Bearer \x3Ctoken>. - Parse final response and output:
- Markdown text directly when response is markdown/plain text.
- Otherwise, resolve markdown from common JSON fields (
data.markdown,markdown) or fallback to JSON text.
- If
output-markdown-pathis provided, also write the same output text to that file while still printing to stdout. - Write progress and errors to stderr and return non-zero exit code on failure.
- For field/table extraction tasks, parse and return only required fragments unless user explicitly asks for the full markdown diff.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install calliper-compare2markdown - 安装完成后,直接呼叫该 Skill 的名称或使用
/calliper-compare2markdown触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Calliper-Compare2Markdown 是什么?
Compare two local documents and convert differences into LLM-ready Markdown in one synchronous call. Supports PDF, Word, PPT, and image documents accepted by... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 43 次。
如何安装 Calliper-Compare2Markdown?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install calliper-compare2markdown」即可一键安装,无需额外配置。
Calliper-Compare2Markdown 是免费的吗?
是的,Calliper-Compare2Markdown 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Calliper-Compare2Markdown 支持哪些平台?
Calliper-Compare2Markdown 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Calliper-Compare2Markdown?
由 cumtyc(@cumtyc)开发并维护,当前版本 v1.2.0。