Add agents package

This commit is contained in:
2026-05-05 12:03:46 +00:00
commit 5ff0d80e7e
8 changed files with 163 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { referenceAgents } from '../ts/index.js';
tap.test('ships six reference agents', async () => {
expect(referenceAgents.length).toEqual(6);
expect(referenceAgents.map((agentArg) => agentArg.id)).toContain('comfort');
});
export default tap.start();