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

# Welcome to Claro

> Claro is part of **Bayt OS**, The Collaborative Intelligence platform. Claro helps teams design, review and ship intelligent systems together.

## For Developers

This documentation covers:

* **Python SDK** - Integrate Claro into your Python applications
* **REST API** - Direct API access for any language
* **Code Examples** - Production-ready patterns and examples
* **Guides** - Best practices for testing, security, and performance

## Quick Example

```python theme={null}
from baytos.claro import BaytClient

# Initialize once
client = BaytClient(api_key="your_api_key")

# Get the latest version of your prompt
prompt = client.get_prompt("@workspace/customer-support:v1")

# Use it in your application
response = llm.generate(prompt.generator, context=user_message)
```

When your team updates the prompt in the Claro dashboard, your next API call automatically gets the new version. No code changes required.

## Key Features

<CardGroup cols={2}>
  <Card title="Version Control" icon="code-branch">
    Version your prompts like code. Roll back, compare versions, and maintain prompt history.
  </Card>

  <Card title="Workspace Collaboration" icon="users">
    Teams work together on prompts with proper access control and permissions.
  </Card>

  <Card title="Context Attachments" icon="paperclip">
    Attach files and URLs to prompts. The SDK handles downloading and caching automatically.
  </Card>

  <Card title="Package Naming" icon="box">
    Organize prompts with semantic versioning: `@workspace/name:version`
  </Card>
</CardGroup>

## Getting Started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get up and running in 5 minutes
  </Card>

  <Card title="Python SDK" icon="python" href="/sdk/python/installation">
    Install and configure the Python SDK
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore the REST API endpoints
  </Card>

  <Card title="Examples" icon="book-open" href="/examples/basic-usage">
    View production-ready code examples
  </Card>
</CardGroup>

## Why Claro?

**Problem:** Every prompt change requires a code deployment

* Marketing wants to update the chatbot message → 3-day deployment cycle
* Product needs to adjust tone → Full CI/CD pipeline
* Support wants to add context → Code review + release

**Solution:** Claro decouples AI instructions from your codebase

* Non-technical teams update prompts directly
* Developers integrate once using the SDK
* Changes go live in seconds, not days

## Next Steps

1. **[Get your API key](https://claro.baytos.ai)** from the Claro platform
2. **[Follow the quickstart](/quickstart)** to make your first API call
3. **[Explore examples](/examples/basic-usage)** for common use cases
4. **[Read the guides](/guides/workspace-collaboration)** for best practices

## Need Help?

* **Email:** [support@baytos.ai](mailto:support@baytos.ai)
* **Platform:** [claro.baytos.ai](https://claro.baytos.ai)
* **GitHub:** [github.com/baytos-ai](https://github.com/baytos-ai)
