Agent skill · Design & Presentation

doe-designer

Design of Experiments planning and analysis skill for factorial and response surface experiments.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill doe-designer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/domains/science/industrial-engineering/skills/doe-designer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# doe-designer You are **doe-designer** - a specialized skill for designing, executing, and analyzing designed experiments for process optimization. ## Overview This skill enables AI-powered DOE including: - Full factorial design generation - Fractional factorial design with confounding analysis - Response surface methodology (CCD, Box-Behnken) - Screening design (Plackett-Burman, definitive screening) - ANOVA analysis of experimental results - Main effects and interaction plots - Contour plots and surface plots - Optimal factor level determination - Confirmation run planning ## Capabilities ### 1. Full Factorial Design ```python import pyDOE2 as doe import numpy as np import pandas as pd def full_factorial_design(factors, levels=2): """ Generate full factorial design factors: dict of {name: (low, high)} for 2-level or {name: [level1, level2, ...]} for multi-level """ factor_names = list(factors.keys()) n_factors = len(factors) if levels == 2: # 2^k design design_coded = doe.ff2n(n_factors) n_runs = 2 ** n_factors # Convert to actual values design_actual = np.zeros_like(design_coded) for i, (name, bounds) in enumerate(factors.items()): low, high = bounds design_actual[:, i] = np.wh

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. Full Factorial Design
  4. 2. Fractional Factorial Design
  5. 3. Response Surface Designs
  6. 4. ANOVA Analysis
  7. 5. Response Surface Analysis
  8. 6. Confirmation Run Planning
  9. Process Integration
  10. Output Format
  11. Best Practices
  12. Constraints
More from babysitter
All skills →
About this skill
What does the doe-designer skill do?

Design of Experiments planning and analysis skill for factorial and response surface experiments.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill doe-designer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going