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

# Quickstart

> Get started with Coplay in your Unity project in minutes

<Info>
  **Prerequisite**: Ensure you have Coplay properly installed in your Unity project before proceeding.

  If you haven't installed Coplay yet, please follow our [Installation Guide](/getting-started/installation) first.
</Info>

## Getting Started with Coplay

Once you have Coplay installed and authenticated, you're ready to start using it to enhance your Unity development workflow.

**Step 1**: Open Coplay in Unity:

<CodeGroup>
  ```text Mac theme={null}
  Command + G
  ```

  ```text Windows theme={null}
  Control + G
  ```
</CodeGroup>

**Step 2:** Choose your Coplay settings, including your Mode, Model, and Context availability. For more information on available settings, visit the [Settings](/essentials/settings) page.

**Step 3**: Start interacting with Coplay by typing in your questions or commands in the chat panel.

```csharp theme={null}
// Ask Coplay about Unity concepts like:
"How do I implement a character controller in Unity?"
```

```csharp theme={null}
// Or get specific code help:
"Write a script to make my camera follow the player with smooth damping"
```

```csharp theme={null}
// Debug existing code:
"Why is my collision detection not working properly?"
```

By default, Coplay will only provide suggestions and instructions of how to implement these changes in Unity.
For Coplay to act on your befalf, check "Auto-Approve" and Coplay will proceed uninterrupted as it generates actions in your project.

### Tips for Effective Usage

1. **Context-Aware Queries**: Always select the appropriate context for your question to get the most relevant answers
2. **Mode Switching**: Change agent modes based on your current development focus
3. **Model Selection**: Use faster models for simple tasks and more advanced models for complex problems
4. **Action Recording**: Use action recording to document processes that you want to analyze or replicate later
5. **Custom Rules**: Set up custom rules to ensure Coplay aligns with your team's development standards

For more detailed information on configuring Coplay's behavior, see the [Configuration Guide](/essentials/configuration).

Need more help? Join our [Discord community](http://discord.com/invite/KmGfEr6d3v) for support from the Coplay team and other users.
