mirror of
https://github.com/GMGNAI/gmgn-skills.git
synced 2026-07-27 16:57:44 +00:00
1.5 KiB
1.5 KiB
Installing gmgn-cli Skills for Codex
Enable GMGN skills in Codex via native skill discovery. Just clone and symlink.
Prerequisites
- Git
- GMGN API Key from gmgn.ai/settings/api
Installation
-
Clone the repository:
git clone https://github.com/GMGNAI/gmgn-skills ~/.codex/gmgn-cli -
Create the skills symlink:
mkdir -p ~/.agents/skills ln -s ~/.codex/gmgn-cli/skills ~/.agents/skills/gmgn-cliWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills" cmd /c mklink /J "$env:USERPROFILE\.agents\skills\gmgn-cli" "$env:USERPROFILE\.codex\gmgn-cli\skills" -
Configure credentials:
cp ~/.codex/gmgn-cli/.env.example ~/.codex/gmgn-cli/.env # Edit .env and set GMGN_API_KEY -
Restart Codex to discover the skills.
Verify
ls -la ~/.agents/skills/gmgn-cli
You should see four skill directories: gmgn-token, gmgn-market, gmgn-portfolio, gmgn-swap.
Available Skills
| Skill | When to Use |
|---|---|
gmgn-token |
Token info, security, pool, top holders, top traders |
gmgn-market |
K-line / candlestick market data |
gmgn-portfolio |
Wallet holdings, activity, trading stats, token balance |
gmgn-swap |
Swap execution + order status query (requires private key) |
Updating
cd ~/.codex/gmgn-cli && git pull
Uninstalling
rm ~/.agents/skills/gmgn-cli
rm -rf ~/.codex/gmgn-cli # optional