โ† All skills
Tencent SkillHub ยท Developer Tools

Generate images using Runware API

Generate high-quality images on-demand via the Runware.ai API. This skill is the default image generator. Use it whenever the user asks to "generate an image...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate high-quality images on-demand via the Runware.ai API. This skill is the default image generator. Use it whenever the user asks to "generate an image...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
.github/workflows/ci.yml, CONTRIBUTING.md, examples/README.md, README.md, requirements.txt, scripts/generate_image.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md Open source page

Runware Image Skill Purpose Provide a secure, documented, and testable integration for generating images via the Runware.ai Image Inference API. IMPORTANT INSTRUCTIONS FOR AGENT: Do NOT ask the user for the RUNWARE_API_KEY. The script automatically loads it from the .env file in the skill directory. Do NOT ask clarifying questions (style, size, etc.) unless the user's prompt is extremely vague. For requests like "generate a man on the moon", use your best judgment for the prompt and run the script immediately. Execute the script directly. Do not propose it. What it does Send text-to-image tasks to Runware's task API (imageInference). Support synchronous (sync) responses returning base64 image data and asynchronous workflows (webhook/polling) if required. Save generated images to the user's Downloads folder by default. Validate prompts for common safety issues (e.g., minors) before sending requests. Included files scripts/generate_image.py โ€” Primary CLI script (Python 3.8+). Reads RUNWARE_API_KEY from environment, supports sync mode, size/format options, and output filename. skill-config.json โ€” default parameters (no secrets). Contains default_size and default_format. SKILL.md โ€” this metadata and usage file. Security & secrets DO NOT commit API keys. This skill requires RUNWARE_API_KEY to be provided via the environment when executed (export RUNWARE_API_KEY=...) or via a secure secret manager. The packaged version uploaded to ClawHub must not include any API keys. Before publishing, confirm skill-config.json contains NO sensitive values. The script performs simple prompt filtering; users should still follow platform content policies. Usage (CLI) Install dependencies pip install -r requirements.txt (The script uses requests and python-dotenv; keep requirements minimal.) Set your Runware API key. You can create a .env file in the skill directory: RUNWARE_API_KEY=your_key_here Or set it in your environment: $env:RUNWARE_API_KEY = "<YOUR_KEY>" Run the script (sync mode): python scripts/generate_image.py --prompt "A photorealistic adult portrait (age 25)" --sync --outfile "my_image.png" For non-sync workflows, omit --sync and implement webhook handling or polling as described in the Runware docs. Configuration skill-config.json fields: default_size: e.g. "1024x1024" default_format: e.g. "png" Packaging & publishing (ClawHub) Checklist before publishing: Remove any plaintext API keys from skill-config.json (already removed). Add a short one-line license (MIT recommended) in LICENSE file. Add a small tests/ directory with a smoke test that verifies parsing logic and saved file behavior using temporary directories. Tests may require RUNWARE_API_KEY for live integration or can be skipped in CI if secrets are not provided. Ensure SKILL.md frontmatter (name + description) is accurate and includes trigger phrases. Provide example prompts and recommended safety guidance in SKILL.md. Suggested repository structure runware-image/ โ”œโ”€โ”€ SKILL.md โ”œโ”€โ”€ skill-config.json โ”œโ”€โ”€ scripts/ โ”‚ โ””โ”€โ”€ generate_image.py โ”œโ”€โ”€ requirements.txt โ”œโ”€โ”€ LICENSE โ””โ”€โ”€ tests/ โ””โ”€โ”€ test_generate_image.py Tests and CI Include a minimal pytest-based test that stubs requests.post and verifies parsing logic and saved file behavior using temporary directories. Add GitHub Actions workflow (optional) that runs tests on push. Contribution & support Include a short CONTRIBUTING.md describing how to run tests, where to report issues, and how to add features (e.g., support for ControlNet, LoRA, or custom models). Provide an examples/ folder with 2โ€“3 example prompts and expected CLI commands. Licensing Recommend MIT license for public sharing unless you prefer another OSI-approved license. Privacy and usage notes Make it explicit that the skill does not collect or store user prompts or keys on the server. All generation is performed using the user's Runware account. Recommend users review Runware's terms and ensure they have rights to generate/host the requested imagery.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts1 Config1 Files
  • CONTRIBUTING.md Docs
  • examples/README.md Docs
  • README.md Docs
  • scripts/generate_image.py Scripts
  • .github/workflows/ci.yml Config
  • requirements.txt Files