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.

19 lines (17 loc) 484 B
#!/usr/bin/env node import { runOrchestrator } from "../chunk-KDO4KRKV.mjs"; // src/cli/index.ts var args = process.argv.slice(2); var featureIndex = args.indexOf("--feature"); var feature = ""; if (featureIndex !== -1 && args[featureIndex + 1]) { feature = args[featureIndex + 1]; } if (!feature) { console.error("Please provide a feature description using the --feature flag."); process.exit(1); } var voice = args.includes("--voice"); runOrchestrator({ feature, voice });