# Flare AI Skills

> Use Flare AI Skills in Cursor, Claude Code, and other agents for domain knowledge on FTSO, FAssets, FDC, FCC, and Smart Accounts.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

Source: https://dev.flare.network/network/guides/flare-ai-skills

[Flare AI Skills](https://github.com/flare-foundation/flare-ai-skills) is a collection of Agent Skills for Cursor, Claude Code, Codex, and other [skills.sh](https://skills.sh/) compatible agents. The skills give your AI assistant structured domain knowledge about Flare. That includes [Flare Time Series Oracle](/ftso/overview), [FAssets](/fassets/overview), [Flare Data Connector](/fdc/overview), [Flare Confidential Compute](/fcc/overview), and [Smart Accounts](/smart-accounts/overview). You get accurate, context-aware help when building on Flare.

## Available skills[​](#available-skills "Direct link to Available skills")

Skill

Description

**flare-general**

Flare overview, networks, chain IDs, RPC endpoints, explorers, faucets, and developer tooling

**flare-ftso**

[FTSO](/ftso/overview) price feeds, feed IDs, on-chain/off-chain consumption, fee calculation, delegation, and scaling anchor feeds

**flare-fassets**

[FAssets](/fassets/overview) overview, minting, redemption, agents, collateral, and smart contract integration

**flare-fdc**

[Flare Data Connector](/fdc/overview) overview, attestation types, request flow, Merkle proofs and Data Availability Layer (DAL) verification

**flare-fcc**

[Flare Confidential Compute](/fcc/overview) TEE extensions, InstructionSender pattern, OPType/OPCommand routing, attestation, and builds

**flare-smart-accounts**

[Smart Accounts](/smart-accounts/overview) 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[​](#installation "Direct link to Installation")

You can install the skills using the [skills.sh](https://skills.sh/) CLI, which is recommended for general use or in Claude Code.

### Using skills.sh[​](#using-skillssh "Direct link to Using skills.sh")

This is the recommended way to install the skills using the [skills.sh](https://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](https://skills.sh/docs).

### Claude Code[​](#claude-code "Direct link to Claude Code")

To install the skills in Claude Code, add the marketplace and install the skills you need.

1.  Add the marketplace:

```
/plugin marketplace add flare-foundation/flare-ai-skills
```

2.  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
```

3.  Run this command to manage plugins in Claude Code:

```
/plugin
```

Read more about [plugins in Claude Code](https://code.claude.com/docs/en/skills).

## Updating skills[​](#updating-skills "Direct link to 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[​](#using-the-skills "Direct link to Using the skills")

After installation, you can either explicitly invoke a skill or mention it in a prompt.

### Direct invocation[​](#direct-invocation "Direct link to 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[​](#example-prompts "Direct link to 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 development`
    
-   `Use 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 step`
    
-   `Use the /flare-fdc to show how to request an EVMTransaction attestation and verify it in a contract`
    
-   `Use the /flare-fcc to explain how to build and deploy a Flare Compute Extension`
    
-   `Use 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.

What's next

[Deploy your first contract](/network/getting-started) to get started on Flare. Or explore [Developer tools](/network/developer-tools) for RPCs, wallet SDKs, bridges, indexers, and more.
