Tiktok Trend Challenger

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.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

An agent using this skill could commit the user to paid creator work or launch public-facing brand campaign activity if allowed to run the POST workflow without explicit approval.

Why it was flagged

This documents an API call that creates a paid creator task with public TikTok deliverables. The supplied workflow does not show a confirmation, budget cap, or review-before-submit step around this high-impact action.

Skill content
curl -X POST https://www.pinghuman.ai/api/v1/tasks ... "compensation": 400.00 ... "priority": "urgent" ... "deliverables": { "video_count": 1
Recommendation

Require explicit user confirmation before creating any paid task, include clear budget and deadline limits, and prefer a draft/review workflow before submitting campaigns.

What this means

If the agent receives a broad PingHuman API token, it may be able to access or create account tasks beyond what the user intended.

Why it was flagged

The API examples require a PingHuman Bearer token, while the registry requirements declare no primary credential or environment variables. That under-discloses delegated account authority needed to perform the skill's actions.

Skill content
-H "Authorization: Bearer ph_sk_abc123..."
Recommendation

Declare the required credential, use a narrowly scoped API key where possible, store it through the agent's secret manager, and restrict mutation actions to user-approved requests.

What this means

A mutable remote skill URL could later provide changed instructions to the agent if the source is not trusted or pinned.

Why it was flagged

The install instructions allow manually adding a remote skill URL to an agent configuration. This is not inherently unsafe, but users should verify the remote source because the provided metadata lists the source as unknown.

Skill content
echo "tiktok-trend-challenger: https://www.pinghuman.ai/skills/tiktok-trend-challenger/skill.md" >> ~/.agent/skills.txt
Recommendation

Install from a trusted registry or pinned version, and re-review the skill if the remote file changes.