TopRank Skills

Home / Claw Skills / 数据解析 / noverload
Official OpenClaw rules 36%

noverload

Give your agent a searchable knowledge brain - semantic search, topic synthesis, and action tracking across your saved YouTube videos, articles, Reddit threads, X posts, and PDFs

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 noverload 技能。 若已安装,则直接安装 noverload 技能。

Overview

Skill Key
drewautomates/noverload
Author
drewautomates
Source Repo
openclaw/skills
Version
-
Source Path
skills/drewautomates/noverload
Latest Commit SHA
7aaa5f9d689f7bb9f43ab267cabde540bfcd9329

Extracted Content

SKILL.md excerpt

# Noverload - Knowledge Memory for AI Agents

Your agent can now access your entire knowledge library. Search semantically, synthesize insights across sources, and track action items from everything you've saved.

## What Noverload Provides

- **Semantic Search**: Find content by meaning, not just keywords. Works across YouTube transcripts, articles, Reddit threads, X posts, and PDFs.
- **AI Summaries**: Every piece of content is processed with key insights, action items, and takeaways extracted automatically.
- **Topic Synthesis**: Combine insights from multiple sources to find patterns, contradictions, and connections.
- **Action Tracking**: Tasks extracted from content, organized by your Health, Wealth, and Relationships goals.
- **Framework Extraction**: Pull out methodologies, processes, and step-by-step guides from your saved content.

## Setup

### 1. Get Your Token

1. Sign up at https://noverload.com (free tier available)
2. Go to Settings > Apps
3. Click "New Token" to create a personal access token
4. Copy the token (you won't see it again)

### 2. Configure OpenClaw

Add to `~/.openclaw/openclaw.json`:

```json
{
  "skills": {
    "entries": {
      "noverload": {
        "env": {
          "NOVERLOAD_TOKEN": "nv_your_token_here"
        }
      }
    }
  }
}
```

This skill uses MCP (Model Context Protocol) under the hood. The skill spawns the Noverload MCP server automatically via npx when activated.

### Enable Saving (Optional)

By default, the skill is **read-only** for security. To let your agent save new content:

```json
{
  "mcpServers": {
    "noverload": {
      "command": "npx",
      "args": ["-y", "noverload-mcp@latest"],
      "env": {
        "NOVERLOAD_CONFIG": "{\"accessToken\":\"nv_your_token\",\"readOnly\":false}"
      }
    }
  }
}
```

With `readOnly: false`, your agent can:
- Save new URLs to your library
- Add tags to content
- Mark items as swipe files
- Complete action items

### 3. Restart OpenClaw

The skill will be available...

Related Claw Skills