← Back to Skills Marketplace
operator-auteng-ai

Auteng Docs Curl Publish

cross-platform ✓ Security Clean
908
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install auteng-docs-curl-publish
Description
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.
README (SKILL.md)

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 @- \x3C\x3C'JSON'
{
  "markdown": "# API Test\
\
Hello 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\
\
Published 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\
\
Published from curl."}' \
  | jq '{title, share_url, expires_at}'

Treat any response without share_url as an error and show the full JSON body.

Usage Guidance
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.
Capability Analysis
Type: OpenClaw Skill Name: auteng-docs-curl-publish Version: 1.0.2 The skill is designed to publish markdown documents to the `https://auteng.ai/api/tools/docs/publish-markdown/` endpoint using `curl` and parse the response with `jq`. All commands and instructions in `SKILL.md` are directly aligned with this stated purpose, involving standard HTTP requests and JSON parsing. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or harmful prompt injection attempts against the agent. The instructions for the agent are limited to guiding the use of the tool and interpreting its output, which is necessary for a functional skill.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install auteng-docs-curl-publish
  3. After installation, invoke the skill by name or use /auteng-docs-curl-publish
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Added detailed usage guide for publishing markdown documents via curl, including sample commands. - Documented support for mermaid diagrams (component, flowcharts, sequence), KaTeX, and code blocks. - Provided examples for extracting share URLs and compact payloads using jq. - Clarified response handling: treat any response missing share_url as an error and show the full JSON.
Metadata
Slug auteng-docs-curl-publish
Version 1.0.2
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Auteng Docs Curl Publish?

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. It is an AI Agent Skill for Claude Code / OpenClaw, with 908 downloads so far.

How do I install Auteng Docs Curl Publish?

Run "/install auteng-docs-curl-publish" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Auteng Docs Curl Publish free?

Yes, Auteng Docs Curl Publish is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Auteng Docs Curl Publish support?

Auteng Docs Curl Publish is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Auteng Docs Curl Publish?

It is built and maintained by Operator @ AutEng AI (@operator-auteng-ai); the current version is v1.0.2.

💬 Comments