{"id":"df6dd2a8-fbbd-4f8b-8d02-aef9e63fbc63","shortId":"qNA5LL","kind":"skill","title":"bria-ai","tagline":"AI image generation, editing, and background removal API via Bria.ai — remove backgrounds to get transparent PNGs and cutouts, generate images from text prompts, and edit photos with natural language instructions. Also create product photography and lifestyle shots, replace or bl","description":"# Bria — AI Image Generation, Editing & Background Removal\n\nCommercially 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.\n\nFor additional endpoint details beyond what is documented here, see the [Bria API reference for agents](https://docs.bria.ai/llms.txt).\n\n## When to Use This Skill\n\nUse this skill when the user wants to:\n- **Generate images** — \"create an image of...\", \"make me a banner\", \"generate a hero image\", \"I need a product photo\"\n- **Edit images** — \"change the background\", \"make it look like winter\", \"add a vase to the table\", \"remove the person\"\n- **Remove/replace backgrounds** — \"make the background transparent\", \"cut out the product\", \"replace with a studio background\"\n- **Product photography** — \"create a lifestyle shot\", \"place this product in a kitchen scene\", \"e-commerce packshot\"\n- **Enhance/transform** — \"upscale this image\", \"make it higher resolution\", \"restyle as oil painting\", \"change the lighting\"\n- **Batch/pipeline** — \"generate 10 product images\", \"process all these images\", \"remove backgrounds in bulk\"\n\nThis skill handles the full spectrum of AI image operations. If the user mentions images, photos, visuals, or any visual content creation — use this skill.\n\n---\n\n## What You Can Build\n\n- **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\n- **Landing page visuals** — Generate hero images, abstract tech backgrounds, team photos, and section illustrations — all matching your brand aesthetic\n- **Social media content** — Instagram posts (1:1), Stories/Reels (9:16), LinkedIn banners (16:9), ad creatives — batch-generate variants for A/B testing\n- **Marketing campaign assets** — Seasonal transformations (summer→winter), restyle product shots for different markets, create localized visuals at scale\n- **Photo restoration pipeline** — Restore old damaged photos, colorize black & white images, upscale low-res photos to 4x, enhance quality automatically\n- **Brand asset toolkit** — Remove backgrounds from logos, blend artwork onto products (t-shirts, mugs), create consistent product photography across your entire catalog\n- **AI-powered design workflows** — Chain operations: generate→edit→remove background→place in scene→upscale — all automated through API pipelines\n\n---\n\n## Setup — Authentication\n\nBefore making any API call, you need a valid Bria access token.\n\n### Step 1: Check for existing credentials\n\n```bash\nif [ -f ~/.bria/credentials ]; then\n  BRIA_ACCESS_TOKEN=$(grep '^access_token=' \"$HOME/.bria/credentials\" | cut -d= -f2-)\n  BRIA_API_KEY=$(grep '^api_token=' \"$HOME/.bria/credentials\" | cut -d= -f2-)\nfi\nif [ -z \"$BRIA_ACCESS_TOKEN\" ]; then\n  echo \"NO_CREDENTIALS\"\nelif [ -n \"$BRIA_API_KEY\" ]; then\n  echo \"READY\"\nelse\n  echo \"CREDENTIALS_FOUND\"\nfi\n```\n\nIf the output is `READY`, skip straight to making API calls — no introspection needed.\nIf the output is `CREDENTIALS_FOUND`, skip to Step 3.\nIf the output is `NO_CREDENTIALS`, proceed to Step 2.\n\n### Step 2: Authenticate via device authorization\n\nStart the device authorization flow:\n\n**2a. Request a device code:**\n\n```bash\nDEVICE_RESPONSE=$(curl -s -X POST \"https://engine.prod.bria-api.com/v2/auth/device/authorize\" \\\n  -H \"Content-Type: application/json\")\necho \"$DEVICE_RESPONSE\"\n```\n\nParse the response fields:\n- `device_code` — used to poll for the token (keep this, don't show to user)\n- `user_code` — the code the user must enter (e.g. `BRIA-XXXX`)\n- `interval` — seconds between poll attempts\n\n**2b. Show the user a single sign-in link.** Tell them exactly this — nothing more:\n\n> **Connect your Bria account:** [Click here to sign in](https://platform.bria.ai/device/verify?user_code={user_code})\n> Your code is **{user_code}** — it's already filled in.\n\nDo 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.\n\n**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):\n\n```bash\nfor i in $(seq 1 60); do\n  TOKEN_RESPONSE=$(curl -s -X POST \"https://engine.prod.bria-api.com/v2/auth/token\" \\\n    -d \"grant_type=urn:ietf:params:oauth:grant-type:device_code\" \\\n    -d \"device_code=$DEVICE_CODE\")\n  ACCESS_TOKEN=$(printf '%s' \"$TOKEN_RESPONSE\" | sed -n 's/.*\"access_token\" *: *\"\\([^\"]*\\)\".*/\\1/p')\n  if [ -n \"$ACCESS_TOKEN\" ]; then\n    BRIA_ACCESS_TOKEN=\"$ACCESS_TOKEN\"\n    REFRESH_TOKEN=$(printf '%s' \"$TOKEN_RESPONSE\" | sed -n 's/.*\"refresh_token\" *: *\"\\([^\"]*\\)\".*/\\1/p')\n    mkdir -p ~/.bria\n    printf 'access_token=%s\\nrefresh_token=%s\\n' \"$BRIA_ACCESS_TOKEN\" \"$REFRESH_TOKEN\" > \"$HOME/.bria/credentials\"\n    echo \"AUTHENTICATED\"\n    break\n  fi\n  sleep 5\ndone\n```\n\nIf the output contains `AUTHENTICATED`, proceed to Step 3. Otherwise the code expired — start over from Step 2a.\n\n**Do not proceed with any API call until authentication is confirmed.**\n\n### Step 3: Verify billing status and resolve API key\n\nIntrospect the bearer token to check billing status and obtain the real API key for Bria API calls:\n\n```bash\nINTROSPECT=$(curl -s -X POST \"https://engine.prod.bria-api.com/v2/auth/token/introspect\" \\\n  -d \"token=$BRIA_ACCESS_TOKEN\")\nBILLING_STATUS=$(printf '%s' \"$INTROSPECT\" | sed -n 's/.*\"billing_status\" *: *\"\\([^\"]*\\)\".*/\\1/p')\nif [ \"$BILLING_STATUS\" = \"blocked\" ]; then\n  BILLING_MSG=$(printf '%s' \"$INTROSPECT\" | sed -n 's/.*\"billing_message\" *: *\"\\([^\"]*\\)\".*/\\1/p')\n  echo \"BILLING_ERROR: $BILLING_MSG\"\nfi\nACTIVE=$(printf '%s' \"$INTROSPECT\" | sed -n 's/.*\"active\" *: *\\([^,}]*\\).*/\\1/p' | tr -d ' ')\nif [ \"$ACTIVE\" = \"false\" ]; then\n  # Clear stale tokens so re-auth starts fresh (credentials file is re-created in Step 2c)\n  printf '' > \"$HOME/.bria/credentials\"\n  echo \"TOKEN_EXPIRED\"\nfi\nBRIA_API_KEY=$(printf '%s' \"$INTROSPECT\" | sed -n 's/.*\"api_token\" *: *\"\\([^\"]*\\)\".*/\\1/p')\nif [ -n \"$BRIA_API_KEY\" ]; then\n  grep -v '^api_token=' \"$HOME/.bria/credentials\" > \"$HOME/.bria/credentials.tmp\" 2>/dev/null || true\n  printf 'api_token=%s\\n' \"$BRIA_API_KEY\" >> \"$HOME/.bria/credentials.tmp\"\n  mv \"$HOME/.bria/credentials.tmp\" \"$HOME/.bria/credentials\"\nfi\n```\n\nInterpret the output:\n- If it prints `BILLING_ERROR: ...` — relay the message to the user exactly as shown and **stop**. Do not make any API calls.\n- If it prints `TOKEN_EXPIRED` — the session is no longer valid. Tell the user their session expired and restart from Step 2.\n- Otherwise, `BRIA_API_KEY` now contains the real API key and is cached for future calls. Proceed to the next section.\n\n---\n\n## Core Capabilities\n\n| Need | Capability | Use Case |\n|------|------------|----------|\n| Generate images from text | FIBO Generate | Hero images, product shots, illustrations, social media images, banners |\n| Edit images by text instruction | FIBO-Edit | Change colors, modify objects, transform scenes |\n| Edit image region with mask | GenFill/Erase | Precise inpainting, add/replace specific regions |\n| Add/Replace/Remove objects | Text-based editing | Add vase, replace apple with pear, remove table |\n| Remove background (transparent PNG) | RMBG-2.0 | Extract subjects for overlays, logos, cutouts |\n| Replace/blur/erase background | Background ops | Change, blur, or remove backgrounds |\n| Expand/outpaint images | Outpainting | Extend boundaries, change aspect ratios |\n| Upscale image resolution | Super Resolution | Increase resolution 2x or 4x |\n| Enhance image quality | Enhancement | Improve lighting, colors, details |\n| Restyle images | Restyle | Oil painting, anime, cartoon, 3D render |\n| Change lighting | Relight | Golden hour, spotlight, dramatic lighting |\n| Change season | Reseason | Spring, summer, autumn, winter |\n| Composite/blend images | Image Blending | Apply textures, logos, merge images |\n| Restore old photos | Restoration | Fix old/damaged photos |\n| Colorize images | Colorization | Add color to B&W, or convert to B&W |\n| Sketch to photo | Sketch2Image | Convert drawings to realistic photos |\n| Create product lifestyle shots | Lifestyle Shot | Place products in scenes for e-commerce |\n| Integrate products into scenes | Product Integrate | Embed products at exact coordinates |\n\n## How to Call Any Endpoint\n\nUse `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`.\n\n**First**, source the helper script at `references/code-examples/bria_client.sh` (resolve relative to this skill's directory).\n\n```bash\nsource <SKILL_DIR>/references/code-examples/bria_client.sh\n\n# Generate (no image input — pass empty string)\nRESULT=$(bria_call /v2/image/generate \"\" '\"prompt\": \"your description\", \"aspect_ratio\": \"16:9\", \"sync\": true')\n\n# Remove background\nRESULT=$(bria_call /v2/image/edit/remove_background \"/path/to/local/image.png\")\n\n# Replace background\nRESULT=$(bria_call /v2/image/edit/replace_background \"https://example.com/img.jpg\" '\"prompt\": \"sunset beach\"')\n\n# Edit image (uses images array — pass --key images)\nRESULT=$(bria_call /v2/image/edit \"/path/to/image.png\" --key images '\"instruction\": \"make it look warmer\"')\n\n# Upscale\nRESULT=$(bria_call /v2/image/edit/increase_resolution \"https://example.com/img.jpg\" '\"scale\": 4')\n\n# Lifestyle shot\nRESULT=$(bria_call /v1/product/lifestyle_shot_by_text \"/path/to/product.png\" '\"prompt\": \"modern kitchen countertop\"')\n\necho \"$RESULT\"\n```\n\n**Calling convention:** `bria_call <endpoint> <image_or_empty> [--key <json_key>] [extra JSON fields...]`\n- Pass a URL, local file path, or `\"\"` (empty) for endpoints without image input\n- Use `--key images` when the endpoint expects an `images` array instead of `image`\n- Extra JSON fields are appended as key-value pairs: `'\"key\": \"value\"'`\n- Returns the result image URL on success, or prints an error to stderr\n\n**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.\n\n> **Advanced**: For precise control over generation, use the **vgl** skill for structured VGL JSON prompts instead of natural language.\n\nSee **[API Endpoints Reference](references/api-endpoints.md)** for full parameter documentation on all 20+ endpoints.\n\n---\n\n## Prompt Engineering Tips\n\n- **Style**: \"professional product photography\" vs \"casual snapshot\", \"flat design illustration\" vs \"3D rendered\"\n- **Lighting**: \"soft natural light\", \"studio lighting\", \"dramatic shadows\"\n- **Background**: \"white studio\", \"gradient\", \"blurred office\", \"transparent\"\n- **Composition**: \"centered\", \"rule of thirds\", \"negative space on left for text\"\n- **Quality keywords**: \"high quality\", \"professional\", \"commercial grade\", \"4K\", \"sharp focus\"\n- **Negative prompts**: \"blurry, low quality, pixelated\", \"text, watermark, logo\"\n\n### Recipes by Use Case\n\n**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\n\n**Product photo (1:1):** `\"Professional product photo of [item] on white studio background, soft shadows, commercial photography lighting\"` — then remove background for transparent PNG\n\n**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\"\n\n**Instagram post (1:1):** `\"Lifestyle photo of coffee and laptop on wooden desk, morning light, cozy atmosphere\"`\n\n**Story/Reel (9:16):** `\"Vertical product showcase of smartphone, floating in gradient background, tech aesthetic\"`\n\n---\n\n## Additional Resources\n\n- **[API Endpoints Reference](references/api-endpoints.md)** — Complete endpoint documentation with request/response formats for all 20+ endpoints\n- **[Shell Client (bria_client.sh)](references/code-examples/bria_client.sh)** — Single-function helper: `bria_call` handles auth, base64, JSON, polling\n- **[Full API docs for agents (llms.txt)](https://docs.bria.ai/llms.txt)** — Agent-ready Bria API reference; use when this skill's summary is not enough\n\n## Related Skills\n\n- **vgl** — Write structured VGL JSON prompts for precise, deterministic control over FIBO image generation\n- **image-utils** — Classic image manipulation (resize, crop, composite, watermarks) for post-processing","tags":["bria","skill","bria-ai","agen","agent-skill","agent-skills","ai-agents","claude-code-skill","claude-skills","image-generation"],"capabilities":["skill","source-bria-ai","skill-bria-ai","topic-agen","topic-agent-skill","topic-agent-skills","topic-ai-agents","topic-claude-code-skill","topic-claude-skills","topic-image-generation"],"categories":["bria-skill"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/Bria-AI/bria-skill/bria-ai","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add Bria-AI/bria-skill","source_repo":"https://github.com/Bria-AI/bria-skill","install_from":"skills.sh"}},"qualityScore":"0.477","qualityRationale":"deterministic score 0.48 from registry signals: · indexed on github topic:agent-skills · 54 github stars · SKILL.md body (12,711 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-02T06:56:04.200Z","embedding":null,"createdAt":"2026-04-18T22:15:59.258Z","updatedAt":"2026-05-02T06:56:04.200Z","lastSeenAt":"2026-05-02T06:56:04.200Z","tsv":"'+30':1411 '-2.0':1062 '/.bria':725 '/.bria/credentials':413,1231 '/dev/null':914 '/device/verify?user_code=':589 '/img.jpg':1284,1315 '/llms.txt)**':1667 '/llms.txt).':99 '/path/to/image.png':1300 '/path/to/local/image.png':1275 '/path/to/product.png':1324 '/references/code-examples/bria_client.sh':1248 '/v1/product/lifestyle_shot_by_text':1323 '/v2/auth/device/authorize':517 '/v2/auth/token':671 '/v2/auth/token/introspect':811 '/v2/image/edit':1299 '/v2/image/edit/increase_resolution':1312 '/v2/image/edit/remove_background':1274 '/v2/image/edit/replace_background':1281 '/v2/image/generate':1259 '1':290,291,405,660,1394,1395,1544,1545,1599,1600 '1/p':700,722,827,843,858,900 '10':200 '16':294,297,1265,1396,1401,1518,1568,1616 '1mp':1405 '2':491,493,913,975 '20':61,1449,1642 '2a':503,764 '2b':562 '2c':629,882 '2x':1093 '3':481,755,777,1399,1402 '3d':1111,1465 '4':1317,1398,1403 '4k':1500 '4mp':1408 '4x':343,1095 '5':653,745 '60':646,661 '9':293,298,1266,1397,1400,1519,1569,1615 'a/b':306 'abstract':272,1570,1590 'access':402,416,419,439,689,698,703,707,709,727,735,815 'account':581 'across':366 'activ':850,857,862 'ad':299 'add':142,1049,1147 'add/replace':1040 'add/replace/remove':1043 'addit':82,1628 'advanc':1419 'aesthet':284,1532,1627 'agent':96,1663,1669 'agent-readi':1668 'ai':3,4,45,218,371 'ai-pow':370 'alreadi':599 'also':34 'analyt':1574 'anim':1109 'api':11,62,93,388,395,426,429,448,467,621,770,783,797,801,890,898,904,909,917,922,952,978,984,1201,1213,1224,1439,1630,1660,1672 'append':1369 'appl':1052 'appli':1132 'application/json':522 'array':1292,1361 'artwork':355 'aspect':1084,1263,1392 'asset':310,348 'async':1216 'atmospher':1613 'attempt':561 'auth':871,1655 'authent':391,494,741,751,773 'author':497,501 'auto':1228 'auto-load':1227 'autom':78,386 'automat':346 'autumn':1126 'b':1150,1155 'background':9,15,49,72,136,152,155,165,208,249,274,351,380,1058,1070,1071,1077,1270,1277,1475,1535,1554,1562,1625 'banner':122,296,1017,1517 'base':1047 'base64':1209,1656 'bash':410,508,655,803,1246 'batch':302 'batch-gener':301 'batch/pipeline':198 'beach':1287 'bearer':787 'beyond':85 'bill':779,791,817,825,829,833,841,845,847,935 'bl':43 'black':334 'blend':354,1131 'block':831 'blue':1575 'blur':1074,1479 'blurri':1505 'boundari':1082 'brand':283,347 'break':742 'bria':2,44,92,401,415,425,438,447,555,580,706,734,800,814,889,903,921,977,1197,1257,1272,1279,1297,1310,1321,1333,1652,1671 'bria-ai':1 'bria-xxxx':554 'bria.ai':13 'bria_client.sh':1646 'bright':1527 'build':77,239 'bulk':210 'busi':1592 'cach':988 'call':396,468,771,802,953,991,1193,1198,1202,1214,1222,1258,1273,1280,1298,1311,1322,1331,1334,1653 'campaign':309 'capabl':998,1000 'cartoon':1110 'case':1002,1515 'casual':1459 'catalog':244,369 'center':1483 'chain':375 'chang':134,195,1026,1073,1083,1113,1121 'check':406,790 'classic':1702 'clean':1530,1534,1582 'clear':865 'click':582 'clickabl':627 'client':1645 'code':507,531,546,548,591,593,596,639,683,686,688,758 'coffe':1604 'collabor':1526,1593 'color':333,1027,1102,1144,1146,1148 'commerc':181,242,1179 'commerci':51,1498,1557 'common':1588 'complet':1634 'composit':1482,1583,1707 'composite/blend':1128 'confirm':775 'connect':578 'consist':264,363 'construct':1212 'contain':750,981 'content':231,287,520 'content-typ':519 'control':1422,1694 'convent':1332 'convert':1153,1161 'coordin':1190 'core':997 'corpor':1580 'countertop':1328 'cozi':1612 'creat':35,73,115,168,261,321,362,879,1166 'creation':232 'creativ':300 'credenti':409,444,455,476,487,874 'crop':1706 'curl':511,665,805 'cut':157,422,432 'cutout':21,1068 'd':423,433,672,684,812,860 'damag':331 'data':1573 'default':652,1406 'descript':1262 'design':373,1462 'desk':1609 'detail':84,1103,1410 'determinist':1693 'develop':1525 'devic':496,500,506,509,524,530,682,685,687 'differ':319 'directori':1245 'doc':1661 'docs.bria.ai':98,1666 'docs.bria.ai/llms.txt)**':1665 'docs.bria.ai/llms.txt).':97 'document':88,1446,1636 'done':746 'dramat':1119,1473 'draw':1162 'e':180,241,1178 'e-commerc':179,240,1177 'e.g':553 'echo':442,451,454,523,740,844,885,1329 'edit':7,28,48,59,67,132,378,1018,1025,1032,1048,1288 'elif':445 'els':453 'emb':1186 'empti':1254,1346 'encod':1210 'endpoint':63,83,1195,1348,1357,1440,1450,1631,1635,1643 'engin':1452 'engine.prod.bria-api.com':516,670,810 'engine.prod.bria-api.com/v2/auth/device/authorize':515 'engine.prod.bria-api.com/v2/auth/token':669 'engine.prod.bria-api.com/v2/auth/token/introspect':809 'enhanc':344,1096,1099 'enhance/transform':183 'enough':1682 'enter':552 'entir':368 'error':846,936,1387 'exact':574,943,1189 'example.com':1283,1314 'example.com/img.jpg':1282,1313 'exist':408 'expand/outpaint':1078 'expect':1358 'expir':759,887,958,970 'extend':1081 'extra':1336,1365 'extract':1063 'f':412 'f2':424,434 'fals':863 'fi':435,457,743,849,888,928 'fibo':1007,1024,1696 'fibo-edit':1023 'field':529,1338,1367 'file':875,1208,1343 'fill':600 'first':1232 'fix':1141 'flat':1461 'float':1622 'flow':502 'focus':1502 'format':1639 'found':456,477 'free':55 'fresh':873 'full':215,1444,1659 'function':1221,1650 'futur':990 'generat':6,22,47,57,64,113,123,199,245,269,303,377,1003,1008,1249,1390,1424,1698 'genfill/erase':1037 'geometr':1595 'get':17 'given':650 'golden':1116 'grade':1499 'gradient':1478,1578,1624 'grant':673,680 'grant-typ':679 'grep':418,428,907 'h':518 'handl':213,1204,1654 'helper':1235,1651 'hero':125,270,1009,1516 'high':1495 'higher':189 'home/.bria/credentials':421,431,739,884,911,927 'home/.bria/credentials.tmp':912,924,926 'hour':1117 'ietf':676 'illustr':279,1013,1463 'imag':5,23,46,56,79,114,117,126,133,186,202,206,219,225,271,336,1004,1010,1016,1019,1033,1079,1087,1097,1105,1129,1130,1136,1145,1251,1289,1291,1295,1302,1350,1354,1360,1364,1380,1418,1697,1700,1703 'image-util':1699 'immedi':640 'improv':1100 'includ':1533 'increas':1091 'inpaint':1039 'input':1252,1351 'instagram':288,1597 'instead':1362,1434 'instruct':33,1022,1303 'integr':1180,1185 'interpret':929 'interv':557,651 'introspect':470,785,804,821,837,853,894 'item':1550 'json':1211,1337,1366,1432,1657,1689 'keep':538,623 'key':427,449,784,798,891,905,923,979,985,1225,1294,1301,1335,1353,1372,1375 'key-valu':1371 'keyword':1494 'kitchen':177,258,1327 'land':266 'languag':32,70,1437 'laptop':1606 'left':1490 'lifestyl':39,170,256,1168,1170,1318,1601 'light':197,1101,1114,1120,1467,1470,1472,1529,1559,1611 'like':140 'link':571,606,628 'linkedin':295 'llms.txt':1664 'load':1229 'local':322,1207,1342 'logo':353,1067,1134,1511 'longer':963 'look':139,1306 'low':339,1506 'low-r':338 'make':119,137,153,187,393,466,950,1304 'manipul':1704 'market':308,320 'mask':1036 'match':281 'media':286,1015 'mention':224 'merg':1135 'messag':842,939 'minim':1531,1537 'minimalist':1594 'mkdir':723 'modern':1326,1520,1579 'modifi':1028 'morn':1610 'msg':834,848 'mug':361 'must':551 'mv':925 'n':446,696,702,718,733,823,839,855,896,902,920 'natur':31,69,1436,1469,1528 'need':128,398,471,999 'negat':1487,1503 'next':995 'noth':576 'nrefresh':730 'oauth':678 'object':1029,1044 'obtain':794 'offic':259,1480 'oil':193,1107 'old':330,1138 'old/damaged':1142 'one':626 'onto':356 'op':1072 'oper':220,376 'option':1391 'otherwis':756,976 'outdoor':260 'outpaint':1080 'output':460,474,484,749,931 'overlay':1066,1540 'p':724 'packshot':182,262 'page':267 'paint':194,1108 'pair':1374 'param':677 'paramet':1445 'pars':526 'pass':1253,1293,1339,1413 'passthrough':1206 'path':1344 'pattern':1596 'pear':1054 'person':150 'photo':29,131,226,247,276,326,332,341,1139,1143,1159,1165,1543,1548,1602 'photographi':37,167,365,1457,1558 'pipelin':80,328,389 'pixel':1508 'place':172,253,381,1172 'platform.bria.ai':588 'platform.bria.ai/device/verify?user_code=':587 'png':1060,1565 'pngs':19,252 'poll':534,560,630,642,1217,1658 'post':289,514,668,808,1598,1711 'post-process':1710 'power':372 'precis':1038,1421,1692 'present':1566 'print':934,956,1385 'printf':691,713,726,819,835,851,883,892,916 'proceed':488,752,767,992 'process':203,1712 'product':36,74,130,160,166,174,201,243,246,254,316,357,364,1011,1167,1173,1181,1184,1187,1456,1542,1547,1618 'profession':1455,1497,1546 'prompt':26,1260,1285,1325,1433,1451,1504,1690 'purpl':1577 'qualiti':345,1098,1493,1496,1507 'ratio':1085,1264,1393 'raw':611 're':870,878 're-auth':869 're-creat':877 'readi':452,462,1670 'real':796,983 'realist':1164 'recip':1512 'refer':94,1441,1632,1673 'references/api-endpoints.md':1442,1633 'references/code-examples/bria_client.sh':1238,1647 'refresh':711,720,737 'region':1034,1042 'relat':1240,1683 'relay':937 'relight':1115 'remov':10,14,50,71,148,207,248,350,379,1055,1057,1076,1269,1561 'remove/replace':151 'render':1112,1466 'replac':41,161,1051,1276 'replace/blur/erase':1069 'request':504 'request/response':1638 'res':340 'reseason':1123 'resiz':1705 'resolut':190,1088,1090,1092,1404 'resolv':782,1239 'resourc':1629 'respons':510,525,528,622,664,694,716 'restart':972 'restor':327,329,1137,1140 'restyl':191,315,1104,1106 'result':1256,1271,1278,1296,1309,1320,1330,1379 'return':1377 'rmbg':1061 'royalti':54 'royalty-fre':53 'rule':1484 'safe':52 'scale':325,1316 'scene':178,257,383,1031,1175,1183 'script':1236 'season':311,1122 'second':558,654 'section':278,996 'sed':695,717,822,838,854,895 'see':90,1438 'separ':613 'seq':659 'session':960,969 'setup':390 'shadow':1474,1556 'sharp':1501 'shell':1644 'shirt':360 'shot':40,75,171,317,1012,1169,1171,1319 'show':542,563,604,609,635 'showcas':1619 'shown':945 'sign':569,585 'sign-in':568 'singl':567,1220,1417,1649 'single-funct':1648 'sketch':1157 'sketch2image':1160 'skill':104,107,212,235,1243,1428,1677,1684 'skill-bria-ai' 'skip':463,478 'sleep':744 'smartphon':1621 'snapshot':1460 'social':285,1014 'soft':1468,1555 'sourc':1233,1247 'source-bria-ai' 'space':1488,1541,1585 'specif':1041 'spectrum':216 'spotlight':1118 'spring':1124 'stale':866 'start':498,641,760,872 'startup':1522 'status':780,792,818,826,830 'stderr':1389 'step':404,480,490,492,754,763,776,881,974 'stop':947 'stories/reels':292 'story/reel':1614 'straight':464 'string':1255 'structur':1430,1687 'studio':164,1471,1477,1553 'style':265,1454,1581 'subject':1064 'success':1383 'summari':1679 'summer':313,1125 'sunset':1286 'super':1089 'sync':1267,1414 't-shirt':358 'tabl':147,1056 'team':275 'tech':273,1521,1626 'technolog':1591 'tell':572,965 'test':307 'text':25,66,1006,1021,1046,1492,1509,1539,1587 'text-bas':1045 'textur':1133 'theme':1589 'third':1486 'time':647 'tip':1453 'token':403,417,420,430,440,537,633,663,690,693,699,704,708,710,712,715,721,728,731,736,738,788,813,816,867,886,899,910,918,957 'toolkit':349 'topic-agen' 'topic-agent-skill' 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-image-generation' 'tr':859 'transform':312,1030 'transpar':18,156,251,1059,1481,1564 'tri':643 'true':915,1268,1415 'two':605 'type':521,674,681 'upscal':184,337,384,1086,1308 'uri':618 'url':612,1205,1341,1381 'urn':675 'use':102,105,233,532,616,1001,1196,1290,1352,1425,1514,1674 'user':110,223,544,545,550,565,590,595,637,942,967 'util':1701 'v':908 'valid':400,964 'valu':1373,1376 'variant':304 'vase':144,1050 'verif':617 'verifi':778 'vertic':1617 'vgl':1427,1431,1685,1688 'via':12,495 'visual':227,230,268,323,1567,1571 'vs':1458,1464 'w':1151,1156 'want':111 'warmer':1307 'watermark':1510,1708 'white':335,1476,1552 'winter':141,314,1127 'without':1349 'wooden':1608 'workflow':374 'workspac':1523 'write':1686 'x':513,667,807 'xxxx':556 'z':437","prices":[{"id":"a61615e1-f309-4bae-8f89-b7a25c14f037","listingId":"df6dd2a8-fbbd-4f8b-8d02-aef9e63fbc63","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"Bria-AI","category":"bria-skill","install_from":"skills.sh"},"createdAt":"2026-04-18T22:15:59.258Z"}],"sources":[{"listingId":"df6dd2a8-fbbd-4f8b-8d02-aef9e63fbc63","source":"github","sourceId":"Bria-AI/bria-skill/bria-ai","sourceUrl":"https://github.com/Bria-AI/bria-skill/tree/main/skills/bria-ai","isPrimary":false,"firstSeenAt":"2026-04-18T22:15:59.258Z","lastSeenAt":"2026-05-02T06:56:04.200Z"}],"details":{"listingId":"df6dd2a8-fbbd-4f8b-8d02-aef9e63fbc63","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"Bria-AI","slug":"bria-ai","github":{"repo":"Bria-AI/bria-skill","stars":54,"topics":["agen","agent-skill","agent-skills","ai","ai-agents","claude-code-skill","claude-skills","image-generation"],"license":null,"html_url":"https://github.com/Bria-AI/bria-skill","pushed_at":"2026-04-26T12:15:03Z","description":"Claude Code skills for Bria AI - generate, edit, and transform images with Fibo, RMBG-2.0, and VGL structured prompts","skill_md_sha":"38576bf85a2b4ef27e4150dd254478851c1e0508","skill_md_path":"skills/bria-ai/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/Bria-AI/bria-skill/tree/main/skills/bria-ai"},"layout":"multi","source":"github","category":"bria-skill","frontmatter":{"name":"bria-ai","license":"MIT","description":"AI image generation, editing, and background removal API via Bria.ai — remove backgrounds to get transparent PNGs and cutouts, generate images from text prompts, and edit photos with natural language instructions. Also create product photography and lifestyle shots, replace or blur backgrounds, upscale resolution, restyle, and batch-generate visual assets. Use this skill whenever the user wants to remove a background, create transparent PNGs, generate, edit, modify, or transform any image — including hero images, banners, social media visuals, product photos, illustrations, icons, thumbnails, ad creatives, or marketing materials. Also triggers on cutout, inpainting, outpainting, object removal or addition, photo restoration, style transfer, image enhancement, relight, reseason, sketch-to-photo, or any visual content creation. Commercially safe, royalty-free. 20+ specialized endpoints for e-commerce, web design, and content pipelines."},"skills_sh_url":"https://skills.sh/Bria-AI/bria-skill/bria-ai"},"updatedAt":"2026-05-02T06:56:04.200Z"}}