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 (21 loc) 648 B
/** * Sync Index Command * * Update existing skills index (alias to generate-index) * Ensures index stays up-to-date when skills are added/removed/modified */ import { generateIndexCommand, GenerateIndexOptions } from './generate-index.js'; /** * Execute the sync-index command * * This is essentially an alias to generate-index, as regenerating * the entire index is the most reliable way to ensure it's up-to-date. * * @param options - Command options */ export async function syncIndexCommand( options: GenerateIndexOptions = {} ): Promise<void> { // Simply call generate-index command await generateIndexCommand(options); }