Below you will find pages that utilize the taxonomy term “Remyxai”
June 5, 2026
Remyx Outrider
Version updated for https://github.com/remyxai/outrider to version v1.3.6.
This action is used across all versions by 2 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed v1.3.6 — Selection timeout hotfix Hotfix for selection-pass timeouts observed after the v1.3.4 / v1.3.5 prompt extensions.
The agentic verification loop with the extended schema needs roughly 5–6 minutes of wall budget for 20–25 verification turns (code searches + per-candidate contract checks). The prior 180s default was too tight on real production pools and induced fall-back to the top-ranked candidate — bypassing the agentic verification entirely. Observed on a remyxai/VQASynth run earlier today where selection should have surfaced a substitution Issue but instead emitted a standard issue_opened_preflight.
June 4, 2026
Remyx Outrider
Version updated for https://github.com/remyxai/outrider to version v1.3.5.
This action is used across all versions by 2 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed v1.3.5 — Selection: out-of-pool external picks via broadening-search The selection pass can now return a candidate it finds outside the recommendation pool (via remyxai search query) when in-pool verification fails AND the broader catalog surfaces a paper that satisfies one of the three integration shapes. Closes a gap where the selection pass would correctly identify a substitution opportunity but had no schema-permitted way to return it.
June 4, 2026
Remyx Outrider
Version updated for https://github.com/remyxai/outrider to version v1.3.3.
This action is used across all versions by 2 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed v1.3.3 — Documentation accuracy No code changes — README only. Three drifts caught during audit:
Inputs table: documents claude-timeout and pin-arxiv. Both shipped in v1.2.0 but were missing from the table. Status-codes section: corrected outcome count to 17 (the prior “16” and “15” before that were both off-by-one — error was already in the table). Guardrails default allowlist: documented value now matches the DEFAULT_ALLOWLIST_GLOBS constant in src/run.py — Markdown anywhere (**/*.md), not just README.md. The “append-only attribution” framing came from a prompt instruction to Claude, not from any enforced guardrail. No behavior change. Existing customers don’t need to update any workflow inputs.
June 2, 2026
Remyx Outrider
Version updated for https://github.com/remyxai/outrider to version v1.2.0.
This action is used across all versions by 2 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed Outrider is now on the GitHub Marketplace 🎉 Marketplace listing →
One-click install from the listing. uses: path is unchanged — existing customers on @v1 get this release with no workflow edits required.
- uses: remyxai/outrider@v1 with: interest-id: ${{ vars.REMYX_INTEREST_ID }} What’s new since v1.1.3 New inputs claude-timeout (default 900). Wall-clock budget for the Claude Code implementation pass. Default raised from 600s after large repos hit the ceiling. Bump for very large codebases, lower to cap cost. pin-arxiv. Force-select a specific arxiv_id from the candidate pool and skip the LLM selection pass. Use it for reproducible eval re-runs. Empty = normal selection (default). Robustness Brand-new interests auto-refresh. An empty recommendation pool now triggers POST /papers/recommended/refresh and polls until picks appear (up to ~150s) instead of failing the run. Day-zero interests work without a manual nudge. master-default repos supported. PR base + the commit-time sanity check now read the repo’s actual default branch via git symbolic-ref rather than hardcoding main. unvalidated pytest classification. A pytest run that can’t collect (missing repo deps on the CI runner, exit 5, ImportError during collection) is no longer reported as failed. PR body labels it ℹ️ Tests could not run in CI and points reviewers at local validation. Issues-disabled repos. When the target repo has Issues turned off (HTTP 410 on POST /issues), the orchestrator enables them via PATCH and retries once. Branch-ref safety in commit cleanup. Build-artifact prune excludes .git/ from traversal, eliminating a class of orphan-root-commit failures on branches whose names contain /. Shallow-clone-friendly pushes. Branch push is now delete-then-plain-push instead of --force, which was confusing GitHub’s PR validator into rejecting --depth 20 clones as “no history in common with main.” LFS smudge skip. GIT_LFS_SKIP_SMUDGE=1 on clone, so repos with exhausted LFS bandwidth don’t fail at checkout. The orchestrator only reads code structure and writes small text edits; pointer files are sufficient. --untracked-files=all in change detection. Files inside a brand-new directory (first-ever tests/, first-ever docs/) are now seen per-file instead of collapsed to the directory entry. Visibility Non-zero exit on claude_failed and error. Workflow step fails visibly instead of going green with no PR or Issue. Enriched selection log. $GITHUB_STEP_SUMMARY lists rejected candidates as clickable arxiv links with reasons. selection_rejected in $GITHUB_OUTPUT carries {arxiv_id, title, reason} triples. Per-run cost accumulation across all Claude passes. Pre-flight + selection + implementation + self-review token and dollar costs sum into a single line in the step summary and the cost_usd / input_tokens / output_tokens outputs. Customer signal Outrider Validate waitlist linked from the PR body. Eval-on-every-PR (paid tier, coming soon); design-partner pilot open at discussions/19. Backward compatibility All existing workflows continue to work without changes. The uses: path, every existing with: input, and every output are unchanged from v1.1.3. The two new inputs (claude-timeout, pin-arxiv) are optional with safe defaults.