agentsclimarketplace

Research design

Skill kinhluan/skills/.agent-skills/research-design

Design a rigorous experiment protocol including methodology choice, baselines, metrics, ablation studies, and reproducibility plan. Use before running any experiment, when designing evaluation strategy, or when reviewing experimental validity.From its SKILL.md

Install
npx -y skills add kinhluan/skills --skill research-design

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

4.8 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Research Design

Design experiments before running them. Bad design wastes months.

Workflow

Step 1 — Methodology Paradigm

Choose one and justify:

ParadigmWhen to use
SimulationCan't control real environment; FL, scheduling, network protocols
Controlled experimentCan manipulate variables; lab conditions
Real-world datasetBenchmark comparison; image/NLP tasks
User studyMeasuring human factors
Theoretical analysisProving bounds, convergence, complexity
Design Science Research (DSR)Build + evaluate artifact in real context

Step 2 — Variables

Independent variables (you manipulate):
  - [var1]: values [a, b, c]
  - [var2]: values [x, y]

Dependent variables (you measure):
  - [metric1]: [how measured]
  - [metric2]: [how measured]

Controlled variables (you fix):
  - [setting1]: value [X]
  - [setting2]: value [Y]

Confounding variables (potential threats):
  - [threat1]: [how mitigated]

Step 3 — Baselines Selection

Rule: choose baselines that represent each major paradigm in your SOTA taxonomy.

BaselinePaperWhy includedCode available?
[Method A]Author et al. (year)Best published result on [metric]✅ github.com/...
[Method B]Author et al. (year)Representative of [approach class]
[Naive/Oracle]N/ALower/upper boundtrivial

Avoid: cherry-picked weak baselines, baselines without code, outdated methods unless they're the canonical comparison.

Step 4 — Metrics

Primary metric (1): drives all main comparisons — must directly measure what your RQ claims to improve.

Secondary metrics (2-4): provide context — efficiency, robustness, scalability.

Metric formulas — write them explicitly:

Accuracy = (TP+TN) / (TP+TN+FP+FN)
Communication cost = Σ(rounds × message_size_MB)
Convergence speed = rounds_to_reach_target_accuracy

Statistical significance:

  • Run ≥5 seeds, report mean ± std
  • Use Wilcoxon signed-rank test (non-parametric) or paired t-test
  • Report effect size (Cohen's d)

Step 5 — Ablation Study Design

Identify your method's key components. Test each one by removing/replacing it:

VariantDescriptionExpected effect
Full modelAll componentsBest
w/o [component A]Remove AShows A's contribution
w/o [component B]Remove BShows B's contribution
[component A] replaced with [baseline]Shows your design choice matters

Step 6 — Dataset / Environment

dataset:
  name: [dataset name]
  source: [URL or paper]
  size: [N samples / N clients / N episodes]
  split: train/val/test = X%/Y%/Z%
  preprocessing: [steps]
  why_chosen: [relevance + availability + used by baselines]

hardware:
  GPU: [model, VRAM]
  CPU: [cores]
  RAM: [GB]
  estimated_runtime: [per experiment]

Step 7 — Reproducibility Checklist

  • Fixed random seeds for all experiments
  • All hyperparameters documented in one config file
  • Dataset preprocessing steps scripted (not manual)
  • All baselines run with same compute budget
  • Environment: requirements.txt or environment.yml or Dockerfile
  • Results logged to file (not just stdout)
  • Code pushed to version control before experiments

Output Format

## Experiment Design: [Your Method Name]

**Paradigm:** [choice + 1-line justification]

**RQ being tested:** [paste from research-question]

### Variables
- Independent: ...
- Dependent: ...
- Controlled: ...

### Baselines
| Baseline | Source | Role |
...

### Metrics
- Primary: [metric] — measures [what]
- Secondary: [metric1, metric2]

### Ablation Plan
| Variant | Removes | Tests |
...

### Datasets/Environments
...

### Statistical Analysis
- N runs: [≥5]
- Significance test: [which test]
- Reporting: mean ± std

Links to Other Skills

  • Requires → research-question (RQ defines what you measure)
  • Requires → sota-survey (baselines come from here)
  • Feeds into → experiment-tracking (run the protocol)
  • Feeds into → paper-writing (Methodology section)

What ships with it: 2 files

3.9 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 326,764. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.