소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 10일 00:11
- 감지된 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 sutui-ai명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | sutui-ai |
| description | 使用速推AI生成图像和视频。当用户需要画图、生成图片、制作视频、图生图、文生图、文生视频、图生视频时使用此 skill。支持即梦、Flux、Kling 等多种模型。 |
通过速推AI MCP服务进行AI图像和视频生成,支持多种模型。
user-速推AICallMcpTool 工具使用异步任务流程调用 Flux 2 Flash 模型:
// Step 1: 提交任务
{
"server": "user-速推AI",
"toolName": "submit_task",
"arguments": {
"model_id": "fal-ai/flux/dev",
"parameters": {
"prompt": "一只可爱的猫咪在花园里玩耍",
"image_size": "landscape_16_9"
}
}
}
// Step 2: 查询任务状态(轮询直到完成)
{
"server": "user-速推AI",
"toolName": "get_task",
"arguments": {
"task_id": "返回的任务ID"
}
}
备选同步方式(即梦模型,30-70秒):
{
"server": "user-速推AI",
"toolName": "sync_generate_image",
"arguments": {
"prompt": "一只可爱的猫咪在花园里玩耍",
"model": "jimeng-4.5"
}
}
图生图: 添加 image_url 参数即可
直接返回视频结果:
{
"server": "user-速推AI",
"toolName": "sync_generate_video",
"arguments": {
"prompt": "一只猫咪在奔跑,16:9",
"model": "jimeng-video-3.5-pro"
}
}
支持的模型: jimeng-video-3.5-pro、jimeng-video-3.5-pro-10s、jimeng-video-3.5-pro-12s
图生视频: 添加 image_url 参数
首尾帧视频: 同时添加 image_url 和 end_image_url
对于需要更多模型选择的场景,使用异步任务流程:
{
"server": "user-速推AI",
"toolName": "list_models",
"arguments": {
"category": "image" // 可选: image, video, audio, all
}
}
{
"server": "user-速推AI",
"toolName": "get_model_info",
"arguments": {
"model_id": "fal-ai/flux/schnell"
}
}
{
"server": "user-速推AI",
"toolName": "submit_task",
"arguments": {
"model_id": "fal-ai/flux/schnell",
"parameters": {
"prompt": "a beautiful sunset over the ocean",
"image_size": "landscape_16_9"
}
}
}
{
"server": "user-速推AI",
"toolName": "get_task",
"arguments": {
"task_id": "返回的任务ID"
}
}
轮询直到状态为 completed 或 failed。
将本地图片或网络图片上传到云存储:
{
"server": "user-速推AI",
"toolName": "upload_image",
"arguments": {
"image_url": "https://example.com/image.jpg"
}
}
{
"server": "user-速推AI",
"toolName": "list_tasks",
"arguments": {
"status": "processing",
"limit": 10
}
}
| 场景 | 推荐模型 | 工具 |
|---|---|---|
| 生成图片(默认) | Flux 2 Flash | submit_task + get_task |
| 生成视频(默认) | jimeng-video-3.5-pro | sync_generate_video |
| 快速生成图片 | jimeng-4.5 | sync_generate_image |
| 使用其他模型 | 先查询 | list_models → get_model_info |
upload_image 上传获取URLget_task 直到完成