Offloading is not automatically bad
Humans have always offloaded cognition into tools: writing, maps, calculators, search engines, issue trackers, and software tests. The problem is not offloading. The problem is substitution without learning, audit, or exit.
A model-breeding site should therefore teach a boundary: use AI to expand what humans can understand and build, not to make humans progressively less capable of acting without the system.
Scaffolding versus substitution
| Pattern | Good use | Failure mode |
|---|---|---|
| Scaffolding | shows reasoning steps, asks for review, builds user skill | may be slower in the short term |
| Substitution | completes tasks with no user understanding | skill atrophy and hidden dependency |
| Delegation | transfers bounded work with evidence | owner loses situational awareness |
| Automation | removes repetitive burden | hides edge cases and weakens judgment |
Capability retention tests
A mutualist system should periodically measure whether users and teams retain the ability to operate under reduced assistance.
FUNCTION capability_retention_test(team, workflow, policy)
baseline <- MEASURE_WITH_AI_ASSISTANCE(team, workflow)
reduced <- MEASURE_WITH_REDUCED_AI_ASSISTANCE(team, workflow)
recovery <- MEASURE_AFTER_RETRAINING(team, workflow)
IF reduced.quality < policy.minimum_unassisted_quality
RETURN OPEN_RISK("Team cannot operate safely without the system")
END IF
IF recovery.time > policy.maximum_recovery_time
RETURN OPEN_RISK("Knowledge is not retained")
END IF
RETURN PASS
END FUNCTIONInterface rules
A capability-preserving interface should expose uncertainty, cite evidence, require confirmation for irreversible steps, invite user correction, and explain trade-offs at the level the user can act on. It should not optimize only for engagement, speed, or the appearance of confidence.
Operational policy
For critical workflows, run periodic low-assistance drills. Rotate humans through review roles. Keep documentation current. Make export paths real. Track whether AI-generated decisions can be explained by people responsible for them.
Connection to model breeding
A model population can become more capable while its human operators become less capable. That is a governance failure. Add human-capability metrics to the ecological fitness function so the system evolves toward empowerment rather than captivity.
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.