Agent Gary AI Powered Memecoin trader.
Analysis
This skill openly enables AI-controlled Solana memecoin trading, but it asks your agent to run unpinned remote code with wallet secrets and API keys while giving the AI authority to trade automatically.
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.
the trading engine treats AI decisions as authoritative (it can bypass some “enforce” gates that would otherwise hard-block actions)
The skill explicitly gives the AI authority over trading decisions and says some normal enforcement gates may be bypassed.
`curl -fsSL https://fdv.lol/cli.mjs | node - run-profile --profile-url ./profile.json --log-to-console` ... `https://raw.githubusercontent.com/build23w/fdv.lol/main/cli.mjs`
The executable trading code is fetched live from unpinned remote URLs, including a mutable GitHub main branch, rather than being included or pinned in the skill bundle.
Fetch `cli.mjs` ... `curl -fsSL https://fdv.lol/cli.mjs | node - run-profile --profile-url ./profile.json --log-to-console`
The recommended command pipes downloaded JavaScript directly into node, executing it immediately in the same environment as the local profile and secrets.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
`wallet.secret` (must exist; can be generated) ... `jupiter.apiKey` ... `agentGaryFullAi.apiKey`
The required profile includes a Solana wallet signing secret plus third-party API keys, giving the runtime access to trade funds and use user accounts.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Write a complete `./profile.json` with the gathered/generated values.
The skill persists sensitive values and behavior-controlling settings in a local profile file that may be reused or modified across runs.
