UNPKG

agency-x

Version:

This project is a Claude-compatible, LLM-agnostic sub-agent framework that simulates a complete SaaS product team. It is delivered as a reusable, developer-ready NPM package.

10 lines (7 loc) 282 B
import { runOrchestrator } from './orchestratorAgent'; describe('runOrchestrator', () => { it('should return a context object with a specId', async () => { const result = await runOrchestrator({ feature: 'Test Feature' }); expect(result.specId).toBeDefined(); }); });