AI & Developer Tools Overview

Use Claude Code, AI skills, and the llms.txt reference file to accelerate your RohoPay integration.

Overview

RohoPay docs are built to be read by both humans and AI. The entire API surface is captured in a single machine-readable file (llms.txt) so any AI coding tool can generate accurate integration code.

The llms.txt Reference File

RohoPay ships a canonical llmstxt.org reference at https://docs.rohopay.com/llms.txt. It is the single source of truth for endpoints, auth, phone formats, error codes, test credentials, and implementation rules — kept in sync with apps/api/internal/routes/routes.go.

terminal.shBash
# Download the API reference for any AI tool
curl https://docs.rohopay.com/llms.txt > rohopay-llms.txt

# Add to Claude Code workspace context
cat rohopay-llms.txt >> CLAUDE.md

# Add to Cursor rules
cp rohopay-llms.txt .cursor/rules/rohopay.md

The llms.txt covers every endpoint, phone format, error code, test credential, and implementation rule — in plain text optimized for AI context windows.

Quick Start with Claude Code

terminal.shBash
# Install Claude Code CLI
npm install -g @anthropic-ai/claude-code

# Run in your project
claude

# Ask directly about RohoPay
> How do I collect mobile money payments?
> Generate a webhook handler in Next.js
> What does DISBURSE_TEST_BLOCKED mean?

See Claude Code Setup for CLAUDE.md context configuration, and Skills & Prompts for the ready-made slash commands.

What These Tools Are Not

RohoPay docs are a custom Next.js + MDX site — there is no hosted AI chat widget and no third-party "docs assistant" embedded in the pages. The fastest way to get AI help is to paste llms.txt into your own coding assistant (Claude Code, Cursor, Copilot, etc.).