outrider v1.6.3Live on the GitHub Marketplace
// outrider · v1.2.0 on the GitHub Marketplace

Research lands in your repo as a draft PR

Outrider is a free GitHub Action that watches arXiv for techniques relevant to your system and opens a draft PR only when a paper wires cleanly into your code. When a change is premature it opens an issue, and when nothing fits it tells you. One artifact per window, so it never spams your repo.

$ remyxai outrider init --repo owner/name --auto-interest

// 01 how_it_works

From new research to your repo in four steps

[1] interest

Define an interest

One command profiles your repo and creates a Research Interest, a living description of what to track.

[2] scout

Scout daily

The pipeline matches new arXiv papers and research assets against your interests every day.

[3] verify

Verify the fit

Candidates are checked against your actual code paths, so recommendations anchor to real files, real modules, real seams.

[4] pr

Open the PR

remyx-ai[bot] opens a draft PR with the integration, the paper, and the benchmark context linked. You review, run, and decide.

// 02 research_interests

Three ways to tell it what to track

A Research Interest is a named description of what matters to your system. Every create command kicks off a first recommendation pass, so the interest is populated right away.

from free-form context
$ remyxai interests create \
    --name "LLM Efficiency" \
    --context "quantization,
    speculative decoding,
    KV cache compression"

Describe the territory in plain language, or hand it a Hugging Face or GitHub URL to expand.

from a github repo
$ remyxai interests from-repo \
    github.com/your-org/your-repo \
    --daily-count 3 \
    --automate review

The engine analyzes the repo and builds a profile of its themes, architecture, and history.

from a project
$ remyxai interests from-project \
    "Spatial VQA" --wait

Build the interest from a project's experiments, so the scouting follows where your work is actually heading.

// 03 trust

Server-side setup. Your local git is untouched

Provisioning runs through the Remyx GitHub App as remyx-ai[bot]. You authorize once, and the engine handles the rest with credentials scoped to do exactly one job.

  • a scoped automation key minted per repo, revocable on its own
  • your personal API key never becomes a repo secret
  • your model provider key is connected once, then handled for you
  • review mode available, so you merge the setup PR yourself
remyxai outrider init
$ remyxai outrider init --repo acme/support-agent --auto-interest Plan: repo: acme/support-agent · mode: auto the engine installs everything server-side as remyx-ai[bot]; your local git is untouched. Proceed? [y/N]: y Created interest · GitHub App installed · provider connected … verifying access · writing workflow · merging setup PR Outrider is set up. First run dispatched.

Your first recommendation PR is one command away

Free to install. Works with the repos and CI you already have.