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

# Platform Guides

> Learn how to run the PraisonAI Platform — a workspace for managing AI agents, issues, and projects.

The PraisonAI Platform is a self-hosted backend for organizing AI agent work. It provides a REST API for workspaces, projects, issues, agents, comments, labels, and dependencies with JWT authentication, auto-numbered issues, and activity logging. The Python SDK offers programmatic access for seamless integration.

## Guide Pages

<CardGroup cols={2}>
  <Card title="Getting Started" icon="rocket" href="getting-started">
    Install, start the server, make your first API call
  </Card>

  <Card title="Quick Tutorial" icon="clock" href="quick-tutorial">
    Full workflow in 10 minutes: user → workspace → project → issue → agent
  </Card>

  <Card title="Assign Work to Agents" icon="user-plus" href="assign-agents">
    Register AI agents and assign issues to them
  </Card>

  <Card title="Organize with Labels & Dependencies" icon="tags" href="organize-issues">
    Tag issues and link related work
  </Card>
</CardGroup>

***

## Feature Reference

Explore detailed documentation for platform features:

<CardGroup cols={2}>
  <Card title="Authentication" icon="shield-check" href="/docs/features/platform/authentication">
    JWT authentication system
  </Card>

  <Card title="Workspaces" icon="building" href="/docs/features/platform/workspaces">
    Multi-tenant workspace management
  </Card>

  <Card title="Projects" icon="folder" href="/docs/features/platform/projects">
    Project organization and management
  </Card>

  <Card title="Issues" icon="bug" href="/docs/features/platform/issues">
    Issue tracking and management
  </Card>

  <Card title="Agents" icon="robot" href="/docs/features/platform/agents">
    AI agent registration and management
  </Card>

  <Card title="Comments" icon="message-circle" href="/docs/features/platform/comments">
    Issue commenting system
  </Card>

  <Card title="Labels" icon="tag" href="/docs/features/platform/labels">
    Issue labeling system
  </Card>

  <Card title="Dependencies" icon="link" href="/docs/features/platform/dependencies">
    Issue dependency tracking
  </Card>

  <Card title="Data Model" icon="database" href="/docs/features/platform/data-model">
    Database schema and configuration
  </Card>
</CardGroup>

***

## Quick Install

Get started with the PraisonAI Platform in seconds:

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
pip install praisonai-platform
uvicorn praisonai_platform.api.app:create_app --factory --port 8000
```

The platform server will be available at `http://localhost:8000` with interactive API documentation at `/docs`.
