Find People (x402)
Analysis
The skill’s paid people-search function is coherent, but it uses a raw Base wallet private key and an unpinned npm package, so it should be reviewed and isolated before use.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
npx -y @itzannetos/x402-tools-claude find-people "$QUERY"
The runtime command invokes an npm package without a pinned version or reviewed package contents in the provided manifest.
Costs $0.15 USDC per request (Base network)
The skill clearly discloses that each request is a paid tool action.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
PRIVATE_KEY=$(jq -r '.private_key' "$CONFIG_FILE" 2>/dev/null || echo "") export X402_PRIVATE_KEY="$PRIVATE_KEY"
The script reads a raw wallet private key from local config files and exports it into the environment used by the downstream command.
echo '{"private_key": "0x..."}' > ~/.x402-config.jsonThe recommended setup persists the raw private key in a home-directory JSON file.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
The API has a 5-minute timeout; comprehensive research may take time
The artifacts indicate API-backed processing, but do not identify the service endpoint or data-handling boundaries.
