summarize-document
GitHub通过 Superlinked MCP 工具高效总结长文档,避免加载全文到上下文。支持 PDF、Office 及文本格式,输出摘要文件并处理错误。
Trigger Scenarios
Install
npx skills add superlinked/sie --skill summarize-document -g -y
SKILL.md
Frontmatter
{
"name": "summarize-document",
"description": "Summarize a long PDF, scan, office file, text file, or markdown file through the connected Superlinked MCP edge instead of reading the whole source into model context. Use when the user asks for a summary, overview, digest, or \"what does this document say\" about a large file."
}
Summarize a Document with Superlinked MCP
Use the connected Superlinked MCP server to summarize the source on the SIE
cluster through the MCP summarize_document tool.
Steps
-
Do not open, view, attach, or read the whole source document into context.
-
Call the Superlinked MCP
summarize_documenttool:- For PDF, scan, image-of-text, DOCX, PPTX, XLSX, or HTML inputs, read raw
bytes only, base64-encode them, and pass
document_base64plusfilename. - For text or markdown inputs, read raw bytes only, base64-encode them, and
pass
content_base64. - Leave
engineasautounless the user explicitly asks to force a conversion engine.
- For PDF, scan, image-of-text, DOCX, PPTX, XLSX, or HTML inputs, read raw
bytes only, base64-encode them, and pass
-
Write the returned
summarytoprocessed/<source-stem>.summary.md. Createprocessed/if it does not exist. -
Your next message must begin with a short receipt:
Summarized <source> -> processed/<source-stem>.summary.md (<summary_chars> chars)If metadata includes
token_savings_estimate, include it as an estimate. -
Present the summary from the artifact. If the user asks for exact quotes or detailed follow-up, use
parse-documentand inspect only relevant sections of the parsed markdown.
Errors
If the MCP call fails, relay the tool error and do not retry blindly. For auth
or connector errors, tell the user to reinstall the generated MCP plugin pack or
rerun the generated claude mcp add ... --header 'Authorization: Bearer ...'
command from INSTALL.md.
Version History
- 1c7bbe8 Current 2026-09-08 17:34


