소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 10일 00:34
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill seedream-4-5명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Seedream 4.5 图像生成 |
| description | 使用 Seedream 4.5 模型生成或编辑图像。当用户想要文生图、图生图、图像编辑,或提到 seedream、字节跳动图像生成时使用此 skill。 |
| category | image |
| tags | ["图像生成","文生图","图像编辑","Seedream","字节跳动"] |
| featured | false |
使用字节跳动 Seedream 4.5 模型进行文生图和图生图(图像编辑)。
| 模型 ID | 功能 | 说明 |
|---|---|---|
fal-ai/bytedance/seedream/v4.5/text-to-image | 文生图 | 根据提示词生成图像 |
fal-ai/bytedance/seedream/v4.5/edit | 图生图 | 基于参考图进行编辑 |
使用 MCP 工具 submit_task 提交任务:
{
"model_id": "fal-ai/bytedance/seedream/v4.5/text-to-image",
"parameters": {
"prompt": "用户的提示词",
"image_size": "auto_2K",
"num_images": 1
}
}
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| prompt | string | 是 | - | 图像生成提示词 |
| image_size | string | 否 | auto_2K | 尺寸预设 |
| num_images | integer | 否 | 1 | 生成数量 (1-6) |
| seed | integer | 否 | - | 随机种子 |
| enable_safety_checker | boolean | 否 | true | 安全检查 |
auto_2K - 自动 2K(默认)auto_4K - 自动 4K(高清)square_hd - 正方形高清square - 正方形portrait_4_3 - 竖版 4:3portrait_16_9 - 竖版 16:9landscape_4_3 - 横版 4:3landscape_16_9 - 横版 16:9{
"model_id": "fal-ai/bytedance/seedream/v4.5/edit",
"parameters": {
"prompt": "将 Figure 1 的背景换成海滩",
"image_urls": ["https://example.com/input.jpg"],
"image_size": "auto_2K"
}
}
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| prompt | string | 是 | - | 编辑提示词,可用 Figure 1/2/3 引用图片 |
| image_urls | array | 是 | - | 输入图片 URL 列表 (1-10 张) |
| image_size | string | 否 | auto_2K | 尺寸预设 |
| num_images | integer | 否 | 1 | 生成数量 (1-6) |
| seed | integer | 否 | - | 随机种子 |
| enable_safety_checker | boolean | 否 | true | 安全检查 |
提示词中可以用 Figure 1、Figure 2 等引用 image_urls 中的图片:
{
"prompt": "将 Figure 1 中的人物放到 Figure 2 的场景中",
"image_urls": [
"https://example.com/person.jpg",
"https://example.com/background.jpg"
]
}
提交任务后会返回 task_id,使用 get_task 查询结果:
{
"task_id": "返回的任务ID"
}
任务状态:
pending - 排队中processing - 处理中completed - 完成,结果在 result.images 中failed - 失败,查看 error 字段用户请求:帮我生成一张赛博朋克风格的城市夜景
执行步骤:
submit_task:{
"model_id": "fal-ai/bytedance/seedream/v4.5/text-to-image",
"parameters": {
"prompt": "A cyberpunk cityscape at night, neon lights, rain-slicked streets, futuristic skyscrapers, holographic advertisements, flying cars in the distance, highly detailed, cinematic lighting",
"image_size": "landscape_16_9",
"num_images": 1
}
}
task_id 后调用 get_task 查询结果用户请求:把这张照片的背景换成日落海滩
执行步骤:
submit_task:{
"model_id": "fal-ai/bytedance/seedream/v4.5/edit",
"parameters": {
"prompt": "Replace the background of Figure 1 with a beautiful sunset beach, golden hour lighting, ocean waves, palm trees silhouette",
"image_urls": ["用户提供的图片URL"],
"image_size": "auto_2K"
}
}
task_id 后调用 get_task 查询结果auto_4K