W&B Autoresearch

Run bounded, evidence-driven training research through W&B Launch: smoke-test real jobs, execute serial trials, compare metrics and…

You say
Buy it · $45 Read it before you buy $45 Written by wandb · unverified publisher
Context cost
3.5k tokensestimated from the bundle, loaded when it triggers
Bundle
6 files · 14.2 kB2 scripts among them — read before you run
Licence
Apache-2.0paid listing
Last change
no release on file
Servers it uses
Noneruns standalone

What it does

Run bounded, evidence-driven training research through W&B Launch: assess project readiness, establish launchable code and queue capacity, smoke-test real jobs, execute serial trials, compare metrics, and persist resumable research state. Use when a coding agent is asked to autonomously test training hypotheses or tune a real W&B-tracked workload.

Installed, it changes the agent in these ways.

What this skill changes about the agent is not written down here yet. The listing was collected from its source, and the description is in its own SKILL.md.

Workflow

Runs a procedure end to end.

wandbexperiment-trackinghyperparameterstraining

The skill itself

This is the whole product. A skill is instructions the model reads, so there is nothing behind the listing you cannot see first — the front matter loads with every session, and the body below it loads when the skill triggers.

SKILL.md3.2 kB · 72 lines
--- name: wandb-autoresearch description: "Run bounded, evidence-driven training research through W&B Launch: assess project readiness, establish launchable code and queue capacity, smoke-test real jobs, execute serial trials, compare metrics, and persist resumable research state. Use when a coding agent is asked to autonomously test training hypotheses or tune a real W&B-tracked workload." ---
5<!--
6SPDX-FileCopyrightText: 2026 CoreWeave, Inc.
7SPDX-License-Identifier: Apache-2.0
8SPDX-PackageName: skills
9-->
10
11# W&B autoresearch
12
13Use W&B Launch to execute real training experiments, read their results, and
14choose the next bounded trial. Do not create a local wandb.init() run as a
15substitute for compute that was supposed to run through Launch.
16
17The Launch implementation lives in skills/wandb-primary:
18
19- skills/wandb-primary/scripts/launch_helpers.py
20- the Launch section in skills/wandb-primary/SKILL.md
21
22Install missing packages explicitly with uv; do not assume a fixed working
23directory or preinstalled environment.
24
25## Flow
26
27Read only the reference for the current stage:
28
29| Stage | Entry condition | Read |
30|---|---|---|
31| Understand | Always first; inspect launchable code, queue capacity, data location, and prior state | references/understand.md |
32| Set up | Launchable code or usable queue capacity is missing | references/setup.md |
33| Search | Launchable code and queue capacity both exist | references/search.md |
34
35The readiness gate is launchable code + queue with usable capacity. A dataset
36may be a versioned Artifact or may be supplied by the code/image; its storage
37form alone does not determine readiness.
38
39## Experiment records
40
41Use each W&B object for one job:
42
43- Runs hold trial config, metrics, system metrics, status, and code/job lineage.
44- Job or code Artifacts make code relaunchable.
45- Dataset Artifacts provide versioned inputs when the workload needs them.
46- Launch queues and agents provide compute.
47- A small local markdown file holds the hypothesis, trial tally, decisions,
48 queue, and next step.
49
50Keep local state at a user-visible path in the current project or a path the
51user supplied. Sync it to a W&B Artifact only when cross-session resume is
52useful and the user authorizes the write:
53
54```bash
55S=skills/wandb-autoresearch/scripts/autoresearch_state.py
56uv run --with wandb python "$S" load ENTITY PROJECT --dest .
57uv run --with wandb python "$S" save ENTITY PROJECT --path AUTORESEARCH_STATE.md
58```
59
60## Compute safety
61
62- Confirm the queue, metric direction, search axis, and trial/compute budget
63 before the first non-smoke launch. Do not exceed the agreed budget.
64- Smoke-test the real job at a deliberately small setting before full trials.
65- Change only config fields the program actually reads. Use a code edit and a
66 new job Artifact for architecture or pipeline changes.
67- Run trials serially unless the user explicitly authorizes parallel compute.
68 Inspect each completed result before selecting the next trial.
69- Report failures, hardware utilization, and uncertainty. Re-run a likely
70 winner with another seed when the apparent gap could be noise.
71- Never fabricate a run, metric, queue result, or completion state.
72
In the file
SKILL.md467 words
Files6
LicenceApache-2.0
Why you can read it

Nothing in a skill executes. The client loads the text and the model follows it, so a skill can be audited the way a runbook is — by reading it.

What it costs in context

Skills are not billed by the call. They are paid for in context: every token the instructions occupy is a token your code, your diff and your conversation cannot use. Here is what this one takes and when it takes it.

≈100
always loaded
The name and description, so the model knows the skill exists and when to reach for it.
3,450
on trigger
The instruction body and 5 supporting files, read only when the skill fires.
1.8%
of a 200k window
Ten skills this size would take about 18% of the window before you open a file.
050k100k150k200k context window

3.5k tokens, estimated from the bundle at four bytes to the token, held for the rest of the session once it triggers. Middling. Fine to keep on in a project where you use it weekly, worth unloading in one where you never do.

Servers bill, skills cost

A server charges by the month. A skill charges once per session, in context, and then keeps charging it for as long as the session lives.

Before and after

The same question, put to the same model twice: once as it comes, and once with these instructions loaded.

No worked example has been published for this skill yet.

Adoption
Installsnone yet
Ratingno reviews yet

The procedure it runs

The procedure has not been published here. It is in the skill’s own SKILL.md, which its author has not sent to the marketplace yet.

Prose, not code

These steps are written for a model to follow, not executed by a runtime. It can still be told to skip one, and it will say so when it does.

Servers it uses

None. This skill calls no MCP servers at all.

Everything it needs is in the instructions, so it works in a project with nothing connected — the model reads the file and changes how it works with what it can already reach.

It writes no files and reaches no network. All it changes is how the model reasons and writes.

What it asks for
Writes filesno
Network accessno

Read from the allowed-tools line of this skill’s own SKILL.md. A skill grants no permissions of its own — it can only ask for tools your client already has.

What it will not do

Every skill is narrow, and the useful ones say where they stop. These are the jobs this one is the wrong tool for.

What this skill is not for has not been published here. Nothing is implied by that: it is a section the author has not filled in.

What is in the bundle

6 files, 14.2 kB on disk. Mostly text — the instructions the model reads — with 2 scripts in it that your client would run only if the instructions tell it to.

  • SKILL.md3.2 kB
  • references/search.md2.4 kB
  • references/setup.md2.1 kB
  • references/understand.md2.0 kB
  • scripts/autoresearch_state.py0.3 kB
  • scripts/autoresearch_state_impl.py4.2 kB
What is not in it

A skill installs nothing and depends on nothing: it is a folder your client reads. This one carries 2 scripts beside the text, so the bundle is 6 files you can review in full before installing. The Apache-2.0 licence covers the templates and examples as well as the instructions.

Install

Installing copies the bundle into your project. Nothing runs at install time — the files sit on disk until the model reads them.

$45 once
W&B Autoresearch · Apache-2.0 · wandb
one-time
Price$45 once
LicenceApache-2.0 — the author’s, unchanged by this purchase
Paid throughStripe, once, on the card you add at the checkout
Keeps workingfor good — the files are yours once they are on disk
Updatesevery update its author ships, delivered through this account

You can read the whole bundle before paying — the SKILL.md above is the product, not a preview of it. What the money buys is the delivery: the folder packaged and handed to your machine by key, every update its author ships, and our support if it does not do what this listing says. The terms of use are Apache-2.0, set by the author and unchanged by buying it here.

Payment runs through Stripe, on a page like this one rather than a redirect. Once there is an account it joins the same mcprush invoice as everything else you run, so there is never a second card to enter.

Which clients pick it up on their own

A skill is a folder of text. A client with a skills folder reads it without being told; everywhere else the same text works, it is just handed to the model rather than found.

Claude Code.claude/skills/
Claude Desktop
ChatGPT
Cursor.cursor/skills/
VS Code.github/skills/
Codex CLI.agents/skills/
Gemini CLI.gemini/skills/
Grok.grok/skills/
Zed.agents/skills/
Windsurf.windsurf/skills/
Agent SDK.claude/skills/
HTTP / API
This release
Versionnot versioned
Publishedno release date on file
Price$45
Referencewandb/w-b-autoresearch

Versions

Its author publishes no version number, so there is nothing here to pin to: what you install is the folder as it stands today. Instructions change more often than APIs do — a skill can be rewritten entirely without anything it depends on moving.

v
  • No earlier releases have been published to the marketplace.
Pinning

Nothing to pin to: this skill carries no version number of its own. What you install is what the folder holds on the day you install it.

Reviews

no reviews yet · no installs yet

Nobody has reviewed this skill yet. The rating is the mean of the reviews written here, so there is none until somebody writes the first.

Who can post

Only accounts that have had the skill installed for fourteen days, so a review is written after living with it rather than after reading it. Publishers may reply once.

Who wrote it

WA
wandb

Publishes on mcprush.

0 servers listed1 skill listednot claimed
Profile
Publisher
Servers0