← 返回 Skills 市场
AI生成
作者
JEyeshield
· GitHub ↗
· v1.0.0
· MIT-0
185
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ad-production-ai-generation
功能描述
AI生成技能 - 负责广告创意的AI生成处理
使用说明 (SKILL.md)
AI Generation - 广告创意AI生成
负责广告创意的AI生成处理,包括文案生成、图像生成、视频生成等功能。
Setup
无需额外依赖,TypeScript编译后使用。
When to Use
需要生成广告创意内容时使用:
- 广告文案生成
- 营销图片生成
- 视频素材制作
- 创意素材批量生成
Architecture
ai-generation/
├── index.ts # 主入口,处理生成任务
└── package.json # 依赖配置
Core Commands
创建生成任务
await api.executeAction('ai-generation.create', {
demandId?: string, // 关联的需求ID
prompt: string, // 生成提示词
model?: string, // 使用的模型(默认flux)
params?: Record\x3Cstring, any>, // 额外参数
count: number // 生成数量
});
查询生成任务
await api.executeAction('ai-generation.get', {
taskId: string // 任务ID
});
取消生成任务
await api.executeAction('ai-generation.cancel', {
taskId: string // 任务ID
});
响应事件
ai-generation.completed- 生成完成ai-generation.failed- 生成失败ai-generation.progress- 进度更新
Configuration
配置项(通过OpenClaw配置系统):
defaultModel: 默认使用的AI模型maxConcurrent: 最大并发数timeout: 超时时间(秒)
安全使用建议
This skill appears to be a local/in-memory ad-generation helper and doesn't request any secrets or external network access. Before installing, check the following: (1) confirm the event and action names your agent expects — SKILL.md examples and the code use different names, which may break integration; (2) ensure your runtime will compile/run the provided TypeScript (package.json has a build script but no install hook); (3) be aware tasks are kept in memory only (no persistence), so results will not survive a restart unless your platform persists them; and (4) if you plan to connect the skill to real AI/model endpoints, verify how credentials or network calls will be added and reviewed. Otherwise there are no security red flags in the provided files.
功能分析
Type: OpenClaw Skill
Name: ad-production-ai-generation
Version: 1.0.0
The skill bundle is a standard implementation for managing AI-based ad creative generation tasks. The code in index.ts provides logic for task lifecycle management (creation, status tracking, cancellation) and includes mock implementations for prompt optimization and result deduplication without any external network calls, file system access, or suspicious execution patterns.
能力评估
Purpose & Capability
Name/description (ad creative generation) match the included code: an in-memory task queue that creates, lists, cancels, scores, deduplicates, and selects generated materials. No unrelated credentials, binaries, or external services are requested.
Instruction Scope
SKILL.md and index.ts are largely consistent about capabilities, but there are small mismatches: SKILL.md examples show api.executeAction with names like 'ai-generation.create' and event names 'ai-generation.completed' while the code registers an 'ai' command namespace and emits events 'generation.batch_completed' and 'generation.completed'. Also SKILL.md says 'TypeScript compiled after use' but no install/build step is provided by the package; runtime depends on the platform to execute the TypeScript (or a compiled JS). These are operational inconsistencies (not malicious) that could cause integration/runtime confusion.
Install Mechanism
No install spec or external downloads. The package includes TypeScript source and a build script, with no external dependencies. Low installation risk — nothing is fetched from external URLs or installed to unusual locations.
Credentials
The skill requests no environment variables, secrets, or config paths. It does read api.config (platform-provided configuration) which is expected for configurable options like defaultModel/maxConcurrent.
Persistence & Privilege
always is false and the skill does not request permanent system-wide privileges. The skill stores tasks in-memory (no persistent storage access) and does not modify other skills or global agent settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ad-production-ai-generation - 安装完成后,直接呼叫该 Skill 的名称或使用
/ad-production-ai-generation触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
初始版本发布
元数据
常见问题
AI生成 是什么?
AI生成技能 - 负责广告创意的AI生成处理. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 185 次。
如何安装 AI生成?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ad-production-ai-generation」即可一键安装,无需额外配置。
AI生成 是免费的吗?
是的,AI生成 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AI生成 支持哪些平台?
AI生成 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AI生成?
由 JEyeshield(@jeyeshield)开发并维护,当前版本 v1.0.0。
推荐 Skills