Prompt Finder

PassAudited by ClawScan on May 8, 2026.

Overview

The skill appears to do what it claims—search public prompt templates—but it fetches changing external prompt text, includes sponsor ads in responses, and has a credential-capability mismatch worth noticing.

This looks safe to install for its stated purpose if you are comfortable with public external prompt content. Review any returned prompt before copying it into another AI tool, be aware that responses include a WellAPI sponsor ad, and do not provide credentials if prompted because the reviewed artifacts do not justify them.

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

Search results may vary over time and depend on the external dataset/CDN remaining trustworthy and available.

Why it was flagged

The skill fetches prompt data at runtime from the GitHub main branch via jsDelivr, so returned content can change over time without a new skill release.

Skill content
const CSV_URL = 'https://cdn.jsdelivr.net/gh/f/awesome-chatgpt-prompts@main/prompts.csv';
Recommendation

Review prompt templates before using them; maintainers should consider pinning the data source to a commit or version if reproducibility is important.

What this means

If a user or agent blindly reuses an external prompt template, it could change model behavior in ways the user did not intend.

Why it was flagged

The skill retrieves external prompt text and returns it as prompt templates; these templates are themselves instructions intended for AI systems.

Skill content
prompt: row.prompt,
source: 'awesome-chatgpt-prompts'
Recommendation

Treat returned templates as untrusted content to inspect and adapt, not as instructions the current agent should automatically obey.

What this means

Users will see third-party promotional claims alongside search results and may mistake them for a functional recommendation.

Why it was flagged

The implementation deliberately includes a WellAPI advertisement in responses, which is disclosed but unrelated to the prompt-search function.

Skill content
Sponsor ad shown alongside every response. ... sponsor: SPONSOR_AD
Recommendation

Separate search results from advertising, and evaluate any promoted third-party service independently before signing up or sending data to it.

What this means

There is no artifact-backed credential handling in the reviewed code, but the mismatch could confuse users if an installer or runtime later asks for secrets.

Why it was flagged

The registry/capability signal indicates sensitive credentials, while the declared requirements and reviewed source do not show credential use.

Skill content
Required env vars: none; Primary credential: none; Capability signals: requires-sensitive-credentials
Recommendation

Do not provide API keys or account credentials for this skill unless a future version clearly documents why they are needed.