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

# Guardrails CLI

> CLI commands for guardrails in PraisonAI TypeScript

The `praisonai-ts` CLI provides the `guardrail` command for content validation.

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
graph LR
    User([User]) --> CLI[CLI]
    CLI --> Svc[Guardrails]

    classDef agent fill:#8B0000,stroke:#7C90A0,color:#fff
    classDef tool fill:#189AB4,stroke:#7C90A0,color:#fff

    class Svc agent
    class User,CLI tool
    classDef agent fill:#8B0000,color:#fff
    classDef tool fill:#189AB4,color:#fff

```

## Quick Start

<Steps>
  <Step title="Simple Usage">
    ```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
    praisonai-ts guardrail check "Your content here"
    ```
  </Step>

  <Step title="With Configuration">
    ```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
    praisonai-ts guardrail check "Content" --criteria "Must be professional" --json
    ```
  </Step>
</Steps>

# Guardrails CLI Commands

The `praisonai-ts` CLI provides the `guardrail` command for content validation.

## Check Content

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Check content against guardrails
praisonai-ts guardrail check "Your content here"

# Check with custom criteria
praisonai-ts guardrail check "Content" --criteria "Must be professional"

# Get JSON output
praisonai-ts guardrail check "Hello world" --json
```

**Example Output:**

```json theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
{
  "success": true,
  "data": {
    "status": "passed",
    "score": 0.95,
    "message": "Content passes validation"
  }
}
```

## SDK Usage

For programmatic guardrail usage:

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { LLMGuardrail, builtinGuardrails } from 'praisonai';

// LLM-based guardrail
const guard = new LLMGuardrail({
  name: 'safety',
  criteria: 'Content must be safe and appropriate'
});
const result = await guard.check('Hello world');

// Built-in guardrails
const maxLength = builtinGuardrails.maxLength(100);
const lengthResult = await maxLength.run('Hello');
```

For more details, see the [Guardrails SDK documentation](/docs/js/guardrails).

## Related

<CardGroup cols={2}>
  <Card title="Guardrails" icon="book" href="/docs/js/guardrails">Guardrails overview</Card>
  <Card title="LLM Guardrail" icon="robot" href="/docs/js/llm-guardrail">LLM Guardrail overview</Card>
</CardGroup>
