LaunchKit · 2026
Back to Skills

auteng-docs-curl-publish

Publish markdown and return share links using curl.

0
653 downloads
by @operator-auteng-ai

Setup & Installation

openclaw skills install @operator-auteng-ai/auteng-docs-curl-publish

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install auteng-docs-curl-publish

What This Skill Does

Publishes markdown content to a hosted URL via a single curl POST request. Supports Mermaid diagrams, KaTeX math, and code blocks. Returns a shareable link to the rendered document.

Renders and hosts markdown instantly from a single curl command, with no account, login, or static site setup required.

When to use it

  • Sharing a formatted technical spec without a wiki or docs platform
  • Publishing a Mermaid architecture diagram from a CI script
  • Sending a rendered report link in a chat message instead of attaching a file
  • Generating an expiring doc link for a temporary project handoff
  • Posting a KaTeX math writeup without setting up a static site

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: publish this markdown file as a shareable link with a 48-hour expiry

AGENT
  1. 1Read the markdown file contents
  2. 2Construct a JSON payload with the markdown, title, and expires_hours fields
  3. 3POST the payload to https://auteng.ai/api/tools/docs/publish-markdown/ using curl
  4. 4Parse the response and extract share_url with jq
  5. 5Return the share URL to the user
OUTPUT

A shareable URL pointing to the rendered document, valid for 48 hours