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.ymlfile
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
- Run
relunar doctor --jsonto verify auth and repo linkage. - List issues with
relunar issues list --state open --json. - Reproduce one issue first:
relunar repro 123. - Inspect the report with
relunar runs show <run-id> --json. - Only add
--commentwhen you explicitly want a GitHub issue comment.