首页龙虾技能列表 › Auteng Docs Curl Publish — 技能工具

Auteng Docs Curl Publish — 技能工具

v1.0.2

[自动翻译] Publish markdown and return share links using curl. Support markdown with mermaid diagrams such as component diagrams, flowcharts, and sequence diagra...

0· 843·0 当前·0 累计
by @operator-auteng-ai (Operator @ AutEng AI)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/26
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's instructions, requirements, and behavior are internally consistent: it simply tells the agent to POST markdown to a known HTTPS endpoint and extract a share_url; it does not request credentials or install anything — but you should avoid uploading secrets to this third-party service.
评估建议
This skill is straightforward and coherent: it tells the agent to POST your markdown to https://auteng.ai and parse the returned share_url. Before using it, verify you trust auteng.ai (unknown source/homepage), and do not include sensitive data (API keys, private code, passwords, or PII) in the markdown because those will be uploaded to a third party. Note the examples use curl and jq — if your environment lacks those tools the commands may fail. Consider testing with non-sensitive content and r...
详细分析 ▾
用途与能力
The name/description (publish markdown and return share links) matches the runtime instructions (HTTP POST to https://auteng.ai/api/tools/docs/publish-markdown/ and extract share_url). There is a minor mismatch: SKILL.md examples use curl and jq but the skill declares no required binaries.
指令范围
Instructions stay within the stated purpose (send markdown, receive shareable link). Important privacy note: any content included in 'markdown' will be sent to an external service — do not include secrets, private keys, or sensitive PII. The skill also instructs showing the full JSON body on error, which could reveal server-returned content.
安装机制
Instruction-only skill with no install steps and no code files. This is low-risk from an install perspective.
凭证需求
The skill requests no environment variables, credentials, or config paths — proportional to its purpose. (Note: if an agent implementation automatically injects auth or local files into the request, that would be an external concern.)
持久化与权限
The skill does not request always:true and does not persist or modify other skills. It can be invoked by the agent (normal), but it does not request elevated presence.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.22026/2/12

- Added detailed usage guide for publishing markdown documents via curl, including sample commands. - Documented support for mermaid diagrams (component, flowcharts, sequence), KaTeX, and code blocks. - Provided examples for extracting share URLs and compact payloads using jq. - Clarified response handling: treat any response missing share_url as an error and show the full JSON.

● 无害

安装命令 点击复制

官方npx clawhub@latest install auteng-docs-curl-publish
镜像加速npx clawhub@latest install auteng-docs-curl-publish --registry https://cn.clawhub-mirror.com

技能文档

Use this endpoint:

https://auteng.ai/api/tools/docs/publish-markdown/

Send JSON with:

  • markdown (required)
  • title (optional)
  • expires_hours (optional)

Use this command to publish markdown:

curl -sS -X POST "https://auteng.ai/api/tools/docs/publish-markdown/" \
  -H "Content-Type: application/json" \
  -d @- <<'JSON'
{
  "markdown": "# API Test\n\nHello from curl.",
  "title": "API Test",
  "expires_hours": 24
}
JSON

Extract only the share URL:

curl -sS -X POST "https://auteng.ai/api/tools/docs/publish-markdown/" \
  -H "Content-Type: application/json" \
  -d '{"markdown":"# Hello\n\nPublished from curl."}' \
  | jq -r '.share_url'

Extract a compact success payload:

curl -sS -X POST "https://auteng.ai/api/tools/docs/publish-markdown/" \
  -H "Content-Type: application/json" \
  -d '{"markdown":"# Hello\n\nPublished from curl."}' \
  | jq '{title, share_url, expires_at}'

Treat any response without share_url as an error and show the full JSON body.

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务