{
  "schemaVersion": "1.0",
  "item": {
    "slug": "summarize-file",
    "name": "Summarize File",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/MuhammadMuazzain/summarize-file",
    "canonicalUrl": "https://clawhub.ai/MuhammadMuazzain/summarize-file",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/summarize-file",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=summarize-file",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "index.js",
      "skill.json",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/summarize-file"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/summarize-file",
    "agentPageUrl": "https://openagent3.xyz/skills/summarize-file/agent",
    "manifestUrl": "https://openagent3.xyz/skills/summarize-file/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/summarize-file/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Purpose",
        "body": "Extracts key insights from text files (logs, reports, notes) and returns 2-3 sentence summaries. Ignores boilerplate/empty lines."
      },
      {
        "title": "Usage Examples",
        "body": "User: summarize file C:\\Users\\user\\Desktop\\report.txt\nClaw: File contains Q1 sales report: Revenue up 12% YoY, expenses flat, net profit +8%. Key risks: supply chain delays.\n\nUser: summarize file workspace/error.log\nClaw: Error log (Feb 22): 14 auth failures (IP 192.168.1.50), 2 DB timeouts, no critical crashes.\n\ntext"
      },
      {
        "title": "How It Works",
        "body": "Reads file content via workspace.read tool\nStrips empty lines, headers, timestamps\nFeeds to LLM with summarization prompt\nReturns concise 2-3 sentence summary"
      },
      {
        "title": "Security & Privacy",
        "body": "L1 Risk: Read-only file access\nNo network calls, no external APIs\nLocal processing only\nFile paths validated (no ../ escapes)"
      },
      {
        "title": "External Endpoints",
        "body": "None. Purely local file → LLM → text."
      },
      {
        "title": "Trust Statement",
        "body": "This skill reads local files and summarizes locally. No data leaves your machine."
      }
    ],
    "body": "Summarize-File Skill\nPurpose\n\nExtracts key insights from text files (logs, reports, notes) and returns 2-3 sentence summaries. Ignores boilerplate/empty lines.\n\nUsage Examples\n\nUser: summarize file C:\\Users\\user\\Desktop\\report.txt Claw: File contains Q1 sales report: Revenue up 12% YoY, expenses flat, net profit +8%. Key risks: supply chain delays.\n\nUser: summarize file workspace/error.log Claw: Error log (Feb 22): 14 auth failures (IP 192.168.1.50), 2 DB timeouts, no critical crashes.\n\ntext\n\nHow It Works\nReads file content via workspace.read tool\nStrips empty lines, headers, timestamps\nFeeds to LLM with summarization prompt\nReturns concise 2-3 sentence summary\nSecurity & Privacy\nL1 Risk: Read-only file access\nNo network calls, no external APIs\nLocal processing only\nFile paths validated (no ../ escapes)\nExternal Endpoints\n\nNone. Purely local file → LLM → text.\n\nTrust Statement\n\nThis skill reads local files and summarizes locally. No data leaves your machine."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MuhammadMuazzain/summarize-file",
    "publisherUrl": "https://clawhub.ai/MuhammadMuazzain/summarize-file",
    "owner": "MuhammadMuazzain",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/summarize-file",
    "downloadUrl": "https://openagent3.xyz/downloads/summarize-file",
    "agentUrl": "https://openagent3.xyz/skills/summarize-file/agent",
    "manifestUrl": "https://openagent3.xyz/skills/summarize-file/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/summarize-file/agent.md"
  }
}