UNPKG

roocommander

Version:

Bridge Claude Code skills to Roo Code with intelligent orchestration. CLI tool + Custom Mode + 60+ production-tested skills for Cloudflare, AI, Frontend development.

24 lines 707 B
#!/usr/bin/env node "use strict"; /** * Roo Commander v9 - CLI Entry Point * * Bridges Claude Code skills to Roo Code by reading from ~/.claude/skills/ * and providing commands to list, read, search, and integrate skills. */ Object.defineProperty(exports, "__esModule", { value: true }); const cli_js_1 = require("./cli.js"); // Handle no command case with proper async/await (async () => { if (process.argv.length === 2) { await (0, cli_js_1.handleNoCommand)(); } else { // Normal command parsing cli_js_1.cli.parse(process.argv); } })().catch((error) => { console.error(`Error: ${error.message}`); process.exit(1); }); //# sourceMappingURL=index.js.map