← 返回 Skills 市场
galbria

Image generation and editing

作者 Gal Davidi · GitHub ↗ · v1.3.0 · MIT-0
cross-platform ✓ 安全检测通过
1745
总下载
4
收藏
1
当前安装
15
版本数
在 OpenClaw 中安装
/install bria-ai
功能描述
AI image generation, editing, and background removal API via Bria.ai — authenticates via OAuth device flow and caches credentials in ~/.bria/credentials, the...
使用说明 (SKILL.md)

Bria — AI Image Generation, Editing & Background Removal

Commercially safe, royalty-free image generation and editing through 20+ API endpoints. Generate from text, edit with natural language, remove backgrounds, create product shots, and build automated image pipelines.

For additional endpoint details beyond what is documented here, see the Bria API reference for agents.

When to Use This Skill

Use this skill when the user wants to:

  • Generate images — "create an image of...", "make me a banner", "generate a hero image", "I need a product photo"
  • Edit images — "change the background", "make it look like winter", "add a vase to the table", "remove the person"
  • Remove/replace backgrounds — "make the background transparent", "cut out the product", "replace with a studio background"
  • Product photography — "create a lifestyle shot", "place this product in a kitchen scene", "e-commerce packshot"
  • Enhance/transform — "upscale this image", "make it higher resolution", "restyle as oil painting", "change the lighting"
  • Batch/pipeline — "generate 10 product images", "process all these images", "remove backgrounds in bulk"

This skill handles the full spectrum of AI image operations. If the user mentions images, photos, visuals, or any visual content creation — use this skill.


What You Can Build

  • E-commerce product catalog — Generate product photos, remove backgrounds for transparent PNGs, place products in lifestyle scenes (kitchen, office, outdoor), create packshots with consistent style
  • Landing page visuals — Generate hero images, abstract tech backgrounds, team photos, and section illustrations — all matching your brand aesthetic
  • Social media content — Instagram posts (1:1), Stories/Reels (9:16), LinkedIn banners (16:9), ad creatives — batch-generate variants for A/B testing
  • Marketing campaign assets — Seasonal transformations (summer→winter), restyle product shots for different markets, create localized visuals at scale
  • Photo restoration pipeline — Restore old damaged photos, colorize black & white images, upscale low-res photos to 4x, enhance quality automatically
  • Brand asset toolkit — Remove backgrounds from logos, blend artwork onto products (t-shirts, mugs), create consistent product photography across your entire catalog
  • AI-powered design workflows — Chain operations: generate→edit→remove background→place in scene→upscale — all automated through API pipelines

Setup — Authentication

Before making any API call, you need a valid Bria access token.

Step 1: Check for existing credentials

if [ -f ~/.bria/credentials ]; then
  BRIA_ACCESS_TOKEN=$(grep '^access_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
  BRIA_API_KEY=$(grep '^api_token=' "$HOME/.bria/credentials" | cut -d= -f2-)
fi
if [ -z "$BRIA_ACCESS_TOKEN" ]; then
  echo "NO_CREDENTIALS"
elif [ -n "$BRIA_API_KEY" ]; then
  echo "READY"
else
  echo "CREDENTIALS_FOUND"
fi

If the output is READY, skip straight to making API calls — no introspection needed. If the output is CREDENTIALS_FOUND, skip to Step 3. If the output is NO_CREDENTIALS, proceed to Step 2.

Step 2: Authenticate via device authorization

Start the device authorization flow:

2a. Request a device code:

DEVICE_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/device/authorize" \
  -H "Content-Type: application/json")
echo "$DEVICE_RESPONSE"

Parse the response fields:

  • device_code — used to poll for the token (keep this, don't show to user)
  • user_code — the code the user must enter (e.g. BRIA-XXXX)
  • interval — seconds between poll attempts

2b. Show the user a single sign-in link. Tell them exactly this — nothing more:

Connect your Bria account: Click here to sign in Your code is {user_code} — it's already filled in.

Do NOT show two links. Do NOT show the raw URL separately. Do NOT use verification_uri from the API response. Keep it to one clickable link.

2c. Poll for the token. After showing the user the code, immediately start polling. Try up to 60 times with the given interval (default 5 seconds):

for i in $(seq 1 60); do
  TOKEN_RESPONSE=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token" \
    -d "grant_type=urn:ietf:params:oauth:grant-type:device_code" \
    -d "device_code=$DEVICE_CODE")
  ACCESS_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"access_token" *: *"\([^"]*\)".*/\1/p')
  if [ -n "$ACCESS_TOKEN" ]; then
    BRIA_ACCESS_TOKEN="$ACCESS_TOKEN"
    REFRESH_TOKEN=$(printf '%s' "$TOKEN_RESPONSE" | sed -n 's/.*"refresh_token" *: *"\([^"]*\)".*/\1/p')
    mkdir -p ~/.bria
    printf 'access_token=%s\
refresh_token=%s\
' "$BRIA_ACCESS_TOKEN" "$REFRESH_TOKEN" > "$HOME/.bria/credentials"
    echo "AUTHENTICATED"
    break
  fi
  sleep 5
done

If the output contains AUTHENTICATED, proceed to Step 3. Otherwise the code expired — start over from Step 2a.

Do not proceed with any API call until authentication is confirmed.

Step 3: Verify billing status and resolve API key

Introspect the bearer token to check billing status and obtain the real API key for Bria API calls:

INTROSPECT=$(curl -s -X POST "https://engine.prod.bria-api.com/v2/auth/token/introspect" \
  -d "token=$BRIA_ACCESS_TOKEN")
BILLING_STATUS=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_status" *: *"\([^"]*\)".*/\1/p')
if [ "$BILLING_STATUS" = "blocked" ]; then
  BILLING_MSG=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"billing_message" *: *"\([^"]*\)".*/\1/p')
  echo "BILLING_ERROR: $BILLING_MSG"
fi
ACTIVE=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"active" *: *\([^,}]*\).*/\1/p' | tr -d ' ')
if [ "$ACTIVE" = "false" ]; then
  # Clear stale tokens so re-auth starts fresh (credentials file is re-created in Step 2c)
  printf '' > "$HOME/.bria/credentials"
  echo "TOKEN_EXPIRED"
fi
BRIA_API_KEY=$(printf '%s' "$INTROSPECT" | sed -n 's/.*"api_token" *: *"\([^"]*\)".*/\1/p')
if [ -n "$BRIA_API_KEY" ]; then
  grep -v '^api_token=' "$HOME/.bria/credentials" > "$HOME/.bria/credentials.tmp" 2>/dev/null || true
  printf 'api_token=%s\
' "$BRIA_API_KEY" >> "$HOME/.bria/credentials.tmp"
  mv "$HOME/.bria/credentials.tmp" "$HOME/.bria/credentials"
fi

Interpret the output:

  • If it prints BILLING_ERROR: ... — relay the message to the user exactly as shown and stop. Do not make any API calls.
  • If it prints TOKEN_EXPIRED — the session is no longer valid. Tell the user their session expired and restart from Step 2.
  • Otherwise, BRIA_API_KEY now contains the real API key and is cached for future calls. Proceed to the next section.

Core Capabilities

Need Capability Use Case
Generate images from text FIBO Generate Hero images, product shots, illustrations, social media images, banners
Edit images by text instruction FIBO-Edit Change colors, modify objects, transform scenes
Edit image region with mask GenFill/Erase Precise inpainting, add/replace specific regions
Add/Replace/Remove objects Text-based editing Add vase, replace apple with pear, remove table
Remove background (transparent PNG) RMBG-2.0 Extract subjects for overlays, logos, cutouts
Replace/blur/erase background Background ops Change, blur, or remove backgrounds
Expand/outpaint images Outpainting Extend boundaries, change aspect ratios
Upscale image resolution Super Resolution Increase resolution 2x or 4x
Enhance image quality Enhancement Improve lighting, colors, details
Restyle images Restyle Oil painting, anime, cartoon, 3D render
Change lighting Relight Golden hour, spotlight, dramatic lighting
Change season Reseason Spring, summer, autumn, winter
Composite/blend images Image Blending Apply textures, logos, merge images
Restore old photos Restoration Fix old/damaged photos
Colorize images Colorization Add color to B&W, or convert to B&W
Sketch to photo Sketch2Image Convert drawings to realistic photos
Create product lifestyle shots Lifestyle Shot Place products in scenes for e-commerce
Integrate products into scenes Product Integrate Embed products at exact coordinates

How to Call Any Endpoint

Use bria_call for all API calls. It handles URL passthrough, local file base64 encoding, JSON construction, API call, and async polling in a single function call. The API key is auto-loaded from ~/.bria/credentials.

source ~/.agents/skills/bria-ai/references/code-examples/bria_client.sh

# Generate (no image input — pass empty string)
RESULT=$(bria_call /v2/image/generate "" '"prompt": "your description", "aspect_ratio": "16:9", "sync": true')

# Remove background
RESULT=$(bria_call /v2/image/edit/remove_background "/path/to/local/image.png")

# Replace background
RESULT=$(bria_call /v2/image/edit/replace_background "https://example.com/img.jpg" '"prompt": "sunset beach"')

# Edit image (uses images array — pass --key images)
RESULT=$(bria_call /v2/image/edit "/path/to/image.png" --key images '"instruction": "make it look warmer"')

# Upscale
RESULT=$(bria_call /v2/image/edit/increase_resolution "https://example.com/img.jpg" '"scale": 4')

# Lifestyle shot
RESULT=$(bria_call /v1/product/lifestyle_shot_by_text "/path/to/product.png" '"prompt": "modern kitchen countertop"')

echo "$RESULT"

Calling convention: bria_call \x3Cendpoint> \x3Cimage_or_empty> [--key \x3Cjson_key>] [extra JSON fields...]

  • Pass a URL, local file path, or "" (empty) for endpoints without image input
  • Use --key images when the endpoint expects an images array instead of image
  • Extra JSON fields are appended as key-value pairs: '"key": "value"'
  • Returns the result image URL on success, or prints an error to stderr

Generation options: Aspect ratios 1:1, 16:9, 4:3, 9:16, 3:4. Resolution 1MP (default) or 4MP (more detail, +30s). Pass "sync": true for single images.

Advanced: For precise control over generation, use the vgl skill for structured VGL JSON prompts instead of natural language.

See API Endpoints Reference for full parameter documentation on all 20+ endpoints.


Prompt Engineering Tips

  • Style: "professional product photography" vs "casual snapshot", "flat design illustration" vs "3D rendered"
  • Lighting: "soft natural light", "studio lighting", "dramatic shadows"
  • Background: "white studio", "gradient", "blurred office", "transparent"
  • Composition: "centered", "rule of thirds", "negative space on left for text"
  • Quality keywords: "high quality", "professional", "commercial grade", "4K", "sharp focus"
  • Negative prompts: "blurry, low quality, pixelated", "text, watermark, logo"

Recipes by Use Case

Hero banner (16:9): "Modern tech startup workspace with developers collaborating, bright natural lighting, clean minimal aesthetic" — include "clean background" or "minimal" for text overlay space

Product photo (1:1): "Professional product photo of [item] on white studio background, soft shadows, commercial photography lighting" — then remove background for transparent PNG

Presentation visual (16:9): "Abstract visualization of data analytics, blue and purple gradient, modern corporate style, clean composition with space for text" — common themes: "abstract technology", "business collaboration", "minimalist geometric patterns"

Instagram post (1:1): "Lifestyle photo of coffee and laptop on wooden desk, morning light, cozy atmosphere"

Story/Reel (9:16): "Vertical product showcase of smartphone, floating in gradient background, tech aesthetic"


Additional Resources

Related Skills

  • vgl — Write structured VGL JSON prompts for precise, deterministic control over FIBO image generation
  • image-utils — Classic image manipulation (resize, crop, composite, watermarks) for post-processing
安全使用建议
This skill appears coherent for Bria image operations. Before installing, consider: (1) it will read and write tokens in ~/.bria/credentials and may use a BRIA_API_KEY environment variable — verify what is stored there and revoke tokens if you uninstall; (2) images (including base64-encoded image files) will be uploaded to https://engine.prod.bria-api.com — do not send sensitive images you don't want processed externally; (3) the helper creates short-lived files in /tmp — if your environment has strict tmp/data policies, review that behavior; (4) ensure the BRIA_API_KEY you provide has appropriate scope/limits and comes from a trusted Bria account; (5) minor documentation inconsistency: the API docs instruct a User-Agent including a package.json version, but no package.json is bundled — harmless but worth noting. If you trust Bria for processing your images and are comfortable with local token storage, the skill is reasonably proportioned and coherent.
功能分析
Type: OpenClaw Skill Name: bria-ai Version: 1.3.0 The bria-ai skill bundle provides a legitimate integration for the Bria.ai image generation and editing service. It implements a standard OAuth2 Device Authorization Grant flow for authentication, storing session tokens in ~/.bria/credentials. The included bash helper (bria_client.sh) facilitates API calls to engine.prod.bria-api.com, handling local file uploads and asynchronous polling. The instructions in SKILL.md are well-structured and focused on the stated purpose without any evidence of prompt injection or malicious intent.
能力评估
Purpose & Capability
Name/description (image generation, editing, background removal) align with requested artifacts: BRIA_API_KEY, ~/.bria/credentials, and curl. The code and endpoint docs target Bria API URLs and image-editing endpoints only. Minor note: both an API key env var and an OAuth device flow are supported (the presence of BRIA_API_KEY as primaryEnv is reasonable but slightly redundant if user prefers device flow).
Instruction Scope
SKILL.md and the included shell helper only read ~/.bria/credentials, accept image files/URLs, create short-lived /tmp payload/result files, and POST to engine.prod.bria-api.com (and use platform.bria.ai for device verification). There are no instructions to read other system files, transmit unrelated data, or contact unexpected third-party endpoints.
Install Mechanism
Instruction-only skill (no install spec). The included code examples are shell scripts that rely only on curl/base64/sed and write temporary files to /tmp; no arbitrary downloads or archive extraction are performed.
Credentials
Only BRIA_API_KEY (primary credential) plus a local credentials file (~/.bria/credentials) are required. Those map directly to the Bria API and the documented device-flow. No unrelated tokens, cloud credentials, or broad secrets are requested.
Persistence & Privilege
always:false and user-invocable:true (normal). The skill caches tokens under ~/.bria/credentials (expected for OAuth); it does not request system-wide config changes or modify other skills. Autonomous invocation is allowed by default (platform behavior) but not an added privilege of this skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install bria-ai
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /bria-ai 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.3.0
**Bria AI Skill v1.3.0 – Major authentication system update** - Upgraded authentication to use OAuth device flow with credential caching in `~/.bria/credentials` (no longer manual API key setup). - Sign-in flow is guided via a single authorization link, improving clarity and usability. - Billing status and API key resolution is now automatic via token introspection. - All code samples and references to manual API key checks have been removed and replaced with the new OAuth flow. - Removed legacy code samples and reference documentation files. This version streamlines setup, enhances security, and simplifies user onboarding.
v1.2.7
**Bria AI Skill v0.0.29 Changelog** - Improved API key onboarding: now guides users to acquire and permanently save their API key, including shell and Windows support. - Enhanced setup instructions with cross-platform guidance and auto-detection for environment persistence. - Broadened and clarified the feature descriptions for easier discovery of all capabilities. - Documentation updated to latest API version and usage best practices. - Minor wording changes for clarity, consistency, and user experience.
v0.0.27
- Added an MIT license file. - Improved API key setup instructions: now checks if BRIA_API_KEY is set without printing its value.
v0.2.6
Bria AI skill v0.2.6 - Expanded and clarified documentation on all features and API endpoints in a new, detailed `SKILL.md`. - Added clear setup instructions and strong API key validation process before usage. - Unified and standardized cURL request examples for all core operations (generate, edit, background removal, upscaling, compositing, product scene creation, etc.). - Provided a comprehensive quick reference for all core use cases and structured JSON requests. - Included advanced response handling guidance (sync/async, polling). - Enhanced descriptions for all capabilities, especially controllable, fine-grained editing operations.
v1.0.2
- No user-visible changes; documentation formatting and metadata clean-up. - No changes to functionality, API references, or version identifiers.
v1.0.1
- Simplified the API key setup instructions: removed export command and persistence instructions to streamline onboarding. - Clarified that no image operations should proceed until the API key is confirmed set. - Removed guidance about setting environment variables from the instructions. - No changes to the functionality or API reference.
v1.0.0
- Improved API key setup instructions: users are now guided to manually visit the Bria API key page instead of relying on auto-opening the browser. - Clarified messaging: instructions for obtaining and setting the API key are simpler and more direct. - Removed platform-specific shell commands for opening URLs; replaced with a universal approach. - No changes to features, endpoints, or core functionality.
v1.2.6
- No changes detected in this release; version and documentation remain the same. - All API usage instructions, setup steps, and capabilities unchanged. - No new features, bug fixes, or enhancements added.
v1.2.5
- Bumped version to 1.2.5. - Updated all example curl commands to use User-Agent: BriaSkills/1.2.5. - No other changes to core functionality or documentation.
v1.2.4
Bria AI Skill 1.2.4 - Streamlined API key setup: requires users to manually set environment variable for persistence—no more direct profile file edits. - Modernized description, homepage, and metadata for improved clarity and discoverability. - Updated all example API requests to include the BriaSkills/1.2.4 User-Agent header. - Expanded and clarified usage tables and quick reference for all core image generation and editing features. - Improved guidance and documentation for sync/async image generation and pipeline scenarios.
v1.2.3
- Updated and expanded the skill description to clarify supported image generation, editing, enhancement, transformation, and e-commerce use cases. - Added more trigger phrases related to image editing, batch generation, pipeline workflows, style transfer, photo restoration, colorization, and product integration. - No changes to APIs, capabilities, or technical setup steps; documentation improvements only. - This update increases discoverability and makes usage scenarios clearer for a broader audience.
v1.2.2
No file changes detected; documentation and usage details improved. - Added new core capability: Product Integrate for embedding products into scenes at specific coordinates. - Clarified quick reference commands, including new fields for image resolution and product integration workflow. - Updated Product Lifestyle Shot endpoint path for accuracy. - Documented available image resolutions and their effects. - Expanded capability descriptions for clearer use case guidance.
v1.2.1
Version 1.2.1 - Added step-by-step API key setup and verification instructions for users (including platform-specific commands for macOS, Linux, and Windows). - Improved and reorganized documentation for clearer usage guidance and core capability explanations. - Enhanced skill description for easier discovery and understanding of controllable image generation and editing use cases. - Added references/workflows.md for workflow guidance; removed outdated guide.md file. - Updated metadata (author, version, license) for consistency and clarity.
v0.0.2
Version 0.0.2
v0.0.1
Initial release of bria-ai: Generate and edit production-ready visual assets with Bria.ai’s commercially-safe models. - Supports batch image generation and parallel API workflows. - Offers chained pipeline capabilities: generate → edit → remove background, and more. - Core functions include image creation, editing (text/mask), background removal, outpainting, upscaling, and style/quality transformations. - Ready-to-use examples and prompts for websites, presentations, e-commerce, and marketing assets. - Includes prompt engineering and workflow tips for best results in production use.
元数据
Slug bria-ai
版本 1.3.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 15
常见问题

Image generation and editing 是什么?

AI image generation, editing, and background removal API via Bria.ai — authenticates via OAuth device flow and caches credentials in ~/.bria/credentials, the... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1745 次。

如何安装 Image generation and editing?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install bria-ai」即可一键安装,无需额外配置。

Image generation and editing 是免费的吗?

是的,Image generation and editing 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Image generation and editing 支持哪些平台?

Image generation and editing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Image generation and editing?

由 Gal Davidi(@galbria)开发并维护,当前版本 v1.3.0。

💬 留言讨论