> ## Documentation Index
> Fetch the complete documentation index at: https://l2docs.whitechain.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Start with AI

> Route your AI coding assistant or autonomous agent to the right Whitechain integration: llms.txt, llms-full.txt, or the whitechain-dev Agent Skill.

This page is the starting point if you plan to build on Whitechain with an AI coding assistant or an autonomous agent instead of a manual toolchain. It routes you to the right integration method and lists a few prompts to try immediately.

## Quick setup

Pick the method that fits your tool.

### Static docs files

| File                                                        | What it contains                                       | When to use it                                   |
| ----------------------------------------------------------- | ------------------------------------------------------ | ------------------------------------------------ |
| [llms.txt](https://l2docs.whitechain.io/llms.txt)           | Page index with titles and descriptions                | Discovering which docs exist before going deeper |
| [llms-full.txt](https://l2docs.whitechain.io/llms-full.txt) | Full content of every current-network page in one file | Giving an assistant broad context in one shot    |

Every page is also available as plain Markdown: append `.md` to any URL. See [Feed Whitechain docs to AI tools](/build-with-ai/llms-txt).

### Skills

```bash theme={null}
npx skills add whitechain-labs/skills --skill whitechain-dev
```

See [Agent Skills](/build-with-ai/claude-skills) for what the `whitechain-dev` skill covers.

## Recommended starting points

| What you're doing                                            | Start here                                               |
| ------------------------------------------------------------ | -------------------------------------------------------- |
| Check balances, deploy, and verify contracts from an AI chat | [Agent Skills](/build-with-ai/claude-skills)             |
| Get exact chain IDs and endpoints for a prompt               | [Network reference](/learn/network/reference)            |
| Move assets between Ethereum and Whitechain                  | [OP Stack canonical bridge](/build/bridge/bridge-assets) |

## Example prompts

Copy one of these into your assistant to test that the integration is working:

* "Check the WBT balance of 0xYourAddress on Whitechain Sepolia."
* "Check whether Whitechain Sepolia is up and report the latest block number."
* "Guide me through claiming test WBT from the Whitechain Sepolia faucet for 0xYourAddress."
* "Deploy a minimal ERC-20 to Whitechain Sepolia and verify it on Blockscout."
* "Trace transaction 0xYourTxHash on Whitechain Sepolia and tell me whether it succeeded."

<Warning>
  Never paste a private key into an AI chat prompt. Keep it in a local `.env` file and let the assistant read the environment variable instead.
</Warning>

## Related

* [Build with AI](/build-with-ai)
* [Agent Skills](/build-with-ai/claude-skills)
* [Connect to Whitechain Sepolia](/learn/get-started/connect-wallet)
