Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计未展示

keep-markdownkeep Markdown 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

242

周安装

10

下载量

79
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:keep-markdown(keep Markdown 搜索)
来源仓库:https://keep.md
仓库路径:keep-markdown
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

keep-markdown 用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。

  • 适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。
  • 使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论。
  • 涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。
  • 适用宿主包括 Local Agent,接入前应确认版本、权限和运行环境要求。

SKILL.md

keep-markdown

Search and retrieve saved web content as clean Markdown from the keep.md API. Users save web pages via the keep.md browser extension or CLI, and this skill lets you search, list, and read that content.

Authentication

You need an API key to use keep.md. The user must provide one or have it set in their environment.

  1. Sign up at https://keep.md
  2. Go to https://keep.md/dashboard
  3. Create a personal API token
  4. Save the key:
npx keep-markdown key <your-token>

This persists the key to ~/.config/keep-markdown/config.json. Alternatively set the KEEP_API_KEY environment variable.

All CLI commands and API requests require this token. The API accepts it via Authorization: Bearer <token> header.

CLI Commands

Install nothing - use npx. Every command below works immediately.

Check account info

npx keep-markdown me

Returns your account ID, plan, link limit, and current link count.

List saved items

npx keep-markdown list

List items from the last 7 days

npx keep-markdown list --since 7d

List items with their Markdown content included

npx keep-markdown list --since 24h --content

Search items by keyword

npx keep-markdown search "react hooks"

Searches across titles, URLs, notes, and tags. This is equivalent to list --query "react hooks".

List with query flag

npx keep-markdown list --query "typescript" --limit 10

Get item metadata by ID

npx keep-markdown get <id>

Returns JSON with the item's URL, title, tags, status, content availability, and timestamps.

Get item content as Markdown

npx keep-markdown content <id>

Returns the extracted Markdown content of the saved page. This is the primary way to read saved web content.

Get usage statistics

npx keep-markdown stats

Get stats for a date range

npx keep-markdown stats --since 30d

Output raw JSON

Any command supports --json for machine-readable output:

npx keep-markdown list --since 7d --json

HTTP API Reference

Base URL: https://keep.md

All endpoints require Authorization: Bearer <token> header.

GET /api/me

Returns account info.

curl -H "Authorization: Bearer $KEEP_API_KEY" https://keep.md/api/me

Response:

{
  "accountId": "uuid",
  "authType": "api",
  "plan": "free",
  "linkLimit": 50,
  "linkCount": 12
}

GET /api/items

List saved items. Returns newest first.

Query parameters:

  • since — timestamp (ms) or relative like 7d, 24h
  • until — timestamp (ms) or relative
  • status — comma-separated status filter (e.g. stashed,active)
  • q — search query (searches title, URL, notes, tags)
  • limit — max items to return (default 200, max 1000)
  • offset — pagination offset
  • content — set to 1 to include Markdown content in response
curl -H "Authorization: Bearer $KEEP_API_KEY" "https://keep.md/api/items?limit=10&content=1"

Response:

{
  "items": [
    {
      "id": "sha256-hash",
      "url": "https://example.com/article",
      "title": "Example Article",
      "status": "stashed",
      "createdAt": 1706745600000,
      "contentAvailable": true,
      "contentMarkdown": "# Article Title\n\nArticle content..."
    }
  ],
  "limit": 10,
  "offset": 0,
  "count": 1
}

GET /api/items/:id

Get a single item's metadata.

curl -H "Authorization: Bearer $KEEP_API_KEY" https://keep.md/api/items/<id>

Add ?content=1 to include Markdown content in the response.

GET /api/items/:id/content

Get the extracted Markdown content for an item. Returns text/markdown.

curl -H "Authorization: Bearer $KEEP_API_KEY" https://keep.md/api/items/<id>/content

Response headers include:

  • x-content-size — content size in bytes
  • x-content-truncated1 if content was truncated, 0 otherwise

Returns 404 if no content has been extracted for this item.

GET /api/stats

Get usage statistics.

curl -H "Authorization: Bearer $KEEP_API_KEY" "https://keep.md/api/stats?since=30d"

Response:

{
  "total": 42,
  "byStatus": { "stashed": 30, "active": 12 },
  "content": { "errors": 2, "missing": 5 },
  "range": { "since": 1704067200000, "until": null, "count": 15 }
}

Item Fields

Each item has these fields:

  • id — SHA-256 hash of the URL (unique identifier)
  • url — the saved page URL
  • title — page title
  • status — e.g. stashed
  • tags — array of tag strings
  • notes — user notes
  • createdAt — timestamp (ms) when first saved
  • lastSeenAt — timestamp (ms) when last seen
  • contentAvailabletrue if Markdown content has been extracted
  • contentSize — content size in bytes
  • contentTruncatedtrue if content exceeded the size limit (~500KB)
  • contentExtractError — error message if extraction failed

Common Workflows

Find and read a saved article

First search for it:

npx keep-markdown search "article title"

Then read the content using the item ID from the results:

npx keep-markdown content <id>

List recent saves with content

npx keep-markdown list --since 7d --content --json

Check if content is available before reading

npx keep-markdown get <id>

Look at the contentAvailable field. If false, content hasn't been extracted yet.

Check your usage

npx keep-markdown me

Constraints

  • Content is capped at ~500KB per item — check contentTruncated field
  • Free plan: 50 saved links, Plus: 1,000, Pro: 3,000
  • List endpoint returns max 1,000 items per request (default 200)
  • Use offset for pagination through larger collections

OpenAPI Specification

Full API spec available at: https://keep.md/openapi.json

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

96.04%
按下载量换算76

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills