Skip to content

Getting Started

Welcome to LunaOS — your AI-powered development team. LunaOS provides 140+ commands across 33 MCP servers that cover your entire software development lifecycle.

What is LunaOS?

LunaOS is an AI agent platform that runs on Cloudflare's global edge. Each agent is a domain expert — trained on real-world engineering patterns — that can review your code, generate tests, write documentation, plan deployments, and more.

How It Works

You → Agent → LLM → Structured Output

    RAG Context (optional)
  1. Choose an agent — each one specializes in a specific SDLC phase
  2. Provide context — your code, requirements, or project details
  3. Get expert output — structured, actionable results streamed in real-time

Three Ways to Use LunaOS

bash
npm install -g @luna-agents/cli
luna login
luna run code-review --context "your code here"

2. REST API

bash
curl -X POST https://api.lunaos.ai/agents/execute \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"agent": "code-review", "context": "your code here"}'

3. Dashboard

Visit agents.lunaos.ai for a visual interface with real-time streaming.

Free Tier

The free plan includes unlimited commands with BYOK (bring your own key), CLI + Dashboard + Studio access, and community support. Rate limit: 60 requests/min.

Popular commands available on the free plan:

CommandPurpose
🔍 Code ReviewFind bugs, security issues, and code smells
🧪 TestingGenerate unit tests, integration tests, E2E tests
📝 DocumentationWrite JSDoc, README, API docs, guides
🚀 DeploymentCI/CD pipelines, Docker configs, cloud deployments
📋 RequirementsAnalyze and structure project requirements
🏗️ ArchitectureSystem design, component architecture, data flow

Next Steps