Platform API Connector

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

Tokens created through this workflow may let an application post to or manage social media accounts.

Why it was flagged

The skill asks the user to create OAuth credentials with account-level posting/write authority. That is purpose-aligned for a social platform connector, but it grants delegated authority that could affect public accounts if reused improperly.

Skill content
Access Token + Secret (user auth for posting) — generate with Read & Write permissions
Recommendation

Grant only the scopes needed, use separate developer apps for testing, and revoke or rotate tokens when the integration is no longer needed.

What this means

Saved API secrets and refresh tokens could be reused later by other code or agents that can access the database.

Why it was flagged

The skill intentionally creates persistent credential state for future reuse. This is coherent with the connector purpose, but the artifacts do not provide detailed controls for encryption, access limits, retention, or revocation.

Skill content
Store credentials in Supabase (or any DB) for reuse.
Recommendation

Store tokens in a dedicated secrets store or encrypted database fields, restrict database access, enable row-level security where applicable, and document how to rotate and delete credentials.