Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
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.
User asks: publish this markdown file as a shareable link with a 48-hour expiry
- 1Read the markdown file contents
- 2Construct a JSON payload with the markdown, title, and expires_hours fields
- 3POST the payload to https://auteng.ai/api/tools/docs/publish-markdown/ using curl
- 4Parse the response and extract share_url with jq
- 5Return the share URL to the user
A shareable URL pointing to the rendered document, valid for 48 hours