Don't download
Analysis
The Bria image API behavior is mostly purpose-aligned, but the package identity/provenance is inconsistent and the helper handles Bria credentials in ways users should review before installing.
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.
Name: Don't download; Source: unknown; Slug: gal-test; Version: 1.0.0
The public package identity and provenance are unclear and inconsistent with the Bria-branded skill content, which matters because the skill asks for a Bria API credential.
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" ... 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 whatever status_url is returned, without visible validation that the destination remains a Bria-controlled host.
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" ... curl ... "${BRIA_API_BASE}${endpoint}" ... -d @"$payload"Local image files can be encoded into the request payload and sent to the external Bria API, which is expected for image editing but still moves user content outside the local environment.
