feat(skill): wire bd mail delegate via bb shim

This commit is contained in:
ZenchantLive 2026-03-03 18:35:29 -08:00
parent dcca324bfb
commit d1b81250b2
4 changed files with 147 additions and 1 deletions

View file

@ -0,0 +1,27 @@
import test from 'node:test';
import assert from 'node:assert/strict';
import path from 'node:path';
import { execFile } from 'node:child_process';
import { promisify } from 'node:util';
const execFileAsync = promisify(execFile);
const shimPath = path.resolve('skills/beadboard-driver/scripts/bb-mail-shim.mjs');
test('bb-mail-shim fails with helpful error when bb is unavailable', async () => {
await assert.rejects(
async () => {
await execFileAsync(process.execPath, [shimPath, 'inbox'], {
env: {
...process.env,
PATH: '',
BB_AGENT: 'silver-scribe',
},
});
},
(error: any) => {
const stderr = String(error.stderr || '');
assert.match(stderr, /bb command not found/i);
return true;
},
);
});