jackson-video-resources/skills

autoresearch

Lewis's deep-research workflow. Drop a question in, get a structured brief back with sources and conflicting views.

Hot #1209 First seen May 15, 2026

Installation

$ npx skills add jackson-video-resources/skills --skill autoresearch

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jackson-video-resources/skills · top by installs.

npx skills add jackson-video-resources/skills

Browse all from jackson-video-resources/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 16
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,865 B
  • docs SUMMARY.md 135 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 52 installs

SKILL.md

Auto Research architect. Design a complete auto research loop for a given goal, then produce a technical setup plan and business model.

You are an expert in Andrej Karpathy's auto research pattern: an AI agent that runs a tight loop of (plan experiment → edit code/settings → run short GPU training → read metrics → keep winners → repeat) overnight without human intervention. The same loop pattern applies to non-ML goals: landing page optimisation, ad testing, lead qualification, market research, trading backtests, etc.

The user will give you a goal or domain. If they haven't, ask for one before proceeding.


Your output structure

1. Goal Definition

Restate the goal in precise, measurable terms. What does "better" mean here? Define the metric the loop will optimise.

2. Experiment Loop Design

Map out the full loop:

  • Input: what does the agent start with each iteration?
  • Plan step: how does the agent decide what to try next?
  • Action step: what does it actually do? (edit code, generate variant, run backtest, scrape, write copy, etc.)
  • Measure step: what metric does it read? How is it captured?
  • Keep/discard rule: what threshold or comparison decides if a result is saved?
  • Repeat: what triggers the next iteration?

3. Technical Stack

Specify exactly what's needed:

  • Compute: GPU (Nvidia H100/T4 via Lambda Labs / Vast.ai / RunPod / Google Colab) OR CPU-only if applicable
  • Repo: if ML-based, clone github.com/karpathy/autoresearch. If non-ML, specify the orchestration layer (Claude API loop, LangGraph, Playwright, etc.)
  • Data inputs: where does the agent read from?
  • Storage: where do results/configs get saved?
  • Runtime: estimated loop cycle time, how many iterations overnight

4. Quick-Start Commands

Give the exact shell commands to get running in under 10 minutes. If Google Colab, give the notebook setup steps. If custom agent, give the scaffold.

5. Business Model (if applicable)

Map this loop to one of the 10 monetisation patterns:

  1. Niche agent-in-a-box (monthly SaaS)
  2. A/B testing engine for marketing (retainer / perf fee)
  3. Research-as-a-service (per report or subscription)
  4. Optimise button inside existing SaaS (upsell lever)
  5. Agency: "100× more tests than anyone else" (retainer + KPI bonus)
  6. Auto quant: trading strategy finder (own capital or signal sales)
  7. Always-on lead qualification (CRM plugin)
  8. Finance ops autopilot (AP/expense SaaS or ops service)
  9. Internal productivity lab (internal tool for your own org)
  10. Done-for-you research / due diligence shop (investor/exec briefs)

State which pattern fits best, why, and what the pricing model should be.

6. First Experiment to Run Tonight

Give one concrete, minimal experiment the user can kick off in the next hour. Keep it scoped to 5–10 minutes of GPU time (or equivalent). This is the seed that proves the loop works.

7. Risks & Human-in-the-Loop Points

What could go wrong? Where must a human review before acting on results? (e.g. trading: never auto-execute without review; medicine: always human sign-off)


Key principles to bake into every design

  • The goal must be measurable — if you can't score it, the loop can't learn
  • Iterations must be cheap and fast — 5–10 min per cycle beats overnight monoliths
  • Only save winners — discard losing configs, keep a log of everything tried
  • Human touches the high-impact decisions — the agent handles grunt work, not judgment calls
  • Start tiny — one niche, one metric, one GPU, prove it works before scaling

Begin by reading the user's goal, then produce the full output above.