Influencer Report
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears aligned with generating influencer reports, but users should notice that it uses Memories.ai API keys and sends profile/video task data to external Memories-related endpoints.
This looks like a coherent influencer-reporting skill. Before using it, make sure you are comfortable sending creator profile/video URLs to Memories.ai, use a dedicated or limited API key if possible, and confirm the demo webhook endpoint is expected in your workflow.
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.
Installing or using the skill may require granting it access to a Memories.ai account/API workspace.
The skill requires provider API keys for account-backed Memories.ai functions. This is purpose-aligned, but it is sensitive access that users should notice, especially because the registry metadata declares no required env vars or primary credential.
Required environment variables: - `MEMORIES_V1_API_KEY` — Memories.ai V1 API key (scraper, library, search) - `MEMORIES_API_KEY` — Memories.ai V2 API key
Use scoped, revocable API keys where possible and avoid using keys tied to unrelated or sensitive Memories.ai libraries.
The script may enumerate videos already present in the connected Memories.ai library, not only newly scraped creator videos.
The V1 API key is used for a broad library listing call. This appears tied to the documented workflow, but it may access more than just the single influencer/profile being vetted.
def v1_list_videos(v1_key: str) -> list[dict]: ... "List all videos in the V1 library." ... requests.post(url, headers=headers, json={}, timeout=30)Prefer a dedicated Memories.ai workspace/key for influencer vetting, and review what content is present in that library before use.
Task identifiers and analysis results may be retrieved through an additional Memories-related webhook domain.
The script polls a demo webhook/result endpoint for task completion that is not listed in SKILL.md's API endpoint table. It is related to the Memories workflow, but the data boundary and access control are less clearly disclosed.
webhook_url = f"https://demo.memories-ai.org/webhooks/memories/result/{task_id}" ... resp = requests.get(webhook_url, timeout=15)Verify that the webhook domain is expected for your Memories.ai account and avoid submitting private or sensitive video URLs unless that data flow is acceptable.
