← Back to Skills Marketplace
hitlmt

创客贴智能海报设计

by hitlmt · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ⚠ suspicious
677
Downloads
1
Stars
1
Active Installs
4
Versions
Install in OpenClaw
/install ckt-design
Description
根据用户的海报平面设计需求,调用创客贴智能设计API生成设计缩略图。擅长制作邀请函、日签、小红书配图、商品海报、Banner等平面设计。当用户提到需要做海报、设计、邀请函、日签、小红书图、商品图、Banner,或提及平面设计、创客贴相关需求时使用此技能。
README (SKILL.md)

创客贴智能海报设计

根据用户的设计需求,调用创客贴智能设计服务生成海报缩略图并展示。

执行流程

Step 1: 调用智能设计API

使用 HTTP GET 请求调用创客贴设计服务,将用户的原始设计需求作为 prompt 参数传入:

curl -G "https://gw.chuangkit.com/openplatform/intelligentDesign/api/generate" \
  --data-urlencode "prompt=用户的设计需求"

API 返回 JSON 格式,结构如下:

{
  "body": {
    "code": 200,
    "msg": "success",
    "data": [
      {
        "taskId": "任务ID",
        "designId": "设计ID",
        "imageUrl": "缩略图地址",
        "redirectUrl": "编辑跳转地址"
      }
    ]
  },
  "header": {
    "code": "1"
  }
}

每个设计结果包含:imageUrl(缩略图地址)和 redirectUrl(在线编辑地址)。

Step 2: 解析并展示结果

根据返回的 body.code 判断执行结果:

  • code != 200:设计生成失败,向用户提示错误信息(body.msg)。
  • code == 200:设计生成成功,执行以下操作:
    1. body.data 数组中取第一个设计结果的 imageUrl
    2. 使用默认浏览器打开该缩略图地址展示给用户

打开浏览器命令参考:

# macOS
open "缩略图URL"

# Windows
start "缩略图URL"

# Linux
xdg-open "缩略图URL"

注意事项

  • prompt 参数需要进行 URL 编码(--data-urlencode 会自动处理)
  • API 可能返回多个设计结果,默认取第一个展示
  • 如果用户需要查看更多设计方案,可以遍历 data 数组中的其他结果
Usage Guidance
这个技能会把你输入的设计需求(prompt)发送到 https://gw.chuangkit.com 的公开 API,并在浏览器中打开返回的缩略图或在线编辑链接。它不需要你的账号凭据或本地文件。安装前请注意:不要通过该技能提交任何敏感或机密信息(例如身份证号、财务数据或私人凭证),并在打开返回的外部链接前确认域名与内容符合预期。如果你需要更强的隐私保证,先在不含敏感信息的示例上测试该技能以验证行为。
Capability Analysis
Type: OpenClaw Skill Name: ckt-design Version: 1.0.3 The skill facilitates poster design by calling the Chuangkit (创客贴) API (gw.chuangkit.com) and displaying the result. It is classified as suspicious because the instructions in SKILL.md direct the agent to execute shell commands (open, start, or xdg-open) using a URL string retrieved directly from a remote API response without any sanitization. This pattern creates a potential command injection vulnerability if the third-party API were to return a malicious payload, although there is no evidence of intentional malice or data exfiltration.
Capability Assessment
Purpose & Capability
技能名、描述与运行时指令一致:它通过向创客贴智能设计的 HTTP 接口发送 prompt 并展示返回的 imageUrl 来生成海报缩略图,没有要求与该用途不相关的凭据或二进制。
Instruction Scope
SKILL.md 明确指示使用 GET 请求将用户输入作为 prompt 发送到指定 API,解析 JSON 并在默认浏览器打开返回的缩略图或编辑跳转地址。指令没有要求读取本地文件、环境变量或上传额外数据。注意:打开外部 URL 会把用户的浏览器导向第三方站点(这是预期行为),存在常规的隐私/跟踪风险。
Install Mechanism
无安装规范(instruction-only),不会把代码写入磁盘或下载可执行文件,风险最低。
Credentials
不要求任何环境变量、凭据或配置路径;所需权限与其描述的功能相称。
Persistence & Privilege
没有设置 always:true,也不请求修改其他技能或全局配置。默认的自主调用权限保留但与该技能用途一致,不构成额外特权。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ckt-design
  3. After installation, invoke the skill by name or use /ckt-design
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
版本更新至1.0.3
v1.0.2
- Added _meta.json for metadata support. - Improved and expanded SKILL.md documentation with clearer instructions, usage scenarios, and detailed execution steps. - Updated skill description to clarify supported design types and trigger conditions. - Standardized result parsing logic and included example browser commands for all platforms.
v1.0.1
- Updated version to 1.0.1. - Formatted SKILL.md using markdown frontmatter. - Clarified the design service request example by replacing the URL with a curl command. - Other documentation remains unchanged.
v1.0.0
ckt_design 1.0.0 - Initial release. - Returns design thumbnails based on user poster design needs. - Supports invitations, daily cards, Xiaohongshu, product posters, banners, etc. - Uses an HTTP GET service to generate designs from user prompts. - Parses the service response and opens the thumbnail image of the first design result in the default browser.
Metadata
Slug ckt-design
Version 1.0.3
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 4
Frequently Asked Questions

What is 创客贴智能海报设计?

根据用户的海报平面设计需求,调用创客贴智能设计API生成设计缩略图。擅长制作邀请函、日签、小红书配图、商品海报、Banner等平面设计。当用户提到需要做海报、设计、邀请函、日签、小红书图、商品图、Banner,或提及平面设计、创客贴相关需求时使用此技能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 677 downloads so far.

How do I install 创客贴智能海报设计?

Run "/install ckt-design" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 创客贴智能海报设计 free?

Yes, 创客贴智能海报设计 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 创客贴智能海报设计 support?

创客贴智能海报设计 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 创客贴智能海报设计?

It is built and maintained by hitlmt (@hitlmt); the current version is v1.0.3.

💬 Comments