Flare AI Skills
Flare AI Skills is a collection of Agent Skills for Cursor, Claude Code, Codex, and other skills.sh compatible agents. The skills give your AI assistant structured domain knowledge about Flare. That includes Flare Time Series Oracle, FAssets, Flare Data Connector, Flare Confidential Compute, and Smart Accounts. You get accurate, context-aware help when building on Flare.
Available skills
| Skill | Description |
|---|---|
| flare-general | Flare overview, networks, chain IDs, RPC endpoints, explorers, faucets, and developer tooling |
| flare-ftso | FTSO price feeds, feed IDs, on-chain/off-chain consumption, fee calculation, delegation, and scaling anchor feeds |
| flare-fassets | FAssets overview, minting, redemption, agents, collateral, and smart contract integration |
| flare-fdc | Flare Data Connector overview, attestation types, request flow, Merkle proofs and Data Availability Layer (DAL) verification |
| flare-fcc | Flare Confidential Compute TEE extensions, InstructionSender pattern, OPType/OPCommand routing, attestation, and builds |
| flare-smart-accounts | Smart Accounts overview, account abstraction for XRPL users to interact with Flare without owning FLR |
You can install one or more skills depending on what you are building on Flare.
Installation
You can install the skills using the skills.sh CLI, which is recommended for general use or in Claude Code.
Using skills.sh
This is the recommended way to install the skills using the skills.sh CLI.
Many AI agents support skills.sh, including Cursor, Claude Code, Codex, and more.
From your project or any directory, run the following command to install the skills:
npx skills add https://github.com/flare-foundation/flare-ai-skills
It will ask you to select the skills you want to install.
Read more about skills.sh in the skills.sh documentation.
Claude Code
To install the skills in Claude Code, add the marketplace and install the skills you need.
- Add the marketplace:
/plugin marketplace add flare-foundation/flare-ai-skills
- Select the skills you need and install them.
/plugin install flare-general@flare-ai-skills
/plugin install flare-ftso@flare-ai-skills
/plugin install flare-fassets@flare-ai-skills
/plugin install flare-fdc@flare-ai-skills
/plugin install flare-fcc@flare-ai-skills
/plugin install flare-smart-accounts@flare-ai-skills
- Run this command to manage plugins in Claude Code:
/plugin
Read more about plugins in Claude Code.
Updating skills
To update all installed skills (when using skills.sh):
npx skills update
To update a single skill, reinstall it:
npx skills add https://github.com/flare-foundation/flare-ai-skills --skill flare-ftso
Using the skills
After installation, you can either explicitly invoke a skill or mention it in a prompt.
Direct invocation
Invoke a skill explicitly with a slash command in Agent chat, for example:
Using the /flare-ftso skill to show how to consume FTSO price feeds in a Solidity contract.
Type / and select the skill name (for example, /flare-general, /flare-ftso, /flare-fassets, /flare-fdc, /flare-fcc, or /flare-smart-accounts).
The agent loads that skill's SKILL.md and follows its workflow.
Example prompts
After installation, use your AI agent as usual and refer to the skill when needed.
Example prompts (click the copy button to copy the full prompt):
Use the /flare-general to explain how to set up a Hardhat project for Flare developmentUse the /flare-ftso to show how to consume FTSO price feeds in a Solidity contract.Use the /flare-fassets to explain how to mint FXRP step by stepUse the /flare-fdc to show how to request an EVMTransaction attestation and verify it in a contractUse the /flare-fcc to explain how to build and deploy a Flare Compute ExtensionUse the /flare-smart-accounts to show how to deposit to a vault
The agent will use the workflow and concepts from the Flare AI Skills SKILL.md.
It can reference Flare Developer Hub links from the reference files.
Deploy your first contract to get started on Flare. Or explore Developer tools for RPCs, wallet SDKs, bridges, indexers, and more.