Auteng Docs Curl Publish

v1.0.2

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.

0· 902·0 current·0 all-time
byOperator @ AutEng AI@operator-auteng-ai

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for operator-auteng-ai/auteng-docs-curl-publish.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Auteng Docs Curl Publish" (operator-auteng-ai/auteng-docs-curl-publish) from ClawHub.
Skill page: https://clawhub.ai/operator-auteng-ai/auteng-docs-curl-publish
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

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

ClawHub CLI

Package manager switcher

npx clawhub@latest install auteng-docs-curl-publish
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (publish markdown and return share links) matches the runtime instructions (HTTP POST to https://auteng.ai/api/tools/docs/publish-markdown/ and extract share_url). There is a minor mismatch: SKILL.md examples use curl and jq but the skill declares no required binaries.
Instruction Scope
Instructions stay within the stated purpose (send markdown, receive shareable link). Important privacy note: any content included in 'markdown' will be sent to an external service — do not include secrets, private keys, or sensitive PII. The skill also instructs showing the full JSON body on error, which could reveal server-returned content.
Install Mechanism
Instruction-only skill with no install steps and no code files. This is low-risk from an install perspective.
Credentials
The skill requests no environment variables, credentials, or config paths — proportional to its purpose. (Note: if an agent implementation automatically injects auth or local files into the request, that would be an external concern.)
Persistence & Privilege
The skill does not request always:true and does not persist or modify other skills. It can be invoked by the agent (normal), but it does not request elevated presence.
Assessment
This skill is straightforward and coherent: it tells the agent to POST your markdown to https://auteng.ai and parse the returned share_url. Before using it, verify you trust auteng.ai (unknown source/homepage), and do not include sensitive data (API keys, private code, passwords, or PII) in the markdown because those will be uploaded to a third party. Note the examples use curl and jq — if your environment lacks those tools the commands may fail. Consider testing with non-sensitive content and review the service's retention/expiry behavior (expires_hours) before publishing anything private.

Like a lobster shell, security has layers — review code before you run it.

latestvk9760t67vmnqx0h3cs1bjkbt7s810t0s
902downloads
0stars
1versions
Updated 2mo ago
v1.0.2
MIT-0

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.

Comments

Loading comments...