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

# Studio overview

> Use RPGJS Studio with AI assistants such as Claude Code, Codex, or similar tools.

# Studio overview

RPGJS Studio can be used directly from an AI coding assistant such as Claude Code, Codex, or any similar tool that supports skills.

## In this section

* What the Studio skill is for
* How to install the RPGJS Studio skill
* How to create and configure the Studio API key
* How to connect an RPGJS game to Studio data
* How to configure Studio event page options
* How to extend the Studio map renderer with plugins

## Recommended workflow

1. Install the shared skill:

```bash theme={null}
npx skills add https://github.com/RSamaium/RPG-JS#v5
```

2. When the tool asks which skill to install, choose `RPGJS Studio`.
3. Create an API key from [RPGJS Studio API keys](https://rpgjs.studio/api-keys).
4. Add the key to your environment with `RPGSTUDIO_API_KEY`.

Example:

```bash theme={null}
export RPGSTUDIO_API_KEY="your-api-key"
```

Or in a `.env` file:

```dotenv theme={null}
RPGSTUDIO_API_KEY=your-api-key
```

## Next step

* [Use a game with Studio](/studio/game-integration)
* [Studio event page options](/studio/event-page-options)
* [Create a Studio plugin](/studio/plugins)
