Token导航 LogoToken导航TokenDH.com
图像处理需要联网clawhub未标认证来源可访问clear审计提醒

rynjer-image-generationrynjer 图像生成

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

7,503

周安装

319

GitHub Stars

公开资料未说明

下载量

2,629
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rynjer-image-generation(rynjer 图像生成)
来源仓库:https://github.com/antipas/rynjer-image-generation
安装命令:
openclaw skills install rynjer-image-generation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rynjer-image-generation

简介

通过 Rynjer API 生成和完善图像提示、估算成本并为代理工作流程生成具有可预测定价的业务就绪图像。

SKILL.md

name
rynjer-image-generation
version
0.3.0
summary
Agent-first marketing image generation — templates for landing/ad/blog/ecommerce, smart size recommendations, prompt rewrite, cost estimate, and fast execution.

Agent-first Marketing Image Generation

不是大而全创作平台,而是面向 Agent 和工作流的短路径出图工具。


Why install this

Use this skill when you need a usable marketing image fast, with a low-friction path from:

rough request → prompt rewrite → cost estimate → image

This skill is built for:

  • landing page hero images
  • blog and article covers
  • ad creative variations
  • ecommerce product visuals
  • any agent workflow that needs quick, predictable image outputs

What makes this different

OthersRynjer
Creative playground, explore optionsExecute task, get usable result
Manual prompt engineeringAuto rewrite from rough input
Generate first, cost unknownCost estimate before execution
Project-based studio workflowShort path API for agents
Guess platform specsSmart size recommendations built-in

Quick Start — Use a Template

Fastest way to get started with optimized defaults:

// Generate a landing page hero image
await rynjer.generate_image({
  goal: "SaaS product homepage",
  prompt: "AI-powered analytics dashboard, modern tech style",
  use_case: "landing",
  template: "landing",  // Auto-applies 16:9, 2K, landing-optimized style
  quality_mode: "balanced",
  count: 1
});

Available templates:

  • landing — Landing page hero (16:9, 2K)
  • ad — Social media ads (1:1, 1K)
  • blog — Blog/article covers (16:9, 1K)
  • ecommerce — Product images (1:1, 2K)

Start here — 4 steps to your first image

  1. rewrite_image_prompt — describe your goal, get a better prompt
  2. estimate_image_cost — see cost before spending credits
  3. generate_image — execute with your approved prompt and budget
  4. poll_image_result — wait for completion and get the result

What it does

Rewrite image prompts

Turn rough requests into optimized prompts for business and marketing use.

Input:

  • goal — what you need the image for
  • raw_prompt — your rough description
  • use_case — landing page, blog cover, ad creative, etc.
  • template (optional) — apply template defaults
  • tone (optional) — brand voice or mood
  • audience (optional) — target audience

Output: ready-to-generate prompt optimized for your use case.

Estimate image cost

Know the cost before you commit. Essential for budget-aware agent workflows.

Input:

  • use_case
  • count — how many images
  • resolution — 1K, 2K, 4K
  • aspect_ratio — 16:9, 1:1, 9:16, etc.
  • quality_mode — fast, balanced, high
  • template (optional) — auto-apply template defaults
  • platform (optional) — get platform-optimized recommendations

Output: estimated credits required.

Smart size recommendations

Get platform-optimized size settings without guesswork.

// Get Instagram post recommendations
await rynjer.recommend_image_size({
  platform: "instagram_post"
});
// Returns: { aspect_ratio: "1:1", resolution: "1K", size_px: "1080x1080" }

Supported platforms:

  • instagram_post — 1:1, 1080x1080
  • instagram_story — 9:16, 1080x1920
  • facebook_ad — 1.91:1, 1200x628
  • twitter_card — 1.91:1, 1200x628
  • linkedin_ad — 1.91:1, 1200x627
  • blog_cover — 1.91:1, 1200x630
  • youtube_thumbnail — 16:9, 1280x720
  • app_store — 16:9, 1920x1080

Generate images

Execute generation with your approved prompt and budget.

Input:

  • prompt — rewritten or custom
  • use_case
  • template (optional) — apply template defaults
  • platform (optional) — use platform-optimized settings
  • aspect_ratio
  • resolution
  • quality_mode
  • count
  • auto_poll (optional)

Output: generation request submitted.

Poll image results

Check status and download completed images.

Input:

  • request_id

Output: image URLs or download ready.


Templates — One-line setup

Templates automatically configure optimal settings for common use cases:

TemplateAspect RatioResolutionBest For
landing16:92KHomepage hero, product showcases
ad1:11KSocial media ads, quick tests
blog16:91KArticle covers, content marketing
ecommerce1:12KProduct images, white backgrounds

Usage:

// Use template
generate_image({ template: "ecommerce", ... })

// Use template + override specific settings
generate_image({ 
  template: "ad", 
  aspect_ratio: "16:9",  // Override template default
  ... 
})

Best for

Use CaseWhy it works
Landing page heroFast iteration on homepage visuals
Blog/article coverConsistent cover images at scale
Ad creative variationsTest multiple concepts cheaply
Ecommerce visualsProduct images, lifestyle shots
Social postsQuick turnaround for content calendars

Good fit

Use this skill when:

  • You need usable images fast, not artistic exploration
  • You want cost predictability before generation
  • You're building an agent workflow that needs image generation
  • You want to skip manual model selection and prompt tuning
  • You're producing marketing assets (landing, blog, ads, ecommerce)
  • You want smart defaults without guessing platform specs

Not a good fit

This v1 is intentionally not designed for:

  • video generation
  • music/audio generation
  • complex multi-step creative pipelines
  • large-scale brand asset management systems
  • creator studio workflows with collaboration features

For those, consider full creative platforms instead.


Reality check

This is:

  • soft launch
  • early-access
  • image-only v1

The core flow (rewrite → estimate → generate → poll) is live and verified. Templates and smart recommendations are ready for use. It works for real tasks, but the clearest path is still the recommended workflow above.


Pricing

  • Free: prompt rewrite, routing help, cost estimate, size recommendations
  • Paid: image generation via Rynjer credits or API access

Positioning

Rynjer is not a generic creative playground or full studio platform.

It is a business-facing image generation entry point focused on:

  • low-friction execution
  • predictable cost
  • smart defaults (templates + platform recommendations)
  • default routing over manual model-picking
  • repeatable, workflow-ready use

If you need a full creative studio with video, storyboards, and collaboration — this isn't it. If you need fast, cost-transparent image generation for marketing tasks — this is.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.44%
按下载量换算2,167

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills