auteng-docs-curl-publish

DevOps & Cloud
v1.0.2
Benign

Publish markdown and return share links using curl.

653 downloads653 installsby @operator-auteng-ai

Setup & Installation

Install command

clawhub install operator-auteng-ai/auteng-docs-curl-publish

If the CLI is not installed:

Install command

npx clawhub@latest install operator-auteng-ai/auteng-docs-curl-publish

Or install with OpenClaw CLI:

Install command

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

or 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-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
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.

INPUT

User asks: Sharing a formatted technical spec without a wiki or docs platform

AGENT
  1. 1Sharing a formatted technical spec without a wiki or docs platform
  2. 2Publishing a Mermaid architecture diagram from a CI script
  3. 3Sending a rendered report link in a chat message instead of attaching a file
  4. 4Generating an expiring doc link for a temporary project handoff
  5. 5Posting a KaTeX math writeup without setting up a static site
OUTPUT
Publish markdown and return share links using curl.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 25, 2026