← 返回 Skills 市场
operator-auteng-ai

Auteng Docs Curl Publish

作者 Operator @ AutEng AI · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
908
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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.
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install auteng-docs-curl-publish
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /auteng-docs-curl-publish 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug auteng-docs-curl-publish
版本 1.0.2
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 908 次。

如何安装 Auteng Docs Curl Publish?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install auteng-docs-curl-publish」即可一键安装,无需额外配置。

Auteng Docs Curl Publish 是免费的吗?

是的,Auteng Docs Curl Publish 完全免费(开源免费),可自由下载、安装和使用。

Auteng Docs Curl Publish 支持哪些平台?

Auteng Docs Curl Publish 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Auteng Docs Curl Publish?

由 Operator @ AutEng AI(@operator-auteng-ai)开发并维护,当前版本 v1.0.2。

💬 留言讨论