browsing-styles

This skill should be used when the user asks to "browse art styles", "pick a style", "choose a style", "select a style", "list available styles", "search styles", "show style options", "what styles are available", "explore artistic styles", "open style browser", "style picker", or needs to see available styles for image generation. Launch the visual browser (browse.ts) when the user wants to interactively pick a style.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "browsing-styles" with this command: npx skills add b-open-io/gemskills/b-open-io-gemskills-browsing-styles

Browsing Styles

Browse and preview 169 artistic styles for image generation. Each style includes prompt hints and a generated tile reference image.

When to Use

  • Browsing available art styles for image generation
  • Searching for a specific style by name or category
  • Helping users choose a style for their project
  • Generating tile reference images for styles

Style Categories

CategoryDescriptionExamples
traditionalClassical art stylesImpressionism, Surrealism, Art Deco
digitalDigital & modern aestheticsCyberpunk, Vaporwave, Pixel Art
illustrationIllustration stylesAnime, Comic Book, Concept Art
photographyPhotography & film looksCinematic, Film Noir, Kodachrome
designDesign & UI trendsBrutalism, Glassmorphism, Bauhaus
retroRetro & nostalgiaY2K, Frutiger Aero, 90s Grunge
techniqueSpecific art techniquesWatercolor, Charcoal, Linocut
decorativePattern & decorative artsIslamic Geometric, Mandala, Moroccan
creativeCreative & material-basedMade of Sand, Underwater, Origami
culturalPop culture & iconic stylesSimpsons, Spawn, Dragon Ball, Cowboy Bebop

Quick Reference (Popular Styles)

ShortNameCategory
imprImpressionismtraditional
surrSurrealismtraditional
decoArt Decotraditional
cybrCyberpunkdigital
pixlPixel Artdigital
vaprVaporwavedigital
animAnime / Mangaillustration
ghblStudio Ghibliillustration
britRomero Britto Popillustration
brutBrutalismdesign
nbrtNeo-Brutalismdesign
glasGlassmorphismdesign
risoRisographdesign
y2kY2Kretro
frugFrutiger Aeroretro
psyc70s Psychedelicretro
wtrlWatercolor Loosetechnique
sumiInk Wash / Sumi-etechnique
sandMade of Sandcreative
undrUnderwatercreative

Style Picker (Default)

Running the preview server opens a browser with the full tile grid. The user clicks a style, views details in a modal, clicks "Select This Style". The script prints the selected style as JSON to stdout and exits automatically. Pick mode is the default.

STYLE_JSON=$(bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/preview_server.ts)

Parse STYLE_JSON for the id field and pass it as --style <id> to generate-image.

Options

bun run scripts/preview_server.ts                          # Pick mode (default): opens browser, returns JSON, exits
bun run scripts/preview_server.ts --port=4200              # Custom port
bun run scripts/preview_server.ts --no-open                # Don't auto-open browser
bun run scripts/preview_server.ts --browse                 # Browse-only mode: long-running server, no selection returned

Browse Mode

For standalone browsing without returning a selection, pass --browse:

bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/preview_server.ts --browse

This runs a long-lived server at localhost:3456. Use Ctrl+C to stop.

List Styles (CLI)

# List all styles
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/list_styles.ts

# Table format
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/list_styles.ts --table

# Filter by category
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/list_styles.ts --category design --table

# Search by name
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/list_styles.ts --search "watercolor"

# Show specific fields
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/list_styles.ts --fields id,shortName,name,category --table

Generate Tile Reference Images

Generate 1:1 tile images that visually represent each style:

# Generate all missing tiles
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --skip-existing

# Generate for a specific category
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --category creative --skip-existing

# Generate a single style tile
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --style cyberpunk

# Preview what would be generated
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --dry-run

# Higher concurrency (default: 2)
bun run ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --concurrency 4 --skip-existing

Tiles are saved to assets/tiles/<style-id>.png (512x512 PNG).

Integration with generate-image

Use styles with the generate-image skill:

# Using style ID
bun run ${CLAUDE_PLUGIN_ROOT}/skills/generate-image/scripts/generate.ts "mountain landscape" --style impressionism

# Using short name
bun run ${CLAUDE_PLUGIN_ROOT}/skills/generate-image/scripts/generate.ts "portrait" --style brit

# Style with other options
bun run ${CLAUDE_PLUGIN_ROOT}/skills/generate-image/scripts/generate.ts "city street" --style cybr --size 4K --aspect 16:9

When a tile image exists for the style, it is automatically sent as a visual reference alongside the prompt hints.

Style Registry

Styles are defined in assets/styles.json. Each style includes:

{
  "id": "cyberpunk",
  "shortName": "cybr",
  "name": "Cyberpunk",
  "category": "digital",
  "promptHints": "neon lights reflecting on rain-soaked streets...",
  "tilePrompt": "A rain-soaked cyberpunk megacity alley..."
}
  • promptHints: Comma-separated descriptors prepended to user prompts
  • tilePrompt: Full prompt used to generate the style's reference tile image

Adding Custom Styles

Edit assets/styles.json:

  1. Choose a unique id (lowercase, hyphens)
  2. Assign a short shortName (3-4 chars)
  3. Write descriptive promptHints
  4. Write a tilePrompt for generating the tile image
  5. Run bun run scripts/generate_tiles.ts --style <id> to generate the tile

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

generate-icon

No summary provided by upstream source.

Repository SourceNeeds Review
General

optimize-images

No summary provided by upstream source.

Repository SourceNeeds Review
General

ask-gemini

No summary provided by upstream source.

Repository SourceNeeds Review
General

generate-image

No summary provided by upstream source.

Repository SourceNeeds Review