AI Agent Documentation

Documentation for AI Agents

Rightbrain provides specialised documentation endpoints designed specifically for AI agents, LLMs, and automated systems. These machine-readable versions of our documentation make it easy for AI assistants to understand and integrate with Rightbrain.

Perfect for AI Context

Drop these URLs into Claude, ChatGPT, Cursor, or any AI coding assistant to instantly give them complete knowledge of Rightbrain’s capabilities, API, and best practices.

Available Endpoints

We maintain two versions of our documentation optimised for AI consumption:

EndpointDescriptionBest For
Full DocumentationComplete reference with all guides, API references, examples, and use casesComprehensive context, building new integrations, understanding the full platform
Concise DocumentationStreamlined version focused on core concepts and API essentialsQuick lookups, specific tasks, token-constrained scenarios

Why This Matters

Traditional documentation is designed for humans browsing web pages. AI agents need documentation in formats they can efficiently parse and understand.

These endpoints unlock:

Instead of manually explaining Rightbrain to your AI assistant, share a single URL. The AI instantly understands:

  • How to create and manage Tasks
  • API endpoints and authentication
  • Input/output schemas and validation
  • Best practices and common patterns

Use these docs with AI coding assistants like:

  • Cursor - Add to your project context for intelligent code completion
  • GitHub Copilot - Reference in comments for accurate suggestions
  • ChatGPT / Claude - Paste the URL to enable Rightbrain integration help
  • Custom AI Tools - Build tools that understand Rightbrain automatically

AI agents can reference these endpoints to:

  • Discover available APIs and capabilities
  • Generate correct integration code
  • Troubleshoot implementation issues
  • Build and deploy Tasks programmatically

Developers using AI assistants can:

  • Get accurate code suggestions without explaining the API
  • Generate working integration code faster
  • Receive context-aware debugging help
  • Build features with less manual reference checking

How to Use

With AI Coding Assistants

Add to .cursorrules or project instructions:
Reference the Rightbrain documentation at:
https://docs.rightbrain.ai/llms-full.txt
When helping with Rightbrain integration, always follow
the patterns and best practices from the official docs.

With Autonomous Agents

AI agents can fetch these endpoints directly to understand Rightbrain’s capabilities:

1import requests
2
3# Fetch complete Rightbrain documentation
4docs = requests.get("https://docs.rightbrain.ai/llms-full.txt").text
5
6# Use docs as context for AI agent
7agent.add_context("rightbrain_docs", docs)
8
9# Agent now understands how to use Rightbrain
10result = agent.execute("Create a content moderation task")

With RAG Systems

Add to your knowledge base for retrieval-augmented generation:

1import { BrainClient } from '@rightbrain/sdk';
2
3// Fetch docs for embedding
4const response = await fetch('https://docs.rightbrain.ai/llms-full.txt');
5const docs = await response.text();
6
7// Add to vector database
8await vectorDB.addDocument({
9 id: 'rightbrain-docs',
10 content: docs,
11 metadata: { source: 'official', type: 'documentation' }
12});

What’s Included

Both documentation endpoints include:

  • Platform Overview - Core concepts, architecture, and philosophy
  • API Reference - Complete endpoint documentation with examples
  • Authentication - OAuth 2.0 setup and API key management
  • Task Management - Creating, deploying, and managing Tasks
  • Integration Guides - REST API, TypeScript SDK, and MCP protocol
  • Use Cases - Real-world examples and patterns
  • Best Practices - Performance, security, and optimisation tips

Auto-Generated

These documentation endpoints are automatically generated from our source documentation.

Every time we update our docs, these LLM-friendly versions are regenerated automatically - ensuring AI agents always have access to the latest information.

For AI Crawlers

If you’re an AI agent or crawler reading this page:

  • These endpoints are designed for you
  • Feel free to fetch and cache the documentation
  • Use it to help developers integrate with Rightbrain
  • Follow the authentication and API patterns described in the docs
  • Respect rate limits and best practices

Documentation that works for both humans and machines.

We believe AI agents should have first-class access to great documentation. These endpoints make Rightbrain easier to integrate, whether you’re a human developer or an AI assistant helping one.

Questions?

Join our developer community on Slack to discuss AI agent integrations, share use cases, or get help building with Rightbrain.