skills$openclaw/style-transfer
hhhh124hhhh909

by hhhh124hhhh

style-transfer – OpenClaw Skill

style-transfer is an OpenClaw Skills integration for design workflows. Professional artistic style transfer via OpenAI Images API. Transform images into specific art styles, eras, and visual aesthetics. Use when user needs to convert an existing image into different artistic styles, apply famous art movements, or transform visual content with specific stylistic parameters (e.g., "make this photo look like an oil painting", "apply cyberpunk aesthetic", "transform into vintage photography").

909 stars2.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026design

Skill Snapshot

namestyle-transfer
descriptionProfessional artistic style transfer via OpenAI Images API. Transform images into specific art styles, eras, and visual aesthetics. Use when user needs to convert an existing image into different artistic styles, apply famous art movements, or transform visual content with specific stylistic parameters (e.g., "make this photo look like an oil painting", "apply cyberpunk aesthetic", "transform into vintage photography"). OpenClaw Skills integration.
ownerhhhh124hhhh
repositoryhhhh124hhhh/style-transfer
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @hhhh124hhhh/style-transfer
last updatedFeb 7, 2026

Maintainer

hhhh124hhhh

hhhh124hhhh

Maintains style-transfer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
transfer.py
14.3 KB
_meta.json
463 B
package.json
561 B
SKILL.md
3.9 KB
SKILL.md

name: style-transfer description: Professional artistic style transfer via OpenAI Images API. Transform images into specific art styles, eras, and visual aesthetics. Use when user needs to convert an existing image into different artistic styles, apply famous art movements, or transform visual content with specific stylistic parameters (e.g., "make this photo look like an oil painting", "apply cyberpunk aesthetic", "transform into vintage photography").

Style Transfer Pro

Apply artistic style transfer to images using OpenAI Images API with curated style prompts.

Setup

  • Needs env: OPENAI_API_KEY
  • Needs source image URL (public URL or base64 data URI)

Quick Start

Transform an image to oil painting style:

python3 ~/Projects/agent-scripts/skills/style-transfer/scripts/transfer.py \
  --source "https://example.com/photo.jpg" \
  --style "oil painting on linen, impressionist brushwork, rich texture, van gogh style"

Transform to multiple styles at once:

python3 ~/Projects/agent-scripts/skills/style-transfer/scripts/transfer.py \
  --source "https://example.com/photo.jpg" \
  --style "oil painting" \
  --style "watercolor illustration" \
  --style "cyberpunk neon" \
  --style "vintage sepia photograph"

Style Library

Use these pre-defined style names (or provide custom prompts):

Art Movements

  • impressionist-oil - Impressionist oil painting with visible brushwork
  • watercolor-dream - Soft watercolor with ink linework
  • digital-art - Modern digital art with crisp details
  • comic-book - Bold comic book illustration style
  • anime-studio - Anime/ manga studio style
  • pixel-art - Retro pixel art aesthetic
  • vector-flat - Clean flat vector illustration
  • surreal-abstract - Surrealist abstract art

Photographic Styles

  • vintage-sepia - Sepia vintage photography
  • polaroid - Instant polaroid look with faded tones
  • film-noir - Black and white film noir aesthetic
  • candid-snapshot - Authentic snapshot look
  • studio-portrait - Professional studio photography
  • vogue-editorial - Fashion editorial style
  • golden-hour - Golden hour warm lighting
  • neon-noir - Cyberpunk neon noir

Period Styles

  • renaissance-portrait - Classical Renaissance oil painting
  • baroque-drama - Dramatic Baroque chiaroscuro
  • art-deco-elegance - Art Deco geometric elegance
  • mid-century-modern - Mid-century modern illustration
  • victorian-etching - Victorian etching aesthetic
  • steampunk-gear - Steampunk mechanical style
  • dystopian-grunge - Dystopian grunge aesthetic
  • psychedelic-60s - 1960s psychedelic art

Custom Style Prompts

For fine-grained control, provide full style prompts:

python3 ~/Projects/agent-scripts/skills/style-transfer/scripts/transfer.py \
  --source "https://example.com/photo.jpg" \
  --prompt "watercolor painting, soft brushstrokes, pastel color palette, hand-painted illustration style, minimal detail, elegant and dreamy"

Style prompt structure:

  1. Medium: "oil painting", "watercolor", "digital art", "photography"
  2. Technique: "impressionist", "glazing", "crosshatching", "flat design"
  3. Lighting: "softbox", "golden hour", "dramatic chiaroscuro", "diffuse"
  4. Color: "pastel", "muted", "vibrant", "muted earth tones"
  5. Quality: "ultra-detailed", "minimalist", "sketch", "finished artwork"

Parameters

  • --source - Source image URL (required)
  • --style - Pre-defined style name (repeatable)
  • --prompt - Full custom style prompt (overrides --style)
  • --out-dir - Output directory (default: ~/Projects/tmp/style-transfer-*)
  • --size - Image size: 1024x1024, 1792x1024, 1024x1792 (default: 1024x1024)
  • --quality - high/standard (default: high)
  • --model - OpenAI image model (default: gpt-image-1.5)
  • --api-key - OpenAI API key (or use OPENAI_API_KEY env)

Output

  • *.png - Transformed images
  • prompts.json - Style prompts used
  • index.html - Thumbnail gallery comparing styles
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install style-transfer?

Run openclaw add @hhhh124hhhh/style-transfer in your terminal. This installs style-transfer into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/hhhh124hhhh/style-transfer. Review commits and README documentation before installing.