Evolution lab Intermediate 1 minute read Updated 2026-06-26 UTC

Capability transfer experiments

How to test whether a model ecology makes people better at the work instead of only making the interaction easier.

Research statusExperiment pattern Publication statePublished Reviewed byMichael Kappel Source reports3

Experiment purpose

A positive mutualist system should increase user capability. This requires measurement. The experiment asks: after using the system, can users perform a related task with less assistance than before?

Experimental design

PhaseActivity
BaselineUser performs task without the candidate.
AssistedUser completes similar task with the candidate.
ReflectionUser explains the reasoning in their own words.
TransferUser performs a new related task with reduced help.
RetentionUser repeats later after time delay.
pseudocode
FUNCTION capability_transfer_experiment(user, skill, candidate)
    baseline = test_without_ai(user, skill.task_a)
    assisted = test_with_ai(user, candidate, skill.task_b)
    explanation = score_user_explanation(user, skill.concepts)
    transfer = test_with_reduced_ai(user, skill.task_c)
    retention = schedule_later_test(user, skill.task_d)
    RETURN compare(baseline, assisted, explanation, transfer, retention)
END FUNCTION

Positive result

A successful candidate becomes a scaffold. It helps the user climb, then proves the user can stand higher afterward.

Source reports used for this guide

These reports are preserved verbatim in the site archive. The guide above is an editorial synthesis and may narrow, qualify, or reorganize claims from the source material.