UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

32 lines 1.19 kB
#!/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