Desing mobile apps

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is a coherent Sleek design integration, but it uses a Sleek API key and can change Sleek projects, so users should use limited scopes.

Install only if you intend to use Sleek's hosted design API. Create a narrowly scoped, revocable SLEEK_API_KEY, avoid sharing sensitive image URLs or design content, and require explicit confirmation before any project deletion or other destructive action.

Findings (4)

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.

What this means

If the key has broad scopes, the agent can read and modify Sleek projects within those permissions.

Why it was flagged

The skill relies on a bearer token that delegates access to the user's Sleek account. This is expected for the integration, but the token's scopes determine what the agent can do.

Skill content
**Auth**: `Authorization: Bearer $SLEEK_API_KEY` on every `/api/v1/*` request
Recommendation

Use a revocable Sleek API key with only the scopes needed for the current task, and avoid granting write/delete scopes unless they are required.

What this means

Using the wrong project ID or granting broad write scope could result in deleting a Sleek project.

Why it was flagged

The API reference includes a destructive project deletion endpoint. It is purpose-adjacent for project management and not presented as an automatic default, but it is still a high-impact action.

Skill content
`DELETE` | `/api/v1/projects/:id` | `projects:write` | `Delete project`
Recommendation

Confirm the exact project and user intent before any delete operation; prefer read-only or narrowly scoped keys for design review tasks.

What this means

Sensitive images or private URLs included in requests may be exposed to Sleek's service for processing.

Why it was flagged

The skill discloses that URLs supplied in design messages may be fetched by Sleek's servers, creating a third-party data boundary for referenced images.

Skill content
**Image URLs**: When using `imageUrls` in chat messages, those URLs are fetched by Sleek's servers. Avoid passing URLs that contain sensitive content.
Recommendation

Only provide image URLs that are safe to share with Sleek, and avoid private or credential-bearing URLs.

What this means

A user relying only on registry metadata may not realize the skill needs a Sleek API key and network access.

Why it was flagged

The registry metadata does not advertise the API key requirement that SKILL.md itself declares. This is a disclosure gap rather than hidden credential use because the skill document names SLEEK_API_KEY explicitly.

Skill content
Required env vars: none ... Env var declarations: none ... Primary credential: none
Recommendation

Update the registry metadata to declare SLEEK_API_KEY and the Sleek host so the install surface matches the documented behavior.