skills/config/SKILL.md
View and modify fibx CLI configuration, such as setting custom RPC URLs to avoid rate limits. Changes are hot-reloaded automatically — no restart needed.
npx skillsauth add ahmetenesdur/fibx-agentic-wallet-skills configInstall 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.
Manage local configuration for the fibx CLI. The primary use case is setting custom RPC URLs for supported chains to bypass public RPC rate limits or connection issues.
~/.config/fibx-nodejs/config.json on Linux, ~/Library/Preferences/fibx-nodejs/config.json on macOS) and persist across sessions.# Set a custom RPC
npx fibx@latest config set-rpc <chain> <url>
# Get current RPC
npx fibx@latest config get-rpc <chain>
# Reset a single chain to default
npx fibx@latest config reset-rpc <chain>
# Reset all chains to default
npx fibx@latest config reset-rpc
# List all configs
npx fibx@latest config list
| Parameter | Type | Description | Required |
| --------- | ------ | ---------------------------------------- | -------- |
| chain | string | base, citrea, hyperevm, or monad | Yes |
| url | string | The full HTTP(S) RPC endpoint URL | Yes |
User: "I'm getting rate limit errors on Base." Agent: "I will set a custom RPC for Base."
npx fibx@latest config set-rpc base https://mainnet.base.org
User: "Check my current configuration."
npx fibx@latest config list
User: "Reset Base RPC to default."
npx fibx@latest config reset-rpc base
User: "Reset all custom RPCs."
npx fibx@latest config reset-rpc
| Error | Action |
| ------------------- | ---------------------------------------------- |
| Unsupported chain | Check spelling of chain name. |
| Invalid URL | Ensure URL starts with http:// or https:// |
get-rpc to verify the current RPC before troubleshooting connectivity issues.testing
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.
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.