skills/quote/SKILL.md
Get a swap price quote without authentication. Check exchange rates, output amounts, and route info for any token pair on Base, Citrea, HyperEVM, or Monad. No wallet or session required.
npx skillsauth add ahmetenesdur/fibx-agentic-wallet-skills quoteInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get a swap price quote for any token pair without authentication. Use this to check exchange rates, expected output amounts, and routing info before committing to a trade.
No wallet or session required. This is the fastest way to explore what FibX can do.
status or balance before quoting.--chain <name>. If not specified, default to base and state it.--slippage if the user explicitly requests a different value.trade skill.| Chain | Flag | Native Token |
| -------- | ------------------ | ------------ |
| Base | --chain base | ETH |
| Citrea | --chain citrea | cBTC |
| HyperEVM | --chain hyperevm | HYPE |
| Monad | --chain monad | MON |
npx fibx@latest quote <amount> <from_token> <to_token> [--chain <chain>] [--slippage <n>] [--json]
| Parameter | Type | Description | Required |
| ------------ | ------ | ---------------------------------------- | -------- |
| amount | number | Amount to quote | Yes |
| from_token | string | Source token symbol (e.g. ETH, USDC) | Yes |
| to_token | string | Target token symbol (e.g. USDC, DAI) | Yes |
| chain | string | base, citrea, hyperevm, or monad | No |
| slippage | number | Slippage tolerance in % (e.g. 1.0) | No |
| json | flag | Output as JSON | No |
Default chain: base. Default slippage: 0.5.
User: "How much USDC would I get for 0.1 ETH?"
npx fibx@latest quote 0.1 ETH USDC
User: "Check ETH price in DAI on Monad"
npx fibx@latest quote 1 ETH DAI --chain monad
User: "Compare rates for 100 USDC to WETH"
npx fibx@latest quote 100 USDC WETH
User: "Get me a JSON quote for scripting"
npx fibx@latest quote 0.5 ETH USDC --json
User: "What's the wrap rate for ETH?"
npx fibx@latest quote 1 ETH WETH
Output:
1 ETH = 1 WETH— Wrap (direct contract call)
| Error | Action |
| -------------------- | ------------------------------------------------------------ |
| Token not found | The symbol is not supported on the specified chain. |
| No route found | Liquidity may be too low or pair doesn't exist on the chain. |
| Invalid amount | Amount must be a positive number. |
| Rate limit / 429 | Use config skill to set a custom RPC. |
trade to execute the swap after checking the quote.balance to check if you have enough tokens before trading.config to set a custom RPC if you encounter rate limit errors.testing
Check the on-chain status of a transaction and get the block explorer link. Supports Base, Citrea, HyperEVM, and Monad.
testing
Swap tokens using Fibrous aggregation on Base, Citrea, HyperEVM, or Monad. Finds optimal route, simulates before execution. Supports --simulate for gas-only estimation without sending.
testing
Send native tokens (ETH, cBTC, HYPE, MON) or ERC-20 tokens to an address on Base, Citrea, HyperEVM, or Monad. Simulates before sending. Supports --simulate for gas-only estimation.
data-ai
Show a consolidated cross-chain portfolio overview with USD valuations for all token holdings and DeFi positions. Use when the user asks about their portfolio, net worth, total value, or asset breakdown across chains.