Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

sombra-ai-reader-modeSombra ai 阅读器模式

Agent Skill

sombra-ai-reader-mode 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,120

周安装

130

GitHub Stars

公开资料未说明

下载量

1,040
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sombra-ai-reader-mode(Sombra ai 阅读器模式)
来源仓库:https://github.com/dazld/sombra-ai-reader-mode
安装命令:
openclaw skills install sombra-ai-reader-mode
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install sombra-ai-reader-mode

简介

AI 的持久阅读器模式。保存网页、组织成集合、提炼出密集的上下文,并通过 MCP 提供这一切。

SKILL.md

name
sombra-ai-reader-mode
description
Persistent reader mode for AI. Save web pages, organise into collections, distil to dense context, and serve it all through MCP.
version
1.0.1
metadata
openclaw
requires
bins
emoji
📚
homepage
https://sombra.so

Sombra — Reader Mode for AI

Persistent reader mode for AI. Give your OpenClaw agent a research library that lasts between sessions. Save permanebt copies of web pages as pristine markdown, organise them into collections, distil the important parts, and access it all through MCP.

What this skill does

Sombra is an MCP server that provides your agent with persistent knowledge management. Instead of starting every session from scratch, your agent reads from a curated library of web pages, notes, and distilled context that you (or the agent) have built up over time.

  • Save web pages as clean markdown with ads, nav, and layout stripped out
  • Organise into collections scoped to projects or tasks
  • Distil collections into dense context summaries that preserve code blocks verbatim
  • Search across everything you've saved
  • Version history on every change, so you can roll back if the agent rewrites something you preferred

Setup

1. Get a Personal Access Token

Sign up at sombra.so and create a token in Settings > Access Tokens.

2. Configure OpenClaw

Add Sombra to your openclaw.json:

{
  "mcpServers": {
    "sombra": {
      "command": "npx",
      "args": ["-y", "sombra-mcp", "--token", "sombra_pat_YOUR_TOKEN_HERE"]
    }
  }
}

Replace sombra_pat_YOUR_TOKEN_HERE with your actual token.

Check sombra.so/mcp for the latest connection instructions.

Sombra supports OAuth 2.1 for interactive clients and Bearer tokens for headless agents.

Also works with

Sombra is a standard MCP server (Streamable HTTP transport) that works with any MCP client:

  • Claude Desktop / Claude.ai — add as a connector in Settings > Connectors
  • Claude Codeclaude mcp add --transport http sombra https://sombra.so/mcp
  • ChatGPT — add as an app in Settings > Apps (Developer mode)
  • Cursor, VS Code, Windsurf — add as an MCP server in your MCP config

Full setup instructions: sombra.so/mcp

Available tools (19)

Save & Create

ToolPurpose
save_urlSave a web page by URL. Re-fetches and updates if previously saved
create_artifactCreate a new note artifact with markdown content

Read & Browse

ToolPurpose
browse_collectionsBrowse your collections returning title, id, and description
read_collectionRead the full content from a specific collection
read_collection_contextRead the distilled context/summary from a collection
fetch_artifactFetch a single artifact by ID
browse_notesBrowse all note artifacts, sorted by most recent first
search_artifactsSearch saved artifacts by title, content, or URL
list_archivedList all archived (deleted) artifacts

Update & Organise

ToolPurpose
update_artifactUpdate an artifact's metadata or content (notes only)
move_artifactMove a single artifact to a different collection
bulk_move_artifactsMove multiple artifacts to a different collection at once
remove_from_collectionRemove an artifact from a collection (back to unsorted)
create_collectionCreate a new collection
update_collectionUpdate a collection's name, description, or icon
write_collection_contextWrite distilled context/summary to a collection. Preserves all code verbatim

Delete & Restore

ToolPurpose
delete_artifactDelete an artifact (archives it, content is preserved)
delete_collectionDelete a collection (archives it, artifacts are preserved)
restore_artifactRestore a previously deleted artifact

Deletes are never permanent. All deleted items can be recovered.

Prompts (2)

PromptPurpose
distill_collectionGenerate a context-engineered distillation prompt for a collection
distill_technical_collectionSpecialised distillation for collections with heavy technical content

Resources

Each collection is exposed as an MCP resource with the URI scheme sombra://project/{id}.

Recommended workflows

Research before coding

Before starting a task, have your agent read the relevant collection context:

Read the distilled context from my "Pedestal Migration" collection,
then implement the HTTP handler changes based on those docs.

The agent gets dense, accurate context instead of relying on training data.

Build a research collection

Ask your agent to research a topic and organise what it finds:

Research rate limiting approaches for Clojure web services.
Save the most useful pages to a new "Rate Limiting" collection,
then write a distilled context summarising the key approaches.

The research persists between sessions. Tomorrow's session picks up where today's left off.

Save discoveries during work

When your agent finds something useful mid-task, it can save it:

That blog post about the transit encoding bug was helpful.
Save it to my "API Performance" collection.

Prevent agent drift

Agent drift happens when your AI gradually diverges from correct behaviour because its context is stale or incomplete. Sombra prevents this by giving your agent access to verified, current documentation instead of months-old training data.

Before a coding session:

Read the context from my "API Integration" collection.
Use those docs as the source of truth for endpoint URLs
and auth flows. Do not rely on your training data.

Tips

  • Scope collections tightly. "EU e-invoicing integration" beats "Work stuff". One collection per project or task.
  • Distil aggressively. Forty pages of raw docs in context is noise. Five hundred tokens of distilled context with code examples verbatim is signal.
  • Let context compound. Have your agent save useful discoveries back to the collection. Each session makes the next one better.
  • Use context before code. Always read the collection context before generating code against external APIs or libraries.

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.28%
按下载量换算991

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills