feat(cli): expose bb agent coordination commands

This commit is contained in:
ZenchantLive 2026-03-03 18:26:07 -08:00
parent 1ba74e9966
commit 114c227874
2 changed files with 282 additions and 1 deletions

View file

@ -20,3 +20,9 @@ test('uninstall requires --yes', async () => {
assert.equal(out.ok, false);
assert.match(String(out.error), /--yes/);
});
test('agent list routes to coordination CLI surface', async () => {
const out = await runCli(['agent', 'list', '--json']);
assert.equal(typeof out.command, 'string');
assert.equal(out.command, 'agent list');
});