Wayfinder

WarnAudited by ClawScan on May 10, 2026.

Overview

Wayfinder matches its DeFi purpose, but it asks the agent to run external trading code, handle wallet secrets, and execute live financial transactions, so it should be reviewed carefully before use.

Only install this if you understand that it can control real DeFi funds. Use a fresh low-balance wallet, pin and inspect the external SDK before running setup, never paste or display seed phrases/private keys in chat, and require explicit confirmation before any live trade, bridge, withdrawal, approval, or strategy execution.

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

A mistaken command could bridge funds, buy shares, close positions, or otherwise move real assets without a rehearsal step.

Why it was flagged

This documents live fund-moving prediction-market actions without a dry-run safety mode, increasing the impact of mistaken or autonomous invocation.

Skill content
Polymarket execution uses `polymarket_execute` and is **always live** (no dry-run flag).
Recommendation

Require explicit user confirmation for every live trade, bridge, withdrawal, or approval; use small test amounts and a limited wallet.

What this means

Wallet seed phrases or private keys exposed in chat could allow loss of all funds controlled by that wallet.

Why it was flagged

The skill handles persistent wallet credentials and includes an exception that could expose a seed phrase in chat despite the adjacent warning not to output secrets.

Skill content
Run guided setup (creates/updates config.json + local dev wallets + MCP config) ... Only offer to display the seed phrase if the user explicitly confirms they cannot access the machine
Recommendation

Never display seed phrases or private keys in the conversation; keep signing material in a wallet, hardware device, or secret manager, and document credentials clearly in metadata.

What this means

The behavior that actually signs transactions and manages funds depends on external code outside this review, so upstream changes or dependency compromise could affect wallet safety.

Why it was flagged

The reviewed skill delegates installation and execution to external SDK code that is not bundled in the artifact, yet that code will handle API keys, wallets, and live DeFi actions.

Skill content
git clone https://github.com/WayfinderFoundation/wayfinder-paths-sdk.git "$WAYFINDER_SDK_PATH" ... poetry install ... python3 scripts/setup.py
Recommendation

Install from a reviewed commit or release, inspect the SDK and dependencies before setup, and avoid storing high-value wallets in the SDK config.

What this means

A buggy or poorly reviewed custom script could approve tokens, trade, borrow, or transfer funds incorrectly.

Why it was flagged

The skill intentionally supports custom Python script execution for DeFi operations; this is disclosed and purpose-aligned, but those scripts can interact with signing wallets.

Skill content
Use this guide when pre-built commands aren't sufficient and you need to write custom Python scripts for complex multi-step DeFi operations.
Recommendation

Review any generated script line by line, run dry-run paths where available, and only use `--force` or live execution after explicit approval.