{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mycroft",
    "name": "mycroft",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fabe/mycroft",
    "canonicalUrl": "https://clawhub.ai/fabe/mycroft",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mycroft",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mycroft",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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",
      "slug": "mycroft",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T08:42:41.622Z",
      "expiresAt": "2026-05-19T08:42:41.622Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mycroft",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mycroft",
        "contentDisposition": "attachment; filename=\"mycroft-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mycroft"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mycroft"
    },
    "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/mycroft",
    "agentPageUrl": "https://openagent3.xyz/skills/mycroft/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mycroft/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mycroft/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": "mycroft",
        "body": "Use mycroft to ingest EPUBs and ebooks, build a local vector index, and ask questions about a book.\n\nSetup (once)\n\nexport OPENAI_API_KEY=\"...\"\nmycroft config onboard\nmycroft config resolve\n\nCommon commands\n\nList books: mycroft book list\nIngest EPUB: mycroft book ingest /path/to/book.epub\nIngest with summaries: mycroft book ingest /path/to/book.epub --summary\nIngest with batch embeddings (50% cheaper): mycroft book ingest /path/to/book.epub --batch\nIngest with batch summaries + embeddings: mycroft book ingest /path/to/book.epub --batch --summary\nResume batch ingestion: mycroft book ingest resume <id>\nCheck ingestion status: mycroft book ingest status <id>\nShow metadata: mycroft book show <id>\nAsk a question: mycroft book ask <id> \"What is the main conflict?\"\nSearch passages: mycroft book search <id> \"mad hatter\" --top-k 5\nDelete book: mycroft book delete <id> --force\nStart chat: mycroft chat start <id>\nAsk in session: mycroft chat ask <session> \"What does this foreshadow?\"\nContinue chat: mycroft chat repl <session>\n\nNotes\n\nUse mycroft config path to find the config file location.\nbook ask and book search require embeddings and an OPENAI_API_KEY.\nChat commands require embeddings and an OPENAI_API_KEY.\nPrefer book search and synthesize answers yourself before using book ask.\nSummaries increase ingestion time and cost significantly; enable --summary only when needed.\nUse --batch to run embeddings and summaries via the OpenAI Batch API at 50% cost; results may take up to 24 hours. When combined with --summary, summaries are batched first, then embeddings on resume.\nAfter --batch ingestion, use mycroft book ingest status <id> to check progress and mycroft book ingest resume <id> to complete indexing.\nIf a non-batch ingest is interrupted, use mycroft book ingest resume <id> to continue from the last saved chunk.\nIf a batch fails, resume automatically re-submits it.\nFor scripted runs, avoid interactive flags like --manual or omit confirmations with --force."
      }
    ],
    "body": "mycroft\n\nUse mycroft to ingest EPUBs and ebooks, build a local vector index, and ask questions about a book.\n\nSetup (once)\n\nexport OPENAI_API_KEY=\"...\"\nmycroft config onboard\nmycroft config resolve\n\nCommon commands\n\nList books: mycroft book list\nIngest EPUB: mycroft book ingest /path/to/book.epub\nIngest with summaries: mycroft book ingest /path/to/book.epub --summary\nIngest with batch embeddings (50% cheaper): mycroft book ingest /path/to/book.epub --batch\nIngest with batch summaries + embeddings: mycroft book ingest /path/to/book.epub --batch --summary\nResume batch ingestion: mycroft book ingest resume <id>\nCheck ingestion status: mycroft book ingest status <id>\nShow metadata: mycroft book show <id>\nAsk a question: mycroft book ask <id> \"What is the main conflict?\"\nSearch passages: mycroft book search <id> \"mad hatter\" --top-k 5\nDelete book: mycroft book delete <id> --force\nStart chat: mycroft chat start <id>\nAsk in session: mycroft chat ask <session> \"What does this foreshadow?\"\nContinue chat: mycroft chat repl <session>\n\nNotes\n\nUse mycroft config path to find the config file location.\nbook ask and book search require embeddings and an OPENAI_API_KEY.\nChat commands require embeddings and an OPENAI_API_KEY.\nPrefer book search and synthesize answers yourself before using book ask.\nSummaries increase ingestion time and cost significantly; enable --summary only when needed.\nUse --batch to run embeddings and summaries via the OpenAI Batch API at 50% cost; results may take up to 24 hours. When combined with --summary, summaries are batched first, then embeddings on resume.\nAfter --batch ingestion, use mycroft book ingest status <id> to check progress and mycroft book ingest resume <id> to complete indexing.\nIf a non-batch ingest is interrupted, use mycroft book ingest resume <id> to continue from the last saved chunk.\nIf a batch fails, resume automatically re-submits it.\nFor scripted runs, avoid interactive flags like --manual or omit confirmations with --force."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fabe/mycroft",
    "publisherUrl": "https://clawhub.ai/fabe/mycroft",
    "owner": "fabe",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mycroft",
    "downloadUrl": "https://openagent3.xyz/downloads/mycroft",
    "agentUrl": "https://openagent3.xyz/skills/mycroft/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mycroft/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mycroft/agent.md"
  }
}