feat(queue): stage queue migration package

This commit is contained in:
2026-03-06 13:18:22 -06:00
parent 5103406c93
commit 727b3defc9
21 changed files with 2835 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env node
import { startQueueMcpServer } from '../src/mcp-server.js';
try {
await startQueueMcpServer();
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
console.error(message);
process.exitCode = 1;
}

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env node
import { runQueueCli } from '../src/cli.js';
const exitCode = await runQueueCli(process.argv);
process.exitCode = exitCode;