Agent Postcard

PassAudited by ClawScan on May 10, 2026.

Overview

The skill is coherent for generating Turai postcards, but it does send a Turai API key and a short persona-derived prompt to turai.org.

This appears safe to install if you trust Turai and the skill publisher. Before use, set only a Turai API key you are comfortable using here, review persona files for secrets, and remember that the postcard prompt, location, style, and message are sent to turai.org.

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.

What this means

Anyone running the skill must trust Turai with API-authenticated requests made under that key.

Why it was flagged

The script requires a Turai API key from the environment and uses it to authenticate outbound requests to the Turai API.

Skill content
const apiKey = process.env.TURAI_API_KEY; ... "x-api-key": apiKey
Recommendation

Use a Turai key intended for this purpose, revoke it if no longer needed, and avoid sharing the environment with untrusted scripts.

What this means

Private or sensitive text placed in persona files could be included in the prompt sent to Turai.

Why it was flagged

The script reads persona files and converts up to about 500 characters of their content into the selfie prompt sent to the external postcard API.

Skill content
join(WORKSPACE, "SOUL.md"), join(WORKSPACE, "IDENTITY.md") ... const content = await readFile(p, "utf-8"); return extractSelfiePrompt(content);
Recommendation

Review SOUL.md, IDENTITY.md, or any --persona file before use, and keep secrets or private instructions out of those files.

What this means

Users have less registry-level context for verifying the publisher, provider relationship, and credential requirement before running the skill.

Why it was flagged

The registry metadata lacks source/homepage provenance and does not declare the API key that the provided SKILL.md and script require.

Skill content
Source: unknown; Homepage: none; Required env vars: none
Recommendation

Verify that turai.org and this skill publisher are trusted before setting TURAI_API_KEY or running the script.