Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

autoresearch自动研究

Agent Skill

autoresearch 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,294

周安装

55

GitHub Stars

51

下载量

453
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:autoresearch(自动研究)
来源仓库:https://github.com/paulrberg/agent-skills
仓库路径:skills/autoresearch
安装命令:
npx skills add https://github.com/paulrberg/agent-skills --skill autoresearch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/paulrberg/agent-skills --skill autoresearch

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词快速定位候选结果。
  • 通过 npx 安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写。
  • autoresearch 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Autoresearch

Autonomous experiment loop: try ideas, measure results, keep what works, discard what doesn't, never stop.

Works for any optimization target: test speed, bundle size, LLM training, build times, Lighthouse scores, binary size, latency, memory usage.

Setup

If autoresearch.md already exists in the working directory, skip setup and resume the loop — read autoresearch.md, autoresearch.jsonl, and git log, then continue experimenting.

Otherwise:

  1. Gather context: Ask (or infer from $ARGUMENTS and conversation) the Goal, Command to benchmark, Primary metric (name + direction), Files in scope, and Constraints.
  2. Create branch: git checkout -b autoresearch/<goal>-<date> (e.g. autoresearch/test-speed-2026-03-21).
  3. Read source files: Understand the workload deeply before writing anything. Read every file in scope.
  4. Write session files: Create autoresearch.md and autoresearch.sh (see templates below). If constraints require correctness validation (tests must pass, types must check), also create autoresearch.checks.sh. Commit all.
  5. Run baseline: Execute the first experiment with no changes to establish the baseline metric.
  6. Start looping: Begin the experiment loop immediately after the baseline is logged.

autoresearch.md

The heart of the session. A fresh agent with no context should be able to read this file alone and run the loop effectively. Invest time making it excellent.

# Autoresearch: <goal>

## Objective
<Specific description of what we're optimizing and the workload.>

## Metrics
- **Primary**: <name> (<unit>, lower/higher is better)
- **Secondary**: <name>, <name>, ...

## How to Run
`./autoresearch.sh` — outputs `METRIC name=value` lines.

## Files in Scope
<Every file the agent may modify, with a brief note on what it does.>

## Off Limits
<What must NOT be touched — evaluation harness, data prep, etc.>

## Constraints
<Hard rules: tests must pass, no new deps, fixed time budget, etc.>

## What's Been Tried
<Update this section as experiments accumulate. Note key wins, dead ends,
and architectural insights so the agent doesn't repeat failed approaches.>

Update autoresearch.md periodically — especially "What's Been Tried" — so resuming agents have full context.

autoresearch.sh

Bash script that runs the benchmark and outputs structured metrics.

#!/bin/bash
set -euo pipefail

# Pre-checks (fast, <1s — catch syntax errors early)
python3 -c "import ast; ast.parse(open('train.py').read())"

# Run benchmark
uv run train.py > /tmp/autoresearch-output.log 2>&1

# Extract and output metrics as METRIC lines
val_bpb=$(grep "^val_bpb:" /tmp/autoresearch-output.log | awk '{print $2}')
echo "METRIC val_bpb=$val_bpb"

Rules:

  • Use set -euo pipefail.
  • Output METRIC name=value lines to stdout (one per metric). The primary metric name must match what's documented in autoresearch.md.
  • Metric names: word chars, dots, or µ (e.g. val_bpb, total_µs, bundle.size_kb).
  • Keep the script fast — every second is multiplied by hundreds of runs.
  • For fast/noisy benchmarks (<5s), run multiple times inside the script and report the median.
  • Update the script during the loop as needed.

autoresearch.checks.sh (optional)

Backpressure checks: tests, types, lint. Only create when constraints require correctness validation.

#!/bin/bash
set -euo pipefail
pnpm test --run --reporter=dot 2>&1 | tail -50
pnpm typecheck 2>&1 | grep -i error || true

When this file exists:

  • Run it after every passing benchmark (exit 0).
  • If checks fail, log the experiment as checks_failed and revert.
  • Check execution time does NOT affect the primary metric.
  • Keep output minimal — suppress verbose progress, only show errors.

When this file does not exist, skip checks entirely.

The Experiment Loop

LOOP FOREVER. Never ask "should I continue?" — the user expects autonomous work.

Each iteration:

  1. Formulate hypothesis: Based on prior results, source code understanding, and any ideas in autoresearch.ideas.md, choose what to try next.
  2. Edit code: Modify the in-scope files. Make a single, focused change per experiment.
  3. Commit: git add -A && git commit -m "<short description of what this experiment tries>"
  4. Run benchmark: timeout 600./autoresearch.sh > run.log 2>&1 If the command times out or crashes, treat it as a failure.
  5. Parse metrics: Extract METRIC lines from the output: grep '^METRIC ' run.log If no METRIC lines found, the run crashed — read tail -50 run.log for the error.
  6. Run checks (if autoresearch.checks.sh exists and benchmark passed): timeout 300./autoresearch.checks.sh > checks.log 2>&1
  7. Evaluate and log:

- Improved (primary metric better than best so far) → status keep. The commit stays. - Worse or equal → status discard. Revert: stage autoresearch files first, then reset. - Crash (benchmark failed) → status crash. Fix if trivial, otherwise revert and move on. - Checks failed → status checks_failed. Revert.

  1. Log to JSONL: Append one line to autoresearch.jsonl: {"run":1,"commit":"a1b2c3d","metric":0.9979,"metrics":{"val_bpb":0.9979,"peak_vram_mb":45060.2},"status":"keep","description":"baseline","timestamp":1711036800000,"confidence":null}
  2. On discard/crash/checks_failed — revert code changes: # Preserve autoresearch session files, revert everything else git add autoresearch.jsonl autoresearch.md autoresearch.sh autoresearch.ideas.md autoresearch.checks.sh 2>/dev/null || true git checkout --. git clean -fd
  3. Check confidence: After 3+ runs, run the confidence script from the skill's installation directory: bash "$(dirname "$(readlink -f "$0")")/scripts/confidence.sh" Or locate it via the skill path and run it directly. Interpret the score:

- >= 2.0x: Improvement is likely real (green). - 1.0-2.0x: Above noise but marginal (yellow). - < 1.0x: Within noise — consider re-running to confirm (red).

  1. Update session: Periodically update autoresearch.md "What's Been Tried" section and run the summary script to review progress.

Repeat forever until interrupted.

JSONL Schema

Each line in autoresearch.jsonl is a JSON object:

FieldTypeDescription
runnumber1-indexed experiment count
commitstringShort git SHA (7 chars)
metricnumberPrimary metric value
metricsobjectAll metrics dict (primary + secondary)
statusstringkeep, discard, crash, or checks_failed
descriptionstringWhat this experiment tried
timestampnumberUnix timestamp (ms)
confidencenumber or nullMAD-based confidence score (null if <3 runs)

Resuming

When autoresearch.md exists in the working directory:

  1. Read autoresearch.md for full context (objective, what's been tried, constraints).
  2. Read autoresearch.jsonl to reconstruct state (best metric, run count, last segment).
  3. Read git log --oneline -20 for recent commit history.
  4. Check autoresearch.ideas.md if it exists — prune stale entries, experiment with promising ones.
  5. Continue the loop from where it left off. Do not re-run the baseline.

Ideas Backlog

When you discover complex but promising optimizations you won't pursue right now, append them as bullets to autoresearch.ideas.md. Don't let good ideas get lost.

On resume, check this file — prune stale/tried entries, experiment with the rest. When all paths are exhausted, delete the file and write a final summary to autoresearch.md.

Loop Rules

See references/loop-rules.md for the full reference. Key rules:

  • Primary metric is king. Improved → keep. Worse/equal → discard.
  • Simpler is better. Remove code for equal perf = keep. Ugly complexity for tiny gain = discard.
  • Don't thrash. Repeatedly reverting the same idea? Try something structurally different.
  • Think longer when stuck. Re-read source files, reason about what the CPU/compiler/runtime is actually doing. Deep understanding beats random variation.
  • Crashes: fix if trivial (typo, missing import), otherwise log and move on. Don't over-invest.
  • NEVER STOP. The user may be away for hours. Keep going until interrupted.

User Messages During Experiments

If the user sends a message while an experiment is running, finish the current run-evaluate-log cycle first, then incorporate their feedback in the next iteration.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.42%
按下载量换算165

Claude

31.84%
按下载量换算144

Cursor

17.88%
按下载量换算81

Gemini CLI

9.5%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills