用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kmavrodis/kratos-agent --skill document-summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Read the plant-floor Azure IoT surface — device twins (spindles, conveyors, robotic arms, vision systems), time-series telemetry with pre-annotated alarms, downtime events with cause codes and lot ids, and per-line OEE rollups (Availability × Performance × Quality).
Share generated files (PDFs, charts, CSVs) with Frank by writing them to /tmp and referencing the absolute path. The frontend auto-converts /tmp paths into download links.
Build the downloadable incident brief PDF — cover + KPI strip + OEE chart + downtime timeline + root-cause narrative + supplier/material signals + recommended actions + sign-off, per SOP §7.1. Renders via the inline HTML template + Playwright.
基于 SOC 职业分类
正在显示 SKILL.md
| name | document-summary |
| description | Summarize long documents, articles, or retrieved knowledge base content into concise briefs |
| enabled | true |
When the user asks you to summarize, condense, or brief a document or body of text, follow this workflow:
Content can come from multiple places:
rag_search from the knowledge base/tmp (read it via code_interpreter)web_search (fetch and extract key content)code_interpreter to extract text first:
pip install PyPDF2 then read with PdfReaderpip install python-docx then iterate paragraphsIf the user references a topic without providing text, use rag_search or web_search to retrieve relevant content first.
Choose the format based on user request or default to Executive Brief:
When summarizing content from multiple sources:
rag_search, web_search, or user-provided)code_interpreter to write a .md or .txt file to /tmp and reference the pathThis skill works best when combined with:
rag_search — retrieve internal documents to summarizeweb_search — fetch external articles or reportscode_interpreter — read files from /tmp, save summary outputsfile-sharing — deliver summary files to the userUser: "Summarize what's in our knowledge base about the onboarding process"
Steps:
rag_search with query "onboarding process"User: "Give me action items from these meeting notes: [pasted text]"
Steps:
User: "Summarize this article and save it as a file: [URL or topic]"
Steps:
web_search to fetch the article content/tmp/summary.md via code_interpreter