# Set up AI-assisted development

Scalekit provides LLM-friendly capabilities that speed up implementation and guide you through integration steps. Use this guide to configure your preferred AI tools with first-class context awareness of the Scalekit platform.

## Configure code editors for Scalekit documentation

In-code editor chat features are powered by models that understand your codebase and project context. These models search the web for relevant information to help you. However, they may not always have the latest information. Follow the instructions below to configure your code editors to explicitly index for up-to-date information.

### Set up Cursor

<VideoPlayer link="https://youtu.be/oMMG1k_9fmU" />

To enable Cursor to access up-to-date Scalekit documentation:

1. Open Cursor settings (Cmd/Ctrl + ,)
2. Navigate to **Indexing & Docs** section
3. Click on **Add**
4. Add `https://docs.scalekit.com/llms-full.txt` to the indexable URLs
5. Click on **Save**

Once configured, use `@Scalekit Docs` in your chat to ask questions about Scalekit features, APIs, and integration guides. Cursor will search the latest documentation to provide accurate, up-to-date answers.

### Use Windsurf

![](@/assets/docs/dev-kit/ai-assisted-setup/windsurf.png)

Windsurf enables `@docs` mentions within the Cascade chat to search for the best answers to your questions.

```
    @docs:https://docs.scalekit.com/llms-full.txt
    <your question here>
    ```
    Costs more tokens.
  ```
    @docs:https://docs.scalekit.com/your-specific-section-or-file
    <your question here>
    ```
    Costs less tokens.
  ```
    @docs:https://docs.scalekit.com/llms.txt
    <your question here>
    ```
    Costs tokens as per the model decisions.
  ## Use AI assistants

Assistants like **Anthropic Claude**, **Ollama**, **Google Gemini**, **Vercel v0**, **OpenAI's ChatGPT**, or your own models can help you with Scalekit projects.

<VideoPlayer link="https://youtu.be/ZDAI32I6s-I" description="AI assistants" />
**Need help with a specific AI tool?:** Don't see instructions for your favorite AI assistant? We'd love to add support for more tools! [Raise an issue](https://github.com/scalekit-inc/developer-docs/issues) on our GitHub repository and let us know which AI tool you'd like us to document.