技能详情(站内镜像,无评论)
作者:Aditya Tripathi @adiologydev
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 257 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:adiologydev/markdown-anything
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's behavior (uploading user files to markdownanything.com using an API token) matches its description, but there are small inconsistencies (undeclared required binaries, unknown source) that warrant caution before installing.
目的
The skill claims to convert many file types via the Markdown Anything API and only requires MDA_API_TOKEN — that aligns with the stated purpose. However, the bundled scripts invoke curl and python3 but the registry metadata lists no required binaries; the missing declaration is an inconsistency the user should be aware of.
说明范围
SKILL.md and the scripts stay on-purpose: they send the provided file to https://markdownanything.com/api/v1/convert and return the Markdown result. This does mean user files are transmitted to a third-party endpoint (explicitly documented). No other local files or unrelated environment variables are accessed.
安装机制
There is no install spec (instruction-only plus two small scripts). Nothing is downloaded or written to disk by an installer, so installation risk is low.
证书
Only MDA_API_TOKEN is required (primary credential) and the optional flags are narrowly scoped to conversion behavior. The requested environment variables are proportional to the skill's purpose.
持久
The skill does not request permanent presence (always is false), does not modify other skills or system settings, and does not store secrets. Autonomous invocation is allowed (platform default) but not unusually privileged here.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Markdown Anything」。简介:Convert PDF, DOCX, XLSX, PPTX, images, audio, and 25+ file formats to clean Mar…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/adiologydev/markdown-anything/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: markdown-anything
description: Convert PDF, DOCX, XLSX, PPTX, images, audio, and 25+ file formats to clean Markdown using the Markdown Anything API.
homepage: https://markdownanything.com
metadata:
clawdbot:
emoji: "📝"
requires:
env: ["MDA_API_TOKEN"]
primaryEnv: "MDA_API_TOKEN"
files: ["scripts/*"]
---
# Markdown Anything
Convert files to clean, structured Markdown using the [Markdown Anything](https://markdownanything.com) API. Supports PDF, DOCX, XLSX, PPTX, images, audio, and 25+ formats.
## Setup
Set your API token as an environment variable. Get one from **Settings > API Tokens** in your [Markdown Anything workspace](https://markdownanything.com/workspaces).
```
MDA_API_TOKEN=mda_your_token_here
```
## When to Use
Use the `mda-convert` tool when the user asks to:
- Convert a file to Markdown
- Extract text from a PDF, document, image, or audio file
- Turn a document into Markdown for use in a prompt or workflow
## Tools
### mda-convert
Converts a file to Markdown. Run `scripts/convert.sh` with the file path as the first argument.
**Arguments:**
- `$1` — Path to the file to convert
**Optional environment variables:**
- `MDA_ENHANCED_AI=true` — Use Enhanced AI for scanned documents, images, and audio (costs extra credits)
- `MDA_INCLUDE_METADATA=true` — Include document metadata in the response
- `MDA_OPTIMIZE_TOKENS=true` — Optimize output for LLM token efficiency
**Example:**
```
scripts/convert.sh /path/to/document.pdf
```
The tool outputs the converted Markdown to stdout.
### mda-credits
Check your remaining credit balance. Run `scripts/credits.sh` with no arguments.
**Example:**
```
scripts/credits.sh
```
## Security & Privacy
- Files are sent to `https://markdownanything.com/api/v1/convert` for processing
- Your API token is sent via the `Authorization` header
- No data is stored locally beyond the conversion result
- See [Markdown Anything Privacy Policy](https://markdownanything.com/privacy) for data handling details