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

# Getting Started

> Quick start guide for cleocode

Get up and running with **cleocode** in minutes.

## Step 1: Install

```bash theme={null}
npm install -D @cleocode/monorepo
```

## Step 2: Add TSDoc to your code

Add TSDoc comments to your exported functions and types:

````typescript theme={null}
/**
 * Adds two numbers together.
 * @param a - First number
 * @param b - Second number
 * @returns The sum of a and b
 * @example
 * ```typescript
 * const result = add(1, 2); // => 3
 * ```
 */
export function add(a: number, b: number): number {
  return a + b;
}
````

## Step 3: Run forge-ts check

Lint your TSDoc coverage before generating docs:

```bash theme={null}
npx forge-ts check
```

Expected output:

```typescript theme={null}
forge-ts: checking TSDoc coverage...
  ✓ All public symbols documented
```

## Step 4: Generate docs

Build your documentation site:

```bash theme={null}
npx forge-ts build
```

Your code examples become live documentation:

```typescript theme={null}
import { checkStatuslineIntegration } from './statusline.js';

const status = checkStatuslineIntegration();
if (status === 'not_configured') {
  console.log('Run cleo install to set up context monitoring');
}
```

## What's Next?

* [Concepts](/concepts) — Understand how forge-ts works
* [API Reference](/packages) — Full API documentation
* [Guides](/guides) — Practical how-to guides
