Skip to main content

kryptogo-meme-trader

Enables analysis and trading of meme coins using KryptoGO's platform, featuring wallet clustering and automated trade execution.

Install this skill

or
0/100

Security score

The kryptogo-meme-trader skill was audited on May 31, 2026 and we found 43 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 40

Access to hidden dotfiles in home directory

SourceSKILL.md
402. Add to `~/.openclaw/workspace/.env`:
low line 42

Access to hidden dotfiles in home directory

SourceSKILL.md
42echo 'KRYPTOGO_API_KEY=sk_live_YOUR_KEY' >> ~/.openclaw/workspace/.env && chmod 600 ~/.openclaw/workspace/.env
medium line 64

Access to hidden dotfiles in home directory

SourceSKILL.md
64- Runtime scripts do NOT read `.env` directly — all credentials are accessed via environment variables only, which must be pre-loaded by the caller (`source ~/.openclaw/workspace/.env`)
low line 89

Access to hidden dotfiles in home directory

SourceSKILL.md
89source ~/.openclaw/workspace/.env
medium line 141

Access to hidden dotfiles in home directory

SourceSKILL.md
141Runtime scripts in this skill do NOT read `.env` files directly. All credentials are accessed via environment variables only, which must be pre-loaded by the caller (`source ~/.openclaw/workspace/.env
low line 153

Access to hidden dotfiles in home directory

SourceSKILL.md
153source ~/.openclaw/workspace/.env && bash scripts/cron-examples.sh setup-default
low line 156

Access to hidden dotfiles in home directory

SourceSKILL.md
156source ~/.openclaw/workspace/.env && bash scripts/cron-examples.sh setup-autonomous
low line 216

Access to hidden dotfiles in home directory

SourceSKILL.md
216source ~/.openclaw/workspace/.env && python3 scripts/swap.py <token_mint> 0.1
low line 217

Access to hidden dotfiles in home directory

SourceSKILL.md
217source ~/.openclaw/workspace/.env && python3 scripts/swap.py <token_mint> <amount> --sell
medium line 268

Access to hidden dotfiles in home directory

SourceSKILL.md
268All scripts require credentials to be pre-loaded: `source ~/.openclaw/workspace/.env` before running.
low line 271

Access to hidden dotfiles in home directory

SourceSKILL.md
271source ~/.openclaw/workspace/.env && bash scripts/portfolio.sh # Portfolio check
low line 272

Access to hidden dotfiles in home directory

SourceSKILL.md
272source ~/.openclaw/workspace/.env && bash scripts/trending.sh # Trending tokens
low line 273

Access to hidden dotfiles in home directory

SourceSKILL.md
273source ~/.openclaw/workspace/.env && bash scripts/analysis.sh # Full analysis dashboard
low line 274

Access to hidden dotfiles in home directory

SourceSKILL.md
274source ~/.openclaw/workspace/.env && python3 scripts/swap.py <mint> 0.1 # Buy
low line 275

Access to hidden dotfiles in home directory

SourceSKILL.md
275source ~/.openclaw/workspace/.env && python3 scripts/swap.py <mint> <amt> --sell # Sell
low line 276

Access to hidden dotfiles in home directory

SourceSKILL.md
276source ~/.openclaw/workspace/.env && bash scripts/test-api.sh # API connectivity test
medium line 40

Access to .env file

SourceSKILL.md
402. Add to `~/.openclaw/workspace/.env`:
low line 42

Access to .env file

SourceSKILL.md
42echo 'KRYPTOGO_API_KEY=sk_live_YOUR_KEY' >> ~/.openclaw/workspace/.env && chmod 600 ~/.openclaw/workspace/.env
medium line 45

Access to .env file

SourceSKILL.md
45> **Do NOT paste your API key directly in chat.** Always set secrets via `.env` file.
medium line 53

Access to .env file

SourceSKILL.md
53Creates a Solana keypair, saves to `.env` with chmod 600, prints public address to fund.
medium line 62

Access to .env file

SourceSKILL.md
62- **NEVER** accept secrets pasted directly in chat — instruct users to set them in `.env`
medium line 63

Access to .env file

SourceSKILL.md
63- **NEVER** use the Read tool on `.env` — load credentials via `source` command only
medium line 64

Access to .env file

SourceSKILL.md
64- Runtime scripts do NOT read `.env` directly — all credentials are accessed via environment variables only, which must be pre-loaded by the caller (`source ~/.openclaw/workspace/.env`)
medium line 65

Access to .env file

SourceSKILL.md
65- **Exception:** `scripts/setup.py` reads and writes `.env` for initial keypair generation and address repair — this is the only script that touches credential files
low line 89

Access to .env file

SourceSKILL.md
89source ~/.openclaw/workspace/.env
medium line 92

Access to .env file

SourceSKILL.md
92This is REQUIRED — scripts do not read `.env` directly. All credentials are accessed via environment variables only.
medium line 141

Access to .env file

SourceSKILL.md
141Runtime scripts in this skill do NOT read `.env` files directly. All credentials are accessed via environment variables only, which must be pre-loaded by the caller (`source ~/.openclaw/workspace/.env
medium line 143

Access to .env file

SourceSKILL.md
143**Exception:** `scripts/setup.py` reads and writes `.env` — it loads existing keys to avoid regeneration, backs up `.env` before changes, and writes new keypair entries. This is the only script that t
low line 153

Access to .env file

SourceSKILL.md
153source ~/.openclaw/workspace/.env && bash scripts/cron-examples.sh setup-default
low line 156

Access to .env file

SourceSKILL.md
156source ~/.openclaw/workspace/.env && bash scripts/cron-examples.sh setup-autonomous
low line 216

Access to .env file

SourceSKILL.md
216source ~/.openclaw/workspace/.env && python3 scripts/swap.py <token_mint> 0.1
low line 217

Access to .env file

SourceSKILL.md
217source ~/.openclaw/workspace/.env && python3 scripts/swap.py <token_mint> <amount> --sell
medium line 268

Access to .env file

SourceSKILL.md
268All scripts require credentials to be pre-loaded: `source ~/.openclaw/workspace/.env` before running.
low line 271

Access to .env file

SourceSKILL.md
271source ~/.openclaw/workspace/.env && bash scripts/portfolio.sh # Portfolio check
low line 272

Access to .env file

SourceSKILL.md
272source ~/.openclaw/workspace/.env && bash scripts/trending.sh # Trending tokens
low line 273

Access to .env file

SourceSKILL.md
273source ~/.openclaw/workspace/.env && bash scripts/analysis.sh # Full analysis dashboard
low line 274

Access to .env file

SourceSKILL.md
274source ~/.openclaw/workspace/.env && python3 scripts/swap.py <mint> 0.1 # Buy
low line 275

Access to .env file

SourceSKILL.md
275source ~/.openclaw/workspace/.env && python3 scripts/swap.py <mint> <amt> --sell # Sell
low line 276

Access to .env file

SourceSKILL.md
276source ~/.openclaw/workspace/.env && bash scripts/test-api.sh # API connectivity test
low line 324

Access to .env file

SourceSKILL.md
324├── .env.example
low line 4

External URL reference

SourceSKILL.md
4homepage: https://www.kryptogo.xyz
low line 39

External URL reference

SourceSKILL.md
391. Go to [kryptogo.xyz/account](https://www.kryptogo.xyz/account) and create an API key
low line 184

External URL reference

SourceSKILL.md
184> **Free tier limitation:** Cluster analysis only returns the top 2 clusters. To see full cluster data, upgrade at [kryptogo.xyz/pricing](https://www.kryptogo.xyz/pricing).
Scanned on May 31, 2026
View Security Dashboard
Installation guide →