← 返回 Skills 市场
677
总下载
1
收藏
1
当前安装
4
版本数
在 OpenClaw 中安装
/install ckt-design
功能描述
根据用户的海报平面设计需求,调用创客贴智能设计API生成设计缩略图。擅长制作邀请函、日签、小红书配图、商品海报、Banner等平面设计。当用户提到需要做海报、设计、邀请函、日签、小红书图、商品图、Banner,或提及平面设计、创客贴相关需求时使用此技能。
使用说明 (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:设计生成成功,执行以下操作:
- 从
body.data数组中取第一个设计结果的imageUrl - 使用默认浏览器打开该缩略图地址展示给用户
- 从
打开浏览器命令参考:
# macOS
open "缩略图URL"
# Windows
start "缩略图URL"
# Linux
xdg-open "缩略图URL"
注意事项
prompt参数需要进行 URL 编码(--data-urlencode 会自动处理)- API 可能返回多个设计结果,默认取第一个展示
- 如果用户需要查看更多设计方案,可以遍历
data数组中的其他结果
安全使用建议
这个技能会把你输入的设计需求(prompt)发送到 https://gw.chuangkit.com 的公开 API,并在浏览器中打开返回的缩略图或在线编辑链接。它不需要你的账号凭据或本地文件。安装前请注意:不要通过该技能提交任何敏感或机密信息(例如身份证号、财务数据或私人凭证),并在打开返回的外部链接前确认域名与内容符合预期。如果你需要更强的隐私保证,先在不含敏感信息的示例上测试该技能以验证行为。
功能分析
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.
能力评估
Purpose & Capability
技能名、描述与运行时指令一致:它通过向创客贴智能设计的 HTTP 接口发送 prompt 并展示返回的 imageUrl 来生成海报缩略图,没有要求与该用途不相关的凭据或二进制。
Instruction Scope
SKILL.md 明确指示使用 GET 请求将用户输入作为 prompt 发送到指定 API,解析 JSON 并在默认浏览器打开返回的缩略图或编辑跳转地址。指令没有要求读取本地文件、环境变量或上传额外数据。注意:打开外部 URL 会把用户的浏览器导向第三方站点(这是预期行为),存在常规的隐私/跟踪风险。
Install Mechanism
无安装规范(instruction-only),不会把代码写入磁盘或下载可执行文件,风险最低。
Credentials
不要求任何环境变量、凭据或配置路径;所需权限与其描述的功能相称。
Persistence & Privilege
没有设置 always:true,也不请求修改其他技能或全局配置。默认的自主调用权限保留但与该技能用途一致,不构成额外特权。
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ckt-design - 安装完成后,直接呼叫该 Skill 的名称或使用
/ckt-design触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
创客贴智能海报设计 是什么?
根据用户的海报平面设计需求,调用创客贴智能设计API生成设计缩略图。擅长制作邀请函、日签、小红书配图、商品海报、Banner等平面设计。当用户提到需要做海报、设计、邀请函、日签、小红书图、商品图、Banner,或提及平面设计、创客贴相关需求时使用此技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 677 次。
如何安装 创客贴智能海报设计?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ckt-design」即可一键安装,无需额外配置。
创客贴智能海报设计 是免费的吗?
是的,创客贴智能海报设计 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
创客贴智能海报设计 支持哪些平台?
创客贴智能海报设计 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 创客贴智能海报设计?
由 hitlmt(@hitlmt)开发并维护,当前版本 v1.0.3。
推荐 Skills