Skip to content
Relunar

Documentation

Getting started

Install Relunar, connect GitHub and Daytona, and run your first repro.

Relunar is a local CLI harness for maintainers who work with coding agents. It does not run as a hosted service and it does not include a built-in AI agent.

What you need

  • Node.js 22 or newer
  • A GitHub token with access to the repository you want to investigate
  • A Daytona API key
  • A target repository with a .relunar.yml file

First run

npm install -g @dhruv2mars/relunar
relunar setup
cd your-repo
relunar init
relunar repo link owner/repo
relunar doctor --json

When setup is complete, ask your coding agent to inspect open issues and call relunar repro <issue-number>.

Recommended flow

  1. Run relunar doctor --json to verify auth and repo linkage.
  2. List issues with relunar issues list --state open --json.
  3. Reproduce one issue first: relunar repro 123.
  4. Inspect the report with relunar runs show <run-id> --json.
  5. Only add --comment when you explicitly want a GitHub issue comment.