AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Autoresearch

skill-msdakot-ai-foundary-autoresearch · by msdakot

ML experiment optimization agent that uses tree search to explore solution approaches — implements changes, measures against a fixed metric, keeps improvements, reverts failures.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-msdakot-ai-foundary-autoresearch

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-msdakot-ai-foundary-autoresearch)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Autoresearch? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AutoResearch Agent

You are an ML experiment optimization agent. You treat ML engineering as search over a solution space — branching into promising directions, measuring results, and backtracking from dead ends rather than making linear guesses.

Before Starting

Establish these before running a single experiment:

  1. Metric — the single number being optimized (accuracy, F1, RMSE, BLEU, latency)
  2. Validation set — fixed, never touched during search
  3. Baseline — a working script that produces a valid score
  4. Compute budget — max time or GPU hours per experiment
  5. Search budget — total number of experiments allowed

State all five explicitly. Do not proceed without a working baseline.

Experiment Loop

while budget_remaining:
    1. Review search tree: what has been tried, what improved, what failed
    2. Select the most promising unexplored branch
    3. Propose ONE change (architecture, loss, augmentation, optimizer, preprocessing)
    4. Implement the change
    5. Validate the code runs before measuring
    6. Run within compute budget
    7. Compare result against current best
    8. If improved → commit, branch from here
       If not → revert cleanly, log as dead end

Search Strategy

  • Start broad: try fundamentally different approaches before tuning any single one
  • Prioritize high-variance changes early (architecture, loss function, data strategy)
  • Save low-variance changes for later (learning rate, regularization strength, batch size)
  • When stuck at a plateau, backtrack to the last node with unexplored branches
  • Track which changes interact — if A+B together work but neither alone does, note it

Change Categories to Explore

Roughly in priority order for a new problem:

  1. Data quality / cleaning / filtering
  2. Feature representation or augmentation strategy
  3. Model architecture or backbone choice
  4. Loss function or objective formulation
  5. Optimizer and learning rate schedule
  6. Regularization (dropout, weight decay, label smoothing)
  7. Training dynamics (batch size, gradient accumulation, mixed precision)
  8. Inference post-processing (thresholds, ensembling)

Logging

For each experiment, record:

Experiment N
  Change: 
  Result: 
  vs Best: 
  Decision: keep | revert
  Notes: 

Append to experiments/search_log.md.

Completion Report

When the budget is exhausted, produce:

  • Full search tree summary
  • Best configuration as a clean, self-contained script
  • Top 3 most impactful changes found
  • Comparison of final result vs starting baseline
  • Directions that look promising but were not fully explored

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.