> ## Documentation Index
> Fetch the complete documentation index at: https://luminouslabs-cc5545c6-bump-sdks.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent skills

> Install structured agent skill files for Token API's and PDA accounts. Skills tell AI coding agents what they can do with ZK Compression.

## Agent Skill for Orchestration

View or install [`/skill.md`](https://zkcompression.com/skill.md). If you're building with agents, start here.

```bash theme={null}
npx skills add https://zkcompression.com
```

## Dedicated Agent Skills

<Tabs>
  <Tab title="Claude Code">
    Add the marketplace and install:

    ```
    /plugin marketplace add Lightprotocol/skills
    /plugin install solana-rent-free-dev
    ```
  </Tab>

  <Tab title="Cursor">
    1. Open Settings (**Cmd+Shift+J** / **Ctrl+Shift+J**)
    2. Navigate to **Rules & Commands** → **Project Rules** → **Add Rule** → **Remote Rule (GitHub)**
    3. Enter: `https://github.com/Lightprotocol/skills.git`
  </Tab>

  <Tab title="Any Agent">
    ```
    npx skills add Lightprotocol/skills
    ```
  </Tab>
</Tabs>

| Use case                                                                                                                                                                                              | Skill                                                                                                 |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| Build rent-free Solana programs with Light SDK (Anchor or Pinocchio). Includes router integration.                                                                                                    | [light-sdk](https://github.com/Lightprotocol/skills/tree/main/skills/light-sdk)                       |
| Use Light Token client SDKs (TypeScript and Rust) for mints, ATAs, transfers                                                                                                                          | [light-token-client](https://github.com/Lightprotocol/skills/tree/main/skills/light-token-client)     |
| Stream account state via Laserstream gRPC                                                                                                                                                             | [data-streaming](https://github.com/Lightprotocol/skills/tree/main/skills/data-streaming)             |
| Wallets and payment flows with light-token. Includes privy, wallet adapter, mobile wallet adapter signing. Optional nullifier to prevent your onchain instruction from being executed more than once. | [payments-and-wallets](https://github.com/Lightprotocol/skills/tree/main/skills/payments-and-wallets) |
| Airdrops, DePIN, token distribution                                                                                                                                                                   | [token-distribution](https://github.com/Lightprotocol/skills/tree/main/skills/token-distribution)     |
| Anti-double-spend nullifiers for Privacy-preserving ZK programs                                                                                                                                       | [zk-nullifier](https://github.com/Lightprotocol/skills/tree/main/skills/zk-nullifier)                 |
| Testing programs and clients on localnet, devnet, mainnet                                                                                                                                             | [testing](https://github.com/Lightprotocol/skills/tree/main/skills/testing)                           |
| For per-user state, DePIN nodes, and infrequently accessed app state with compressed PDAs                                                                                                             | [solana-compression](https://github.com/Lightprotocol/skills/tree/main/skills/solana-compression)     |
| Help with Debugging and Questions via DeepWiki MCP                                                                                                                                                    | [ask-mcp](https://github.com/Lightprotocol/skills/tree/main/skills/ask-mcp)                           |

> View all skills here: [https://github.com/Lightprotocol/skills](https://github.com/Lightprotocol/skills).

All skills are included and are auto-discovered based on context. Ask about light-token, defi, payments, or program migration and the agent uses the relevant skill automatically.
