auteng-docs-curl-publish
Publish markdown and return share links using curl.
Setup & Installation
Install command
clawhub install operator-auteng-ai/auteng-docs-curl-publishIf the CLI is not installed:
Install command
npx clawhub@latest install operator-auteng-ai/auteng-docs-curl-publishOr install with OpenClaw CLI:
Install command
openclaw skills install operator-auteng-ai/auteng-docs-curl-publishor paste the repo link into your assistant's chat
Install command
https://github.com/openclaw/skills/tree/main/skills/operator-auteng-ai/auteng-docs-curl-publishWhat 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
View original SKILL.md file
# 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:
```bash
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:
```bash
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:
```bash
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.
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: Sharing a formatted technical spec without a wiki or docs platform
- 1Sharing a formatted technical spec without a wiki or docs platform
- 2Publishing a Mermaid architecture diagram from a CI script
- 3Sending a rendered report link in a chat message instead of attaching a file
- 4Generating an expiring doc link for a temporary project handoff
- 5Posting a KaTeX math writeup without setting up a static site
Publish markdown and return share links using curl.
Security Audits
These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.