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

mdshare-agentmdshare Agent 文档

Agent Skill

mdshare-agent 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,103

周安装

302

GitHub Stars

公开资料未说明

下载量

2,488
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mdshare-agent

简介

通过 MDShare 服务创建和管理临时 Markdown 共享链接。

  • 适用于团队协作、代码片段分享或文档临时发布等场景。
  • 支持增删改查操作,所有共享内容默认设置有效期限制。
  • 使用前需确认网络访问权限及共享内容的敏感程度。mdshare-agent 属于运维类 Skill,可作为该场景下的辅助能力补充。
  • 注意:临时共享不具备持久存储能力,重要信息应另作备份。

SKILL.md

name
mdshare-agent
description
Create, read, unlock, update, and delete temporary Markdown shares through the MDShare service. Use when an agent needs to publish Markdown as a short-lived share link, fetch shared Markdown, access password-protected or burn-after-read content, continue editing with a manage or edit token, or hand back public/edit/manage links for collaboration. Triggers include “share this markdown”, “generate a temporary link”, “publish notes”, “read an MDShare link”, “update an existing share”, and “delete a temporary share”.

MDShare Agent

Use MDShare as a lightweight anonymous Markdown publishing backend.

Service

  • Default base URL: https://share.yekyos.com
  • If the caller provides another deployment, use that instead.
  • Keep public links and token-bearing links separate:

- Public link: /s/{slug} - Edit/manage page: /e/{slug}#edit={token} or /e/{slug}#manage={token}

  • Never expose ownerToken or editorToken unless the user explicitly wants those links.

Core Workflows

Create a share

Send POST /api/shares with JSON:

{
  "markdownContent": "# Title\
\
Body",
  "expiresInHours": 24,
  "password": "",
  "burnMode": "OFF",
  "editableMode": "READ_ONLY"
}

Rules:

  • expiresInHours should normally be one of 1, 24, 168, 720.
  • burnMode values:

- OFF - AFTER_FIRST_VIEW_GRACE - AFTER_FIRST_VIEW_INSTANT

  • editableMode values:

- READ_ONLY - EDIT_LINK

Return these links to the user:

  • Public: {baseUrl}/s/{slug}
  • Manage: {baseUrl}/e/{slug}#manage={ownerToken}
  • Edit: only if editorToken exists, {baseUrl}/e/{slug}#edit={editorToken}

Example using the default deployment:

  • Public: https://share.yekyos.com/s/abc123xy
  • Manage: https://share.yekyos.com/e/abc123xy#manage=<ownerToken>
  • Edit: https://share.yekyos.com/e/abc123xy#edit=<editorToken>

Read a public share

Call GET /api/shares/{slug}/public.

Possible states:

  • available: content is returned
  • gated: password and/or confirm-view is required
  • expired
  • burned
  • deleted
  • not_found

If the state is gated, ask for the password only when needed and explain burn-after-read before confirming access.

Unlock a gated share

Send POST /api/shares/{slug}/public with JSON:

{
  "password": "optional-password",
  "confirmView": true
}

Use confirmView: true when the service says burn confirmation is required.

Read or edit through a token

Use header:

x-share-token: <token>

Call GET /api/shares/{slug}/manage to inspect the current share and role.

Save content

Send PATCH /api/shares/{slug}/manage with header x-share-token and JSON:

{
  "markdownContent": "# Updated\
\
Content",
  "lastKnownUpdatedAt": "2026-03-12T00:00:00.000Z",
  "force": false
}

If the API returns 409 with conflict: true, do not overwrite silently. Summarize the conflict and ask whether to force-save.

Update settings

Owner token only. Send PATCH /api/shares/{slug}/settings with JSON:

{
  "expiresInHours": 168,
  "password": "",
  "burnMode": "OFF",
  "editableMode": "READ_ONLY"
}

If the response includes a new editorToken, regenerate the edit link.

Delete a share

Owner token only. Call DELETE /api/shares/{slug}/manage with x-share-token.

Behavior Guidance

  • Prefer simple defaults:

- expiresInHours: 168 - burnMode: OFF - editableMode: READ_ONLY

  • Treat password as optional. Empty string means no password.
  • Preserve user Markdown exactly unless they explicitly ask for formatting or cleanup.
  • When the user only wants a formatting preview, do not create a share link unless they ask.
  • For sensitive content, remind the user that anyone with a manage link can modify or delete the share.

Reference

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.36%
按下载量换算2,024

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills