Prospector

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

If configured, the skill can use the Attio credential to create or update CRM records in the user's workspace.

Why it was flagged

The optional Attio integration requests a delegated account credential with write authority. This is purpose-aligned for CRM sync, but it is high-impact access.

Skill content
Create a new API key with read/write access
Recommendation

Use the least-privileged, revocable API key available, confirm the workspace before syncing, and revoke the key if the skill is no longer used.

What this means

Approving sync can add or update business records and contacts in Attio.

Why it was flagged

The code performs CRM write operations during Attio sync. The artifacts disclose this and ask the user before syncing, but CRM mutation is still a sensitive action.

Skill content
client.put("https://api.attio.com/v2/objects/companies/records"
Recommendation

Review the generated CSV before syncing, start with a small contact count, and keep a way to undo or clean up imported CRM records.

What this means

Prospect criteria and contact data may be processed by Exa, Apollo, and Attio according to those services' policies.

Why it was flagged

The skill sends search criteria, company domains, and optionally lead/contact records to external providers. This is expected for the stated purpose and is documented.

Skill content
https://api.exa.ai/search ... https://api.apollo.io/api/v1/mixed_people/search ... https://api.attio.com/v2
Recommendation

Ensure the data use is appropriate for your organization and complies with applicable privacy, outreach, and CRM policies.

What this means

Installing from the wrong repository or pulling an unexpected dependency version could change what runs locally.

Why it was flagged

The README shows placeholder provenance and an unpinned dependency install. This is common for simple Python skills, but users should verify the source and dependency.

Skill content
git clone https://github.com/YOUR_USERNAME/prospector.git ~/.claude/skills/prospector ... pip install httpx
Recommendation

Install only from a trusted source and consider pinning httpx in a controlled Python environment.

What this means

Malformed pasted values could break the setup command, and unsafe interpolation patterns are more fragile than passing values through environment variables or files.

Why it was flagged

Setup validation is performed through local Python one-liners with substituted user-provided values. Local execution is central to this skill, but careful quoting is important.

Skill content
python3 -c "\nimport httpx\nkey = '[USER_PROVIDED_KEY]'
Recommendation

Only paste API keys obtained directly from the provider, and prefer implementations that pass secrets via environment variables or structured input rather than inline code substitution.