#!/usr/bin/env node
/**
 * CLI command for converting between Anthropic Skills and DollhouseMCP Skills
 *
 * Usage:
 *   dollhouse convert to-anthropic <input> [options]
 *   dollhouse convert from-anthropic <input> [options]
 *
 * Input formats:
 *   to-anthropic:   DollhouseMCP skill file (.md)
 *   from-anthropic: Anthropic skill directory or ZIP file
 *
 * Options:
 *   -o, --output <dir>      Output directory
 *                           Default for from-anthropic: ~/.dollhouse/portfolio/skills
 *                           Default for to-anthropic: ./anthropic-skills
 *   -v, --verbose           Show detailed conversion steps
 *   -r, --report            Generate conversion report
 *   --dry-run               Preview conversion without executing
 *
 * Examples:
 *   # Convert downloaded ZIP file from Claude.ai
 *   dollhouse convert from-anthropic ~/Downloads/my-skill.zip
 *
 *   # Convert Anthropic skill directory
 *   dollhouse convert from-anthropic ~/Downloads/my-skill-folder
 *
 *   # Export DollhouseMCP skill to share
 *   dollhouse convert to-anthropic ~/.dollhouse/portfolio/skills/my-skill.md -o ./exported
 */
export {};
//# sourceMappingURL=convert.d.ts.map