lifi
Use LI.FI API for cross-chain and same-chain swaps, bridges, and contract calls. Use when quoting routes, validating chains/tokens, building transaction requests, and tracking status.
What this skill does
# LI.FI Agent Skill
## Purpose
Use the LI.FI API to fetch cross-chain and same-chain swap/bridge data, then use `transactionRequest` returned by the API to build a transaction request that can be submitted by a wallet.
## Usage
- NEVER use web_search when searching for quotes or routes. ALWAYS USE LIFI SKILL.
Use Endpoint Specifications to build transaction requests.
- NEVER use external price sources (Coinbase, etc.) to estimate quotes.
- ALWAYS use curl to make API calls.
- ALWAYS refer to (## How to use the LIFI API)[#how-to-use-the-lifi-api] to understand what api call to do.
- ALWAYS tell the user that the quote is provided by LI.FI and not by the agent or external web search.
- if not specified, default slippage is 1% and deadline is 10 minutes.
## Base URL and Auth
- Base URL: `https://li.quest`
- Auth: `x-lifi-api-key` header using `LIFI_API_KEY` when available; otherwise public access may be rate-limited.
## How to use the LIFI API
### Get information about all currently supported chains.
**Action**: GET /chains
Request example:
```bash
curl --request GET \
--url https://li.quest/v1/chains \
--header 'x-lifi-api-key: LIFI_API_KEY'
```
### Retrieve tokens available on specified chains.
**Action**: GET /tokens
**Description**: This endpoint can be used to fetch all tokens known to the LI.FI services..
Request example:
```bash
curl --request GET \
--url 'https://li.quest/v1/tokens?chains=1' \
--header 'x-lifi-api-key: LIFI_API_KEY'
```
### Get a transfer quote with ready-to-execute transaction data.
**Action**: GET /quote
**Description**: This endpoint can be used to request a quote for a transfer of one token to another, cross chain or not.
The endpoint returns a Step object which contains information about the estimated result as well as a transactionRequest which can directly be sent to your wallet.
The estimated result can be found inside the estimate, containing the estimated toAmount of the requested Token and the toAmountMin, which is the guaranteed minimum value that the transfer will yield including slippage.
Request example:
```bash
curl --request GET \
--url 'https://li.quest/v1/quote?fromChain=1&toChain=42161&fromToken=ETH&toToken=USD&fromAddress=0x123..&toAddress=0x456..&fromAmount=1000000&slippage=0.005' \
--header 'x-lifi-api-key: LIFI_API_KEY'
```
### Perform multiple contract calls across blockchains (BETA)
**Action**: POST /quote/contractCalls
**Description**: This endpoint can be used to bridge tokens, swap them and perform a number or arbitrary contract calls on the destination chain. You can find an example of it here.
This functionality is currently in beta. While we've worked hard to ensure its stability and functionality, there might still be some rough edges.
Request example:
```bash
curl --request POST \
--url https://li.quest/v1/quote/contractCalls \
--header 'Content-Type: application/json' \
--header 'x-lifi-api-key: LIFI_API_KEY' \
--data '
{
"fromChain": 10,
"fromToken": "0x4200000000000000000000000000000000000042",
"fromAddress": "0x552008c0f6870c2f77e5cC1d2eb9bdff03e30Ea0",
"toChain": 1,
"toToken": "ETH",
"toAmount": "100000000000001",
"contractCalls": [
{
"fromAmount": "100000000000001",
"fromTokenAddress": "0x0000000000000000000000000000000000000000",
"toTokenAddress": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
"toContractAddress": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
"toContractCallData": "0x",
"toContractGasLimit": "110000"
},
{
"fromAmount": "100000000000000",
"fromTokenAddress": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
"toTokenAddress": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
"toContractAddress": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
"toFallbackAddress": "0x552008c0f6870c2f77e5cC1d2eb9bdff03e30Ea0",
"toContractCallData": "0xea598cb000000000000000000000000000000000000000000000000000005af3107a4000",
"toContractGasLimit": "100000"
}
],
"integrator": "muc-hackaton-postman"
}
'}'
```
### Check the status of a cross-chain transfer.
**Action**: GET /status
**Description**: Cross chain transfers might take a while to complete. Waiting on the transaction on the sending chain doesn't help here. For this reason we build a simple endpoint that let's you check the status of your transfer.
Important: The endpoint returns a 200 successful response even if the transaction can not be found. This behavior accounts for the case that the transaction hash is valid but the transaction has not been mined yet.
While non of the parameters fromChain, toChain and bridge are required, passing the fromChain parameter will speed up the request and is therefore encouraged.
Request example:
```bash
curl --request GET \
--url 'https://li.quest/v1/status?txHash=0x123..' \
--header 'x-lifi-api-key: LIFI_API_KEY'
```
### Get a set of routes for a request that describes a transfer of tokens
**Action**: POST /advanced/routes
**Description**: In order to execute any transfer, you must first request possible Routes. From the result set a Route can be selected and executed by retrieving the transaction for every included Step using the /steps/transaction endpoint.
Request example:
```bash
curl --request POST \
--url https://li.quest/v1/advanced/routes \
--header 'Content-Type: application/json' \
--header 'x-lifi-api-key: LIFI_API_KEY' \
--data '
{
"fromChainId": 100,
"fromAmount": "1000000000000000000",
"fromTokenAddress": "0x0000000000000000000000000000000000000000",
"toChainId": 137,
"toTokenAddress": "0x0000000000000000000000000000000000000000",
"options": {
"integrator": "fee-demo",
"referrer": "0x552008c0f6870c2f77e5cC1d2eb9bdff03e30Ea0",
"slippage": 0.003,
"fee": 0.02,
"bridges": {
"allow": [
"relay"
]
},
"exchanges": {
"allow": [
"1inch",
"openocean"
]
},
"allowSwitchChain": true,
"order": "CHEAPEST",
"maxPriceImpact": 0.1
}
}
'
```
### Get available bridges and exchanges
**Action**: GET /tools
**Description**: This endpoint can be used to get information about the bridges and exchanges available trough LI.FI.
Request example:
```bash
curl --request GET \
--url 'https://li.quest/v1/tools?chains=1&chains=2&chains=3' \
--header 'x-lifi-api-key: LIFI_API_KEY'
```
## Documentation
llm documentation: https://docs.li.fi/llms.txt
openapi spec: https://gist.githubusercontent.com/kenny-io/7fede47200a757195000bfbe14c5baee/raw/725cf9d4a6920d5b930925b0412d766aa53c701c/lifi-openapi.yamlRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.