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.

8 lines (6 loc) 184 B
interface OrchestratorOptions { feature: string; voice?: boolean; } declare const runOrchestrator: (options: OrchestratorOptions) => Promise<any>; export { runOrchestrator };