{
  "schemaVersion": "1.0",
  "item": {
    "slug": "noverload",
    "name": "Noverload - Knowledge Memory",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/drewautomates/noverload",
    "canonicalUrl": "https://clawhub.ai/drewautomates/noverload",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/noverload",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=noverload",
    "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",
      "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/noverload"
    },
    "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/noverload",
    "agentPageUrl": "https://openagent3.xyz/skills/noverload/agent",
    "manifestUrl": "https://openagent3.xyz/skills/noverload/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/noverload/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": "Noverload - Knowledge Memory for AI Agents",
        "body": "Your agent can now access your entire knowledge library. Search semantically, synthesize insights across sources, and track action items from everything you've saved."
      },
      {
        "title": "What Noverload Provides",
        "body": "Semantic Search: Find content by meaning, not just keywords. Works across YouTube transcripts, articles, Reddit threads, X posts, and PDFs.\nAI Summaries: Every piece of content is processed with key insights, action items, and takeaways extracted automatically.\nTopic Synthesis: Combine insights from multiple sources to find patterns, contradictions, and connections.\nAction Tracking: Tasks extracted from content, organized by your Health, Wealth, and Relationships goals.\nFramework Extraction: Pull out methodologies, processes, and step-by-step guides from your saved content."
      },
      {
        "title": "1. Get Your Token",
        "body": "Sign up at https://noverload.com (free tier available)\nGo to Settings > Apps\nClick \"New Token\" to create a personal access token\nCopy the token (you won't see it again)"
      },
      {
        "title": "2. Configure OpenClaw",
        "body": "Add to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"noverload\": {\n        \"env\": {\n          \"NOVERLOAD_TOKEN\": \"nv_your_token_here\"\n        }\n      }\n    }\n  }\n}\n\nThis skill uses MCP (Model Context Protocol) under the hood. The skill spawns the Noverload MCP server automatically via npx when activated."
      },
      {
        "title": "Enable Saving (Optional)",
        "body": "By default, the skill is read-only for security. To let your agent save new content:\n\n{\n  \"mcpServers\": {\n    \"noverload\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"noverload-mcp@latest\"],\n      \"env\": {\n        \"NOVERLOAD_CONFIG\": \"{\\\"accessToken\\\":\\\"nv_your_token\\\",\\\"readOnly\\\":false}\"\n      }\n    }\n  }\n}\n\nWith readOnly: false, your agent can:\n\nSave new URLs to your library\nAdd tags to content\nMark items as swipe files\nComplete action items"
      },
      {
        "title": "3. Restart OpenClaw",
        "body": "The skill will be available in your next session."
      },
      {
        "title": "Search Your Knowledge Base",
        "body": "Search my Noverload for productivity tips\nFind content about machine learning in my library\nWhat have I saved about negotiation tactics?\nLook for anything about React Server Components\n\nThe search uses semantic matching - it understands meaning, not just keywords. Ask naturally."
      },
      {
        "title": "Get Full Content",
        "body": "Get the full transcript of that Naval podcast\nShow me the complete article about pricing strategy\nGive me details on the YouTube video about habits\n\nRetrieves full text, summaries, key insights, and metadata."
      },
      {
        "title": "Synthesize Topics",
        "body": "Synthesize what I've saved about startup growth\nFind patterns across my productivity content\nWhat do different sources say about remote work?\nCompare perspectives on AI safety from my library\n\nAnalyzes multiple sources to find connections, contradictions, and actionable patterns."
      },
      {
        "title": "Extract Frameworks",
        "body": "What methodologies have I saved for building habits?\nFind step-by-step processes from my content\nWhat frameworks exist in my library for cold outreach?\n\nPulls structured approaches from your saved content."
      },
      {
        "title": "Track Actions",
        "body": "What action items do I have from my saved content?\nShow pending tasks for my Health goals\nWhat should I work on based on what I've learned?\nMark the meditation action as complete"
      },
      {
        "title": "Save New Content",
        "body": "Save this URL to Noverload: https://example.com/article\nAdd this video to my knowledge base\n\nSaves content for processing (summaries, actions, embeddings generated automatically)."
      },
      {
        "title": "Browse Library",
        "body": "What YouTube videos have I saved recently?\nShow my articles from last week\nList content tagged with \"marketing\""
      },
      {
        "title": "Morning Brief",
        "body": "\"Based on my saved content, what are the top 3 action items I should tackle today?\""
      },
      {
        "title": "Research Mode",
        "body": "\"Find everything I've saved about pricing strategy and give me the key frameworks\""
      },
      {
        "title": "Writing Assistant",
        "body": "\"What quotes and insights do I have saved about remote work? I'm writing a blog post.\""
      },
      {
        "title": "Learning Path",
        "body": "\"Create a learning sequence from my saved machine learning content, starting with fundamentals\""
      },
      {
        "title": "Decision Support",
        "body": "\"I'm choosing between React and Vue. What have I saved that compares them?\""
      },
      {
        "title": "Content Types Supported",
        "body": "TypeWhat Gets ExtractedYouTubeFull transcript, timestamps, key moments, action itemsArticlesFull text, main arguments, quotes, frameworksRedditPost + top comments, discussion themes, adviceX/TwitterThread text, key points, linked contentPDFsFull text with OCR, document structure, highlights"
      },
      {
        "title": "Tips for Best Results",
        "body": "Be specific: \"What did Paul Graham say about startup ideas?\" works better than \"startup stuff\"\nUse natural language: The search understands context and meaning\nCombine commands: Search first, then synthesize the results\nCheck actions: Your saved content has extracted tasks - use them"
      },
      {
        "title": "Privacy & Security",
        "body": "Your data stays in YOUR Noverload account\nAgent accesses via secure, revocable token\nRead-only mode available for extra safety\nNo content is stored on OpenClaw servers\nRevoke access anytime from Noverload settings"
      },
      {
        "title": "Limits",
        "body": "PlanContent SavesMCP AccessFree10/monthNoProUnlimitedYesTrialUnlimitedYes (7 days)\n\nMCP/API access is a Pro feature. Start a 7-day free trial to try it out."
      },
      {
        "title": "Support",
        "body": "Documentation: https://noverload.com/docs/mcp\nOpenClaw Integration: https://noverload.com/openclaw\nEmail: support@noverload.com"
      },
      {
        "title": "Version",
        "body": "1.0.0 - Initial release for OpenClaw"
      }
    ],
    "body": "Noverload - Knowledge Memory for AI Agents\n\nYour agent can now access your entire knowledge library. Search semantically, synthesize insights across sources, and track action items from everything you've saved.\n\nWhat Noverload Provides\nSemantic Search: Find content by meaning, not just keywords. Works across YouTube transcripts, articles, Reddit threads, X posts, and PDFs.\nAI Summaries: Every piece of content is processed with key insights, action items, and takeaways extracted automatically.\nTopic Synthesis: Combine insights from multiple sources to find patterns, contradictions, and connections.\nAction Tracking: Tasks extracted from content, organized by your Health, Wealth, and Relationships goals.\nFramework Extraction: Pull out methodologies, processes, and step-by-step guides from your saved content.\nSetup\n1. Get Your Token\nSign up at https://noverload.com (free tier available)\nGo to Settings > Apps\nClick \"New Token\" to create a personal access token\nCopy the token (you won't see it again)\n2. Configure OpenClaw\n\nAdd to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"noverload\": {\n        \"env\": {\n          \"NOVERLOAD_TOKEN\": \"nv_your_token_here\"\n        }\n      }\n    }\n  }\n}\n\n\nThis skill uses MCP (Model Context Protocol) under the hood. The skill spawns the Noverload MCP server automatically via npx when activated.\n\nEnable Saving (Optional)\n\nBy default, the skill is read-only for security. To let your agent save new content:\n\n{\n  \"mcpServers\": {\n    \"noverload\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"noverload-mcp@latest\"],\n      \"env\": {\n        \"NOVERLOAD_CONFIG\": \"{\\\"accessToken\\\":\\\"nv_your_token\\\",\\\"readOnly\\\":false}\"\n      }\n    }\n  }\n}\n\n\nWith readOnly: false, your agent can:\n\nSave new URLs to your library\nAdd tags to content\nMark items as swipe files\nComplete action items\n3. Restart OpenClaw\n\nThe skill will be available in your next session.\n\nAvailable Commands\nSearch Your Knowledge Base\nSearch my Noverload for productivity tips\nFind content about machine learning in my library\nWhat have I saved about negotiation tactics?\nLook for anything about React Server Components\n\n\nThe search uses semantic matching - it understands meaning, not just keywords. Ask naturally.\n\nGet Full Content\nGet the full transcript of that Naval podcast\nShow me the complete article about pricing strategy\nGive me details on the YouTube video about habits\n\n\nRetrieves full text, summaries, key insights, and metadata.\n\nSynthesize Topics\nSynthesize what I've saved about startup growth\nFind patterns across my productivity content\nWhat do different sources say about remote work?\nCompare perspectives on AI safety from my library\n\n\nAnalyzes multiple sources to find connections, contradictions, and actionable patterns.\n\nExtract Frameworks\nWhat methodologies have I saved for building habits?\nFind step-by-step processes from my content\nWhat frameworks exist in my library for cold outreach?\n\n\nPulls structured approaches from your saved content.\n\nTrack Actions\nWhat action items do I have from my saved content?\nShow pending tasks for my Health goals\nWhat should I work on based on what I've learned?\nMark the meditation action as complete\n\nSave New Content\nSave this URL to Noverload: https://example.com/article\nAdd this video to my knowledge base\n\n\nSaves content for processing (summaries, actions, embeddings generated automatically).\n\nBrowse Library\nWhat YouTube videos have I saved recently?\nShow my articles from last week\nList content tagged with \"marketing\"\n\nExample Workflows\nMorning Brief\n\"Based on my saved content, what are the top 3 action items I should tackle today?\"\n\nResearch Mode\n\"Find everything I've saved about pricing strategy and give me the key frameworks\"\n\nWriting Assistant\n\"What quotes and insights do I have saved about remote work? I'm writing a blog post.\"\n\nLearning Path\n\"Create a learning sequence from my saved machine learning content, starting with fundamentals\"\n\nDecision Support\n\"I'm choosing between React and Vue. What have I saved that compares them?\"\n\nContent Types Supported\nType\tWhat Gets Extracted\nYouTube\tFull transcript, timestamps, key moments, action items\nArticles\tFull text, main arguments, quotes, frameworks\nReddit\tPost + top comments, discussion themes, advice\nX/Twitter\tThread text, key points, linked content\nPDFs\tFull text with OCR, document structure, highlights\nTips for Best Results\nBe specific: \"What did Paul Graham say about startup ideas?\" works better than \"startup stuff\"\nUse natural language: The search understands context and meaning\nCombine commands: Search first, then synthesize the results\nCheck actions: Your saved content has extracted tasks - use them\nPrivacy & Security\nYour data stays in YOUR Noverload account\nAgent accesses via secure, revocable token\nRead-only mode available for extra safety\nNo content is stored on OpenClaw servers\nRevoke access anytime from Noverload settings\nLimits\nPlan\tContent Saves\tMCP Access\nFree\t10/month\tNo\nPro\tUnlimited\tYes\nTrial\tUnlimited\tYes (7 days)\n\nMCP/API access is a Pro feature. Start a 7-day free trial to try it out.\n\nSupport\nDocumentation: https://noverload.com/docs/mcp\nOpenClaw Integration: https://noverload.com/openclaw\nEmail: support@noverload.com\nVersion\n\n1.0.0 - Initial release for OpenClaw"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/drewautomates/noverload",
    "publisherUrl": "https://clawhub.ai/drewautomates/noverload",
    "owner": "drewautomates",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/noverload",
    "downloadUrl": "https://openagent3.xyz/downloads/noverload",
    "agentUrl": "https://openagent3.xyz/skills/noverload/agent",
    "manifestUrl": "https://openagent3.xyz/skills/noverload/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/noverload/agent.md"
  }
}