{
  "schemaVersion": "1.0",
  "item": {
    "slug": "md-knowledge-spliter",
    "name": "MdSpliter",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Josephyb97/md-knowledge-spliter",
    "canonicalUrl": "https://clawhub.ai/Josephyb97/md-knowledge-spliter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/md-knowledge-spliter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=md-knowledge-spliter",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "assets/capsule_knowledge_splitter.json",
      "assets/evomap_bundle.json",
      "assets/gene_knowledge_splitter.json",
      "package.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/md-knowledge-spliter"
    },
    "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/md-knowledge-spliter",
    "agentPageUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/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": "Knowledge Splitter",
        "body": "大型知识文档分块查阅工具。"
      },
      {
        "title": "使用场景",
        "body": "当知识库文件过大（如 >5KB）时，应先分块存储，通过索引按需加载。"
      },
      {
        "title": "1. 分块规则",
        "body": "按主题/类型拆分知识文件：\n\nknowledge/\n├── evomap-chunks/\n│   ├── INDEX.md          # 索引文件\n│   ├── 01-intro.md       # 主题1\n│   ├── 02-protocol.md    # 主题2\n│   └── ...\n└── evomap_full.md       # 原始完整文件（可选保留）"
      },
      {
        "title": "2. 索引文件格式",
        "body": "每个知识库目录应有 INDEX.md：\n\n# {知识库名} 索引\n\n| 文件 | 标签 | 适用场景 |\n|------|------|----------|\n| 01-intro.md | intro, overview | 什么是X |\n| 02-protocol.md | protocol, api | 协议相关 |\n\n## 使用方法\n\n1. 根据查询主题匹配标签\n2. 读取对应的分块文件\n3. 如需更详细内容，再查阅完整文件"
      },
      {
        "title": "3. 查阅流程",
        "body": "当需要查询知识时:\n  1. 定位知识库目录 (如 knowledge/evomap-chunks/)\n  2. 读取 INDEX.md 获取索引\n  3. 根据查询主题匹配文件\n  4. 读取对应的分块文件\n  5. 如分块内容不足，再读取完整文件"
      },
      {
        "title": "工具",
        "body": "使用 read 工具读取文件：\n\nread 可指定 offset 和 limit 进行部分读取\n大文件优先用分块读取"
      },
      {
        "title": "示例",
        "body": "查询 EvoMap GDI 评分:\n\n读取 knowledge/evomap-chunks/INDEX.md\n匹配标签 \"gdi\" → 05-gdi.md\n读取 knowledge/evomap-chunks/05-gdi.md"
      },
      {
        "title": "注意事项",
        "body": "分块文件保持 <2KB 为宜\n索引文件包含所有分块的标签和用途\n更新知识时同步更新索引\n原始完整文件可选保留用于全文检索"
      }
    ],
    "body": "Knowledge Splitter\n\n大型知识文档分块查阅工具。\n\n使用场景\n\n当知识库文件过大（如 >5KB）时，应先分块存储，通过索引按需加载。\n\n工作流程\n1. 分块规则\n\n按主题/类型拆分知识文件：\n\nknowledge/\n├── evomap-chunks/\n│   ├── INDEX.md          # 索引文件\n│   ├── 01-intro.md       # 主题1\n│   ├── 02-protocol.md    # 主题2\n│   └── ...\n└── evomap_full.md       # 原始完整文件（可选保留）\n\n2. 索引文件格式\n\n每个知识库目录应有 INDEX.md：\n\n# {知识库名} 索引\n\n| 文件 | 标签 | 适用场景 |\n|------|------|----------|\n| 01-intro.md | intro, overview | 什么是X |\n| 02-protocol.md | protocol, api | 协议相关 |\n\n## 使用方法\n\n1. 根据查询主题匹配标签\n2. 读取对应的分块文件\n3. 如需更详细内容，再查阅完整文件\n\n3. 查阅流程\n当需要查询知识时:\n  1. 定位知识库目录 (如 knowledge/evomap-chunks/)\n  2. 读取 INDEX.md 获取索引\n  3. 根据查询主题匹配文件\n  4. 读取对应的分块文件\n  5. 如分块内容不足，再读取完整文件\n\n工具\n\n使用 read 工具读取文件：\n\nread 可指定 offset 和 limit 进行部分读取\n大文件优先用分块读取\n示例\n\n查询 EvoMap GDI 评分:\n\n读取 knowledge/evomap-chunks/INDEX.md\n匹配标签 \"gdi\" → 05-gdi.md\n读取 knowledge/evomap-chunks/05-gdi.md\n注意事项\n分块文件保持 <2KB 为宜\n索引文件包含所有分块的标签和用途\n更新知识时同步更新索引\n原始完整文件可选保留用于全文检索"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Josephyb97/md-knowledge-spliter",
    "publisherUrl": "https://clawhub.ai/Josephyb97/md-knowledge-spliter",
    "owner": "Josephyb97",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/md-knowledge-spliter",
    "downloadUrl": "https://openagent3.xyz/downloads/md-knowledge-spliter",
    "agentUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/md-knowledge-spliter/agent.md"
  }
}