verbs property
Verbs exposed to JS. The bridge installs one JS function per verb
on host.<key>. Empty list = no methods (the atom registers but
JS calls always fail).
Implementation
@override
List<AtomVerb> get verbs => const [
AtomVerb(
'invoke',
description: 'Ask an agent (agentId, message) → reply text.',
),
AtomVerb(
'list',
description: 'List registered agent ids.',
),
];