---
name: dflow
description: Landing skill for AI agents discovering DFlow. DFlow is a Solana
  trading protocol covering spot crypto swaps and Proof KYC identity
  verification. The canonical skill content lives in two repositories — install
  whichever fits the use case (or both). Use when an agent asks how to integrate
  DFlow, swap tokens on Solana, gate features by Proof KYC, or monetize trades
  with a builder fee.
license: MIT
metadata:
  author: DFlow
  version: 1.1.0
  tags:
    - solana
    - trading
    - dex
    - kyc
    - websocket
  mcp-server: pond.dflow.net/mcp
  mintlify-proj: dflow
---

# DFlow Skills Landing

DFlow is a Solana trading protocol. It supports [spot crypto swaps](https://pond.dflow.net/spot/introduction), with [Proof KYC](https://pond.dflow.net/proof/introduction) for wallet identity verification.

This file is a pointer for agents that auto-fetch `/skill.md`. The canonical skill content lives in the two repositories below. Install whichever fits the use case — they don't conflict.

## Skills Repos

### `DFlowProtocol/dflow-skills`

For agents driving the [DFlow Agent CLI](https://pond.dflow.net/ai/agent-cli) or [DFlow Trade API](https://pond.dflow.net/resources/trading-api/introduction) directly. Backend-style flows: scripts, automation, server-side trade execution, headless trading agents.

```bash
npx skills add DFlowProtocol/dflow-skills
```

Includes the following skills:

| Skill                                                                                                                          | Scope                                                                                                                          |
| :----------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------- |
| [`dflow-spot-trading`](https://github.com/DFlowProtocol/dflow-skills/blob/main/skills/dflow-spot-trading/SKILL.md)             | Swap any pair of Solana tokens via the DFlow CLI or Trade API, including builder platform fees, sponsored swaps, and priority-fee tuning. |
| [`dflow-market-data`](https://github.com/DFlowProtocol/dflow-skills/blob/main/skills/dflow-market-data/SKILL.md)               | Stream real-time quotes, order-book depth, and priority-fee estimates over WebSocket.                                         |
| [`dflow-proof-kyc`](https://github.com/DFlowProtocol/dflow-skills/blob/main/skills/dflow-proof-kyc/SKILL.md)                   | Integrate Proof identity verification to gate app features by wallet KYC and check verification status.                       |

### `DFlowProtocol/dflow_phantom-connect-skill`

For agents building full-stack web apps. Teaches Claude [Phantom's](https://phantom.app) wallet SDKs alongside DFlow's Trade API. Covers wallet connection, transaction signing, token swaps, and real-time market-data streaming.

```bash
npx skills add https://github.com/DFlowProtocol/dflow_phantom-connect-skill
```

## Recommended Companions

### DFlow Docs MCP Server

Every skill defers reference details (parameter shapes, endpoints, error codes) to the [DFlow Docs MCP](https://pond.dflow.net/ai/mcp) at `pond.dflow.net/mcp`. The skills work without it but the agent will guess on field-level questions; with it, the agent looks things up canonically.

### `dflow` CLI

Skills that cover the CLI surface (spot trading) assume the [`dflow` CLI](https://pond.dflow.net/ai/agent-cli) is on `PATH`:

```bash
curl -fsS https://cli.dflow.net | sh
dflow setup
```

`dflow setup` is interactive: it prompts for a wallet, password, and Solana RPC URL.

## Resources

- [DFlow docs](https://pond.dflow.net)
- [Spot trading quickstart](https://pond.dflow.net/spot/recipes/quickstart) — runnable code samples
- [DFlow Cookbook](https://github.com/DFlowProtocol/cookbook) — clone-and-go example repos
- [DFlow Docs MCP](https://pond.dflow.net/ai/mcp)
- [Production API key](https://pond.dflow.net/get-started/api-key)
- [Proof KYC](https://pond.dflow.net/proof/introduction)
