outrider-experimentation

Solid

Trigger, debug, and interpret Outrider Action runs on target repos as part of Claude-Code-driven paper-to-code work. Covers manual dispatch patterns, using remyxai-cli to scope paper search, fetching run logs and RUN SUMMARY JSON to interpret outcomes, checking GitHub coordination signals (existing PRs/Issues, upstream policy) before filing, and reading the fidelity audit's Coverage matrix to identify gaps before going upstream. Use when experimenting with Outrider on a target repo, debugging a failed or downgraded run, or preparing to shepherd a drafted PR upstream.

Code & Development 16 stars 1 forks Updated 2 days ago Apache-2.0

Install

View on GitHub

Quality Score: 83/100

Stars 20%
41
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Outrider experimentation — field guide Ambient knowledge for using Outrider effectively on target repos: from dispatch to upstream. All commands here are ones I've actually used in practice; nothing speculative. ## When to use - Setting up Outrider on a new target repo - Dispatching a manual refinement / smoke run - Diagnosing why a run downgraded to Issue or opened at a different outcome than expected - Deciding whether an Outrider-drafted PR is ready to file upstream - Cross-checking a paper against existing coordination signals on the target repo ## Set up Outrider on a target repo Fastest path — CLI-generated workflow with the right backend selected: ```bash remyxai outrider setup-local --repo owner/name --backend moonshot ``` Backends: `anthropic` (default, Opus), `zai` (GLM), `moonshot` (Kimi K3). Setup-local prompts only for the selected backend's secret; add others manually via `gh secret set ANTHROPIC_API_KEY --repo owner/name < token.txt` for per-dispatch switching. Manual install (when the CLI shape doesn't quite fit): copy the workflow YAML from `remyxai/outrider`'s `.github/workflows/outrider.yml` and thread the `interest-id` you get from `remyxai interests get -f json`. ## Trigger manually ```bash # Fresh recommend (let selection pass pick) gh workflow run outrider.yml --repo owner/name --ref main # Pin to a specific paper (skip selection) gh workflow run outrider.yml --repo owner/name --ref main \ -f pin-arxiv=2509.09675v1 \ -f provider=moonsho...

Details

Author
remyxai
Repository
remyxai/outrider
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

remyxai

Guidance for using `remyxai-cli` — managing research interests, querying paper recommendations, dispatching Outrider action runs, and running batched design-review cycles. Trigger when the user mentions Outrider, GitRank, paper recommendations, `remyxai` commands, or research-implementation workflows against a target repo.

16 Updated 2 days ago
remyxai
Code & Development Listed

review

Review, audit, sanity-check, look-at any review-able target. Triggers on a GitHub PR URL (fetched via the gh CLI), a local path or "." (review the working tree), a markdown/doc file, or a comment-thread URL. Read-only by default; --fix applies accepted findings locally and pushes to the PR branch after confirmation (never force, never merge, never to a protected branch). Produces severity-tiered findings (blocker / critical / should / may / nit) with path:line and <=15-word verbatim evidence quotes. Six dimensions: correctness, tests, security, performance, readability, consistency. For a deep PR review with cross-file code-context retrieval, use /adk:pr-review.

0 Updated 4 days ago
sujeet-pro
Code & Development Solid

test-runner

Use this skill when orchestrating agentic end-to-end tests. Resolves target + profile, dispatches the right driver(s) (playwright for web today, peekaboo for macOS (issue #381)), invokes the ux-evaluator agent (opus, read-only) against driver artifacts, reconciles findings with the open issue tracker via scripts/lib/test-runner/issue-reconcile.mjs, and writes report.md + JSONL roll-up. Wraps upstream tools (no forks). Hard-gates Playwright MCP for browser drive (4× token cost vs CLI per Microsoft's own benchmark).

48 Updated today
Kanevry