Install
Clone https://github.com/to-nexus/skill-cross-forge into a temporary directory and run the install.sh script inside it to install the skill-cross-forge skill into my Claude Code environment. Tell me the result in one line when you're done.
- For personal testing, keep local signer config in the skill
.envbefore write commands. - For team, hosted-agent, or production funds, prefer Vault/KMS/HSM-backed signing.
- Set
MAX_TRADE_NOTIONAL_CROSSlocally to cap per-trade size.
Heads-up: CROSS Forge runs on local agent runtimes only — see the Where it runs section for the supported list. Hosted chat environments cannot execute this skill.
Where it runs
Supported
Not supported
What you can do
Deploy a new token to Forge Router and create its bonding-curve pool.
🔴 Write · signs txInspect a token's bonding-curve state and recent trades.
🟢 Read · no authList trending or newest Forge tokens.
🟢 Read · no authYour (or any address's) Forge holdings and valuation.
🟢 Read · no authSimulate a buy or sell (estimated receive + slippage).
🟢 Read · no authBuy on the bonding curve with native CROSS.
🔴 Write · signs txSell your tokens back to the bonding curve.
🔴 Write · signs txYour Forge trade and deploy history.
🟢 Read · no authTry it · natural-language prompts
Copy any of these into your agent — they map 1-to-1 onto a skill command.
Command reference
| command | args | auth | mutation | description |
|---|---|---|---|---|
| deploy | --name <str> --symbol <str> --description <str> --image <url|path> --category game|ai_agent [--wallet <addr>] | PK (or temp wallet) | tx | Deploy a token via Forge Router. |
| token | <symbol|address> | — | read | Single token state. |
| tokens | [--sort trending|new] | — | read | Token list. |
| portfolio | [<addr>] | — | read | Holdings and valuation. |
| quote | <buy|sell> <symbol> <amount> [--slippage=1] | — | read | Trade simulation. |
| buy | <symbol> <crossAmount> [--slippage=1] [--confirm] | PK | tx | Bonding-curve buy. |
| sell | <symbol> <tokenAmount|--all> [--slippage=1] [--confirm] | PK | tx | Bonding-curve sell. |
| history | [<addr>] [--limit=20] | — | read | Trade history. |
Safety & credentials
This skill signs on-chain transactions
- 🔴 Signs on-chain transactions.
- Required local signer config:
PRIVATE_KEY(or skip with vendor-temp mode). - Default fees: 100 bps (protocol) + 30 bps (creator).
- Guard:
MAX_TRADE_NOTIONAL_CROSSenv var caps per-trade size. - On hosted agents (Claude.ai): never use your main wallet PK — use a disposable hot wallet.
Troubleshooting
›insufficient_liquidity error?
quote first.›Pool not visible after deploy?
token <symbol>.›Slippage exceeded?
--slippage (e.g. --slippage=3).