Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

saved-markdownsaved Markdown 搜索

Agent Skill

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

总安装

7,026

周安装

287

GitHub Stars

公开资料未说明

下载量

2,250
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install saved-markdown

简介

将 Markdown、HTML 或 JSX 内容发布为公共可共享链接。

  • 适合托管文档、快速分享页面或协作编辑场景。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 上传内容并返回 URL,支持多种格式输出。
  • 注意内容审核和版权风险,确保素材合法合规。
  • saved-markdown 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
saved-markdown
description
|

saved-markdown

Publish immutable, anonymous pages to https://saved.md. Pages can be Markdown (with chart widgets), HTML (sanitized static pages with CSS), or JSX (sandboxed interactive React).


Core principle

Frontmatter decides when to use this skill. Everything below defines how to execute once triggered.


Workflow modes

After triggering, pick the mode that best matches user intent. If unclear, default to one-shot and mention that other modes exist.

ModeWhenWhat happens
One-shotQuick reports, logs, exportsGenerate → publish → return URL
InteractiveResumes, landing pages, anything user-facingGenerate → show draft → user edits → publish
Local-onlyUser explicitly wants no publishingSave .md / .html / .jsx, no API call
EnhanceExisting markdown needs charts or polishRead → enhance → publish new URL

Pages are immutable — edits always produce a new URL.


Execution flow (high level)

  1. Decide mode
  2. Decide starting point (template scaffold or freehand)
  3. Decide format (Markdown / HTML / JSX)
  4. Generate or transform content
  5. Validate
  6. Publish (unless local-only)

Starting point decision

1) User explicitly asks for a scaffold

  • Read templates/INDEX.md
  • Show relevant templates (filter by format if known)
  • Let user choose
  • Load selected template

2) User wants a scaffold from a screenshot / description

  • Follow templates/create-template.md
  • Create a new template file under:

- templates/markdowns/ for markdown - templates/htmls/ for html - templates/jsx/ for jsx

  • Update templates/INDEX.md
  • Then continue like a normal template flow

3) User wants to enhance existing markdown

  • Analyze content
  • Identify visualization opportunities:

- trends → line - categories → bar - proportions → pie - relationships → scatter

  • Add multiple charts where justified
  • Keep original structure intact
  • Publish as a new page

4) User describes content (no scaffold mentioned)

  • Match content type using routing table
  • Load corresponding scaffold template
  • Generate content from it

5) Nothing matches

  • Generate freehand:

- title - structured body - optional footer


Format decision

FormatUse whencontentType
MarkdownReports, docs, dashboards, resumes, charts"markdown" (or omit)
HTMLLayout-heavy pages, visual polish, static UI"html"
JSXInteractivity, filters, state, dynamic charts"jsx"

Critical rule

If using HTML or JSX, always explicitly set contentType. Otherwise the page renders incorrectly.


Content-type routing

Use this when generating structured Markdown or HTML content.

Content typeTriggersTemplate
Resume / CVresume, CV, profileresume-cv.md
Reportreport, analysis, findingsreport.md
Company profilecompany, about, servicescompany-profile.md
DashboardKPIs, metrics, scorecarddashboard-metrics.md
Documentationdocs, guide, manualdocumentation-guide.md
Proposalproposal, pitch, quoteproposal-pitch.md
Newsletternewsletter, digest, changelognewsletter-update.md
Portfolioportfolio, projectsportfolio-showcase.md
Eventevent, invitation, RSVPevent-invitation.md
Genericeverything elsefreehand

Golden rule

Never invent content to fill sections. Omit anything without real data.


Template scaffold workflow

When a template is selected:

  1. Read template file from templates/
  2. Show the scaffold skeleton to the user in a code block
  3. Ask what to change:

- content - sections - colors

  1. Replace placeholders with user data and remove irrelevant sections
  2. Validate
  3. Publish

If the user already provided full content, skip template browsing and go straight to generation.


Markdown enhancement (charts)

When enhancing markdown:

  • Add charts using markdown-ui-widget
  • Use multiple charts when data supports it
  • Ensure:

- numeric values are plain numbers (no $, %, K, etc.) - units go in labels, not values

Template guide: templates/charts.md


Validation checklist

Before publishing:

  • Content under 100 KB
  • Correct contentType
  • Charts valid (if markdown)
  • HTML sanitized (no scripts)
  • JSX:

- only allowed imports (react, react-dom) - no external packages

  • No placeholder text left

Template guide: templates/validation.md


Publishing

Preferred (script)

python scripts/publish.py --file <path> --content-type <markdown|html|jsx> --title "<title>"

Direct API contract (source-of-truth behavior)

Use POST https://saved.md/api/pages with JSON.

Required/expected payload fields:

  • markdown (string): page source body for markdown, html, or jsx pages
  • contentType (string): "markdown", "html", or "jsx"

Example payload:

{
  "markdown": "# My Page\
\
Published from skill",
  "contentType": "markdown"
}

For markdown pages, contentType may be omitted, but setting it explicitly is recommended for consistency.

Remixing an existing page (immutable URLs)

When users request edits to an existing saved.md URL:

  1. Parse page id from URL
  2. GET /api/pages/{id} and read markdown + contentType
  3. Apply requested edits to the returned markdown
  4. POST /api/pages using the edited markdown and the same contentType
  5. Return the new URL (old URL remains unchanged)

Never imply in-place updates are possible.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.64%
按下载量换算1,837

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills