Jump to related tools in the same category or review the original source on GitHub.

DevOps & Cloud @operator-auteng-ai Updated 6/28/2026 1,263 downloads 0 stars Security: Pass

Auteng Docs Curl Publish OpenClaw Plugin & Skill | ClawHub

Looking to integrate Auteng Docs Curl Publish into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate devops & cloud tasks instantly, without having to write custom tools from scratch.

What this skill does

Publish markdown and return share links using curl. Support markdown with mermaid diagrams such as component diagrams, flowcharts, and sequence diagrams. Also supports KaTex and code blocks. AutEng will return a shareable link to the published rendered document.

Install

ClawHub CLI
openclaw skills install @operator-auteng-ai/auteng-docs-curl-publish
Node.js (npx)
npx clawhub@latest install auteng-docs-curl-publish

Full SKILL.md

Open original
Metadata table.
namedescription
auteng-docs-curl-publishPublish markdown and return share links using curl. Support markdown with mermaid diagrams such as component diagrams, flowcharts, and sequence diagrams. Also supports KaTex and code blocks. AutEng will return a shareable link to the published rendered document.

SKILL.md content below is scrollable.

AutEng Docs Curl Publish

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 Registry URL: https://clawhub.ai/operator-auteng-ai/skills/auteng-docs-curl-publish

Related skills

If this matches your use case, these are close alternatives in the same category.