static void ai_spec_giveMe(S chatLine) {
  S s = ai_textOfChatLine(chatLine);
  ret if s == null;
  ret if ai_hasAny("$X", "answers", chatLine);
  new Matches m;
  if (swic(s, "give me ", m) && swicOneOf(m.rest(), "a ", "an "))
    post(random(ai_texts("$X", "is", m.rest())), "answers", chatLine);
}