Don't download
Analysis
This image API skill appears purpose-aligned, but it handles Bria credentials and its helper can forward the API key to configurable or response-provided URLs, so it should be reviewed before use.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
fetch the full agent-oriented API reference at [docs.bria.ai/llms.txt](https://docs.bria.ai/llms.txt) — it is the canonical LLM-ready documentation
The skill directs the agent to rely on remote, changeable documentation for API behavior. This is relevant to the skill's purpose, but it adds an external instruction source.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
BRIA_API_BASE="${BRIA_API_BASE:-https://engine.prod.bria-api.com}" ... -H "api_token: $BRIA_API_KEY" ... "${BRIA_API_BASE}${endpoint}" ... poll=$(curl -s "$status_url" \
-H "api_token: $BRIA_API_KEY"The helper sends the Bria API key to a configurable base URL and later to a status_url parsed from the API response, without showing host validation that confines the credential to Bria-controlled endpoints.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
base64 < "$image" | tr -d '\n' >> "$payload" ... http_code=$(curl ... "${BRIA_API_BASE}${endpoint}" ... -d @"$payload")Local image files are encoded into the request payload and posted to Bria's API. This is expected for image editing, but images may contain personal or proprietary content.
