Traigent analyze variable importance
Skill Traigent/traigent-skills/skills/traigent-analyze-variable-importance
Agent skills for deploy and use Traigent
npx -y skills add Traigent/traigent-skills --skill traigent-analyze-variable-importanceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 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.
What its author says it does
Copied from the file, not written here
Show significant tuned variables and rank which variables mattered in a Traigent optimization. Use for: show significant tuned variables, which variables mattered, tuned variable importance, feature importance for optimization, optimization gains attribution, parameter importance with honest confidence labels, or one-glance video card summaries of what drove optimization gains.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
7.5 KB, as published. Nobody here has run it
Show Significant Tuned Variables
Purpose
Use this skill to explain which tuned variables actually drove an optimization's observed gains. It ranks configuration knobs by effect size, adds honest confidence labels, and emits a one-glance SVG video card suitable for demos or review.
The bundled script is designed for Traigent text2sql demo artifacts but works with any JSONL trial file that has a numeric objective and a config object.
When to Use
Use this skill when the user asks:
- "show significant tuned variables"
- "which variables mattered?"
- "tuned variable importance"
- "feature importance for optimization"
- "what drove the optimization gains?"
- "make a video card for the important knobs"
The script ranks knobs within one run's trials. For multi-run evidence, fetch the cohort table, export each run's rows to a separate per-run trials JSONL, run the script per run, and compare the rankings across runs. Do not concatenate runs into one file; mixed search spaces or objectives corrupt the ranking.
Inputs
The script accepts:
--trials: required JSONL, one trial per line. Each row must containconfigand a numeric objective such asaccuracy.--config-space: optional JSON object{knob: [values...]}. If absent, the script infers knobs and values observed in trials.--heldout: optional heldout report JSON withbaseline,optimized, anddelta. When present, the video card uses the heldout optimized-vs-baseline accuracy and cost deltas for context.--objective: objective field to maximize, typicallyaccuracy.
Expected trial shape:
{"accuracy": 0.58, "config": {"schema_context": "linked_top10", "fewshot_k": 5}, "mock_cost": 0.02052, "correct": 7, "total": 12, "trial_index": 8}
Outputs
The script writes these files into --output-dir:
importance.json: ranked tuned variables withknob,spread,variance_share,ci_low,ci_high,label,best_value,best_value_mean_acc, andcost_effect.importance.csv: flat CSV with the same fields.significant_variables.svg: hand-written 1280x720 dark-theme SVG with horizontal bars, bootstrap CI whiskers, best-value annotations, and a directional/significance caption.insights.md: short human-readable summary using honest claim language.video_card.json: compact payload:top_variables,n_trials,objective, andcaption.
Honesty Rule
Never overclaim significance:
- With fewer than 20 trials, importances are labelled
directional, not statistically significant. - A variable is called
significantonly if its bootstrap CI lower bound is greater than 0. - The ranking is observational: "on this fixed Spider slice, in this run." It is not proof of causal attribution.
The primary importance is the spread between the best and worst per-value mean objective. The script also reports variance-decomposition share: between-group variance divided by total variance.
Worked Example
Run with the Python interpreter where you installed the Traigent SDK (python3, or your project's
.venv/bin/python). Resolve <skill-dir> to the directory
containing this SKILL.md; plugin and flat-install locations differ.
python3 <skill-dir>/scripts/significant_tuned_variables.py \
--trials /path/to/02_trials.jsonl \
--heldout /path/to/07_heldout_report.json \
--objective accuracy \
--top-k 4 \
--confidence 0.9 \
--output-dir /tmp/significant-tuned-variables
Then inspect:
cat /tmp/significant-tuned-variables/importance.json
cat /tmp/significant-tuned-variables/video_card.json
Method Notes
For each knob, the script groups trials by the knob's value, computes mean objective per value, ranks by the max-min spread, and reports variance share as a companion statistic. Bootstrap confidence intervals use trial resampling with replacement and fixed seed 55.
The script also attempts to adapt trials to traigent.utils.importance.ParameterImportanceAnalyzer for a variance-based SDK cross-check. If that adaptation is unavailable or returns no output, it skips gracefully and states that the skill's own variance/bootstrap method was used, inspired by the SDK analyzer. Do not fabricate SDK analyzer output.
Traigent Interaction Policy
Track an interaction profile and adapt to it. Persona (stable): control=delegate|guided|inspect,
expertise=se|ds|unknown. Mood (this session): pace=execute|balanced|explore. Default when
unknown: guided,se,balanced. Infer from explicit user statements first, then recent behavior;
an explicit correction wins immediately. Never store or send this profile anywhere by default.
Fetch the live profile (when available)
At session or skill start, if a configured Traigent client is available, seed the profile from the backend with the skill name:
policy = None
try: policy = await client.get_interaction_policy(skill="<this skill>")
except Exception: pass
Treat the returned profile as the STARTING seed: its control/expertise/pace axes plus
question_budget, options_max, and jargon_level replace the static defaults below. Explicit user
corrections in-conversation ALWAYS override the seed. If the call is unavailable or
fallback_policy="static_v1", simply use the static defaults below; the SDK already fails soft.
- Always be concise.
- Match terminology to expertise. For
se: plain engineering words; define each Traigent or statistics term once in plain language (no Bayesian / variance-decomposition / Pareto jargon unless asked). Fords: compact optimization and statistical terms are fine. - Presenting options: show at most 3, mark exactly one Recommended, and give one short persona-appropriate trade-off per option.
- Autonomy. For
delegateorexecute: pick the recommended reversible action and proceed, asking only at hard gates. Forguided: offer options with a recommendation at the key decisions. Forinspectorexplore: give brief rationale or evidence before asking, and ask before branch choices. - Hard gates — always confirm regardless of persona: paid or provider model calls, sending data or private content off the machine, destructive edits, decisions the Traigent service is meant to return, and any missing fact the step truly requires.
- Always end by recommending the next Traigent skill or action to take.
- Never weaken Traigent safety: dry-run before any paid run; get explicit approval before real cost or before any data leaves the machine; treat service-returned plans and next steps as authoritative. Never put the persona profile or any private content into telemetry, run metadata, experiment names, logs, or provenance files.