sclass AI_WhatDidYouDoTodayBot > AttractorBot { Long now; run { say("What did you do today?"); } // CONFIG class Attractor1 > Attractor { S action; public bool matches(S s) { new Matches m; if "I ..." ret true with action = s; false; } run { say(switcheroo(action)); } } *() { standardAttractors(new Attractor1); } }