38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
// Dispatches `bun scenario <ep | kp | email | knowledge> [flags]` to the matching
|
|
// agent seed. Flags (--count, --concurrency, --attach-plan, --skip-clear,
|
|
// --keep-existing) are read from process.argv by each seed and pass through.
|
|
import { runEmailPlatformSeed } from "./email-platform.js";
|
|
import { runKnowledgePlatformSeed } from "./knowledge-platform.js";
|
|
|
|
const scenarios = {
|
|
email: runEmailPlatformSeed,
|
|
ep: runEmailPlatformSeed,
|
|
knowledge: runKnowledgePlatformSeed,
|
|
kp: runKnowledgePlatformSeed,
|
|
} as const;
|
|
|
|
type ScenarioKey = keyof typeof scenarios;
|
|
|
|
const isScenarioKey = (arg: string): arg is ScenarioKey => arg in scenarios;
|
|
|
|
const run = async () => {
|
|
const key = process.argv.slice(2).find(isScenarioKey);
|
|
if (!key) {
|
|
console.error(
|
|
"Usage: bun scenario <ep | kp | email | knowledge> [--count N] [--concurrency N] [--attach-plan trial|enterprise] [--skip-clear] [--keep-existing]",
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
await scenarios[key]();
|
|
};
|
|
|
|
run()
|
|
.catch((error) => {
|
|
console.error("Scenario seed failed:", error);
|
|
process.exit(1);
|
|
})
|
|
.finally(() => {
|
|
process.exit(0);
|
|
});
|