@dollhousemcp/mcp-server 1.9.22 β 1.9.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +80 -0
- package/README.github.md +59 -0
- package/README.md.backup +59 -0
- package/dist/cli/convert.d.ts +32 -0
- package/dist/cli/convert.d.ts.map +1 -0
- package/dist/cli/convert.js +636 -0
- package/dist/converters/AnthropicToDollhouseConverter.d.ts +169 -0
- package/dist/converters/AnthropicToDollhouseConverter.d.ts.map +1 -0
- package/dist/converters/AnthropicToDollhouseConverter.js +419 -0
- package/dist/converters/ContentExtractor.d.ts +76 -0
- package/dist/converters/ContentExtractor.d.ts.map +1 -0
- package/dist/converters/ContentExtractor.js +213 -0
- package/dist/converters/DollhouseToAnthropicConverter.d.ts +108 -0
- package/dist/converters/DollhouseToAnthropicConverter.d.ts.map +1 -0
- package/dist/converters/DollhouseToAnthropicConverter.js +308 -0
- package/dist/converters/SchemaMapper.d.ts +57 -0
- package/dist/converters/SchemaMapper.d.ts.map +1 -0
- package/dist/converters/SchemaMapper.js +99 -0
- package/dist/converters/index.d.ts +19 -0
- package/dist/converters/index.d.ts.map +1 -0
- package/dist/converters/index.js +17 -0
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/dist/security/audit/config/suppressions.d.ts.map +1 -1
- package/dist/security/audit/config/suppressions.js +36 -1
- package/package.json +9 -6
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,86 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.9.24] - 2025-10-27
|
|
6
|
+
|
|
7
|
+
**Documentation Release**: Claude Skills Compatibility & Dependency Updates
|
|
8
|
+
|
|
9
|
+
### π Documentation
|
|
10
|
+
- **Claude Skills Compatibility Section** (#1413)
|
|
11
|
+
- Added prominent README section highlighting 100% lossless round-trip conversion
|
|
12
|
+
- Documents bidirectional conversion between DollhouseMCP Skills and Claude Skills
|
|
13
|
+
- Includes skill-converter usage for CLI-enabled LLMs (Claude Code, Cursor, Gemini Code Assist)
|
|
14
|
+
- Complete metadata, validation, and structure preservation in both directions
|
|
15
|
+
|
|
16
|
+
- **Merge Strategy Documentation**
|
|
17
|
+
- Documented squash vs. regular merge strategy in `docs/development/PR_BEST_PRACTICES.md`
|
|
18
|
+
- Feature β develop: SQUASH merge (clean history, normalizes contributor practices)
|
|
19
|
+
- Develop β main: REGULAR merge (preserves commits, prevents overwriting)
|
|
20
|
+
- Multi-contributor scaling considerations documented
|
|
21
|
+
|
|
22
|
+
- **Session Notes**
|
|
23
|
+
- Committed session notes from Oct 25 and Oct 27 to development history
|
|
24
|
+
- Documents development decisions and context for project continuity
|
|
25
|
+
|
|
26
|
+
### π Dependency Updates
|
|
27
|
+
- `@modelcontextprotocol/sdk` 1.20.1 β 1.20.2
|
|
28
|
+
- `posthog-node` 5.10.0 β 5.10.3
|
|
29
|
+
- `jsdom` 27.0.0 β 27.0.1 (dev)
|
|
30
|
+
- `@types/node` 24.8.1 β 24.9.1 (dev)
|
|
31
|
+
- `@modelcontextprotocol/inspector` 0.17.1 β 0.17.2 (dev)
|
|
32
|
+
|
|
33
|
+
### π§ Technical
|
|
34
|
+
- Fixed README auto-sync workflow issue by updating chunk source files
|
|
35
|
+
- README now generated from `docs/readme/chunks/` to prevent manual edit overwrites
|
|
36
|
+
- All documentation changes preserved through auto-sync workflow
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## [1.9.23] - 2025-10-26
|
|
41
|
+
|
|
42
|
+
**Feature Release**: Bidirectional Skills Converter with DollhouseMCP primacy messaging
|
|
43
|
+
|
|
44
|
+
### β¨ Features
|
|
45
|
+
- **Bidirectional Skills Converter** (#1400, #1401)
|
|
46
|
+
- Lossless conversion between DollhouseMCP Skills and Claude Skills formats
|
|
47
|
+
- CLI commands: `dollhouse convert from-anthropic` / `to-anthropic`
|
|
48
|
+
- Automatic format detection (ZIP, directory, .md file)
|
|
49
|
+
- Metadata enrichment when importing Claude Skills
|
|
50
|
+
- Roundtrip conversion with 100% fidelity
|
|
51
|
+
- Comprehensive test suite (13/13 tests passing)
|
|
52
|
+
|
|
53
|
+
- **Skills Converter Documentation** (docs commit 510ec3e7)
|
|
54
|
+
- Complete guide: `docs/guides/SKILLS_CONVERTER.md`
|
|
55
|
+
- Technical architecture details
|
|
56
|
+
- Usage examples and workflows
|
|
57
|
+
- CLI reference documentation
|
|
58
|
+
|
|
59
|
+
- **DollhouseMCP Primacy Messaging** (docs commit bf1711d0)
|
|
60
|
+
- README section establishing timeline (July 2025 premiere)
|
|
61
|
+
- Superset positioning vs Claude Skills
|
|
62
|
+
- Professional, legally-reviewable framing
|
|
63
|
+
|
|
64
|
+
### π§ Components
|
|
65
|
+
- **SchemaMapper**: Bidirectional metadata transformation
|
|
66
|
+
- **ContentExtractor**: Code block and documentation parsing
|
|
67
|
+
- **DollhouseToAnthropicConverter**: Export to Claude Skills format
|
|
68
|
+
- **AnthropicToDollhouseConverter**: Import from Claude Skills format
|
|
69
|
+
- **CLI Interface**: `src/cli/convert.ts` with verbose/report modes
|
|
70
|
+
|
|
71
|
+
### Technical Details
|
|
72
|
+
- Converter location: `src/converters/`
|
|
73
|
+
- CLI location: `src/cli/convert.ts`
|
|
74
|
+
- Tests: `test/__tests__/unit/converter.test.ts`
|
|
75
|
+
- Security: ZIP bomb detection, Unicode normalization, size limits
|
|
76
|
+
- Performance: <1s for small skills, 5-30s for large skills
|
|
77
|
+
|
|
78
|
+
### Documentation
|
|
79
|
+
- Skills Converter Guide: `docs/guides/SKILLS_CONVERTER.md` (758 lines)
|
|
80
|
+
- README primacy section: Establishes DollhouseMCP as original (July 2025)
|
|
81
|
+
- Architecture comparison in guide (DollhouseMCP superset)
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
5
85
|
## [1.9.22] - 2025-10-23
|
|
6
86
|
|
|
7
87
|
**Hotfix Release**: Resolve jsdom test failures
|
package/README.github.md
CHANGED
|
@@ -70,6 +70,16 @@
|
|
|
70
70
|
- **β‘ Hot-Swap Elements** β Change personas, skills, and templates without restarting as needed
|
|
71
71
|
- **π¦ Personal Portfolio** β Your library of custom AI configurations on your local computer or personal GitHub repo
|
|
72
72
|
|
|
73
|
+
### Claude Skills Compatibility
|
|
74
|
+
|
|
75
|
+
100% lossless round-trip conversion between DollhouseMCP Skills and Claude Skillsβall metadata, validation, and structure preserved without loss in either direction.
|
|
76
|
+
|
|
77
|
+
Import Claude Skills into the DollhouseMCP ecosystem for enhanced version control, deployment across hundreds of AI platforms that support MCP servers, security validation against hundreds of attack vectors, and integration with personas, templates, agents, and memories. Convert DollhouseMCP Skills to Claude Skills when you need compatibility with Claude-specific environments that cannot run DollhouseMCP.
|
|
78
|
+
|
|
79
|
+
β **[Complete Skills Converter Guide](docs/guides/SKILLS_CONVERTER.md)** β Lossless round-trip translation in both directions with CLI reference and examples
|
|
80
|
+
|
|
81
|
+
β Use the DollhouseMCP **skill-converter** skill to convert directly from chat on LLMs with command-line access like Claude Code, Cursor, Gemini Code Assist, etc.
|
|
82
|
+
|
|
73
83
|
### Use Cases
|
|
74
84
|
|
|
75
85
|
<table>
|
|
@@ -873,6 +883,55 @@ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
|
873
883
|
|
|
874
884
|
## π·οΈ Version History
|
|
875
885
|
|
|
886
|
+
### v1.9.24 - 2025-10-27
|
|
887
|
+
|
|
888
|
+
**Documentation Release**: Claude Skills Compatibility & Dependency Updates
|
|
889
|
+
|
|
890
|
+
#### π Documentation
|
|
891
|
+
- **Claude Skills Compatibility Section** (#1413)
|
|
892
|
+
- Added prominent README section highlighting 100% lossless round-trip conversion
|
|
893
|
+
- Documents bidirectional conversion between DollhouseMCP Skills and Claude Skills
|
|
894
|
+
- Includes skill-converter usage for CLI-enabled LLMs (Claude Code, Cursor, Gemini Code Assist)
|
|
895
|
+
- Complete metadata, validation, and structure preservation in both directions
|
|
896
|
+
|
|
897
|
+
- **Merge Strategy Documentation**
|
|
898
|
+
- Documented squash vs. regular merge strategy in `docs/development/PR_BEST_PRACTICES.md`
|
|
899
|
+
- Feature β develop: SQUASH merge (clean history)
|
|
900
|
+
- Develop β main: REGULAR merge (preserves commits)
|
|
901
|
+
|
|
902
|
+
#### π Dependency Updates
|
|
903
|
+
- `@modelcontextprotocol/sdk` 1.20.1 β 1.20.2
|
|
904
|
+
- `posthog-node` 5.10.0 β 5.10.3
|
|
905
|
+
- `jsdom` 27.0.0 β 27.0.1 (dev)
|
|
906
|
+
- `@types/node` 24.8.1 β 24.9.1 (dev)
|
|
907
|
+
- `@modelcontextprotocol/inspector` 0.17.1 β 0.17.2 (dev)
|
|
908
|
+
|
|
909
|
+
---
|
|
910
|
+
|
|
911
|
+
### v1.9.23 - 2025-10-26
|
|
912
|
+
|
|
913
|
+
**Feature Release**: Bidirectional Skills Converter
|
|
914
|
+
#### β¨ Features
|
|
915
|
+
- **Bidirectional Skills Converter** (#1400, #1401)
|
|
916
|
+
- Lossless conversion between DollhouseMCP Skills and Claude Skills
|
|
917
|
+
- CLI: `dollhouse convert from-anthropic` / `to-anthropic`
|
|
918
|
+
- Automatic format detection and metadata enrichment
|
|
919
|
+
- 100% fidelity roundtrip conversion
|
|
920
|
+
- Comprehensive documentation in `docs/guides/SKILLS_CONVERTER.md`
|
|
921
|
+
|
|
922
|
+
- **DollhouseMCP Primacy Messaging**
|
|
923
|
+
- README section establishing timeline (July 2025 vs October 2025)
|
|
924
|
+
- Positions DollhouseMCP as superset with 6 element types
|
|
925
|
+
- Professional framing for legal review
|
|
926
|
+
|
|
927
|
+
#### Technical Details
|
|
928
|
+
- 13 converter tests passing
|
|
929
|
+
- Security: ZIP size limits, bomb detection, Unicode normalization
|
|
930
|
+
- Components: SchemaMapper, ContentExtractor, bidirectional converters
|
|
931
|
+
- Performance: Sub-second for small skills, scales to large multi-MB skills
|
|
932
|
+
|
|
933
|
+
---
|
|
934
|
+
|
|
876
935
|
### v1.9.21 - 2025-10-23
|
|
877
936
|
|
|
878
937
|
**Patch Release**: Memory validation system activation and element formatting
|
package/README.md.backup
CHANGED
|
@@ -70,6 +70,16 @@
|
|
|
70
70
|
- **β‘ Hot-Swap Elements** β Change personas, skills, and templates without restarting as needed
|
|
71
71
|
- **π¦ Personal Portfolio** β Your library of custom AI configurations on your local computer or personal GitHub repo
|
|
72
72
|
|
|
73
|
+
### Claude Skills Compatibility
|
|
74
|
+
|
|
75
|
+
100% lossless round-trip conversion between DollhouseMCP Skills and Claude Skillsβall metadata, validation, and structure preserved without loss in either direction.
|
|
76
|
+
|
|
77
|
+
Import Claude Skills into the DollhouseMCP ecosystem for enhanced version control, deployment across hundreds of AI platforms that support MCP servers, security validation against hundreds of attack vectors, and integration with personas, templates, agents, and memories. Convert DollhouseMCP Skills to Claude Skills when you need compatibility with Claude-specific environments that cannot run DollhouseMCP.
|
|
78
|
+
|
|
79
|
+
β **[Complete Skills Converter Guide](docs/guides/SKILLS_CONVERTER.md)** β Lossless round-trip translation in both directions with CLI reference and examples
|
|
80
|
+
|
|
81
|
+
β Use the DollhouseMCP **skill-converter** skill to convert directly from chat on LLMs with command-line access like Claude Code, Cursor, Gemini Code Assist, etc.
|
|
82
|
+
|
|
73
83
|
### Use Cases
|
|
74
84
|
|
|
75
85
|
<table>
|
|
@@ -873,6 +883,55 @@ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
|
873
883
|
|
|
874
884
|
## π·οΈ Version History
|
|
875
885
|
|
|
886
|
+
### v1.9.24 - 2025-10-27
|
|
887
|
+
|
|
888
|
+
**Documentation Release**: Claude Skills Compatibility & Dependency Updates
|
|
889
|
+
|
|
890
|
+
#### π Documentation
|
|
891
|
+
- **Claude Skills Compatibility Section** (#1413)
|
|
892
|
+
- Added prominent README section highlighting 100% lossless round-trip conversion
|
|
893
|
+
- Documents bidirectional conversion between DollhouseMCP Skills and Claude Skills
|
|
894
|
+
- Includes skill-converter usage for CLI-enabled LLMs (Claude Code, Cursor, Gemini Code Assist)
|
|
895
|
+
- Complete metadata, validation, and structure preservation in both directions
|
|
896
|
+
|
|
897
|
+
- **Merge Strategy Documentation**
|
|
898
|
+
- Documented squash vs. regular merge strategy in `docs/development/PR_BEST_PRACTICES.md`
|
|
899
|
+
- Feature β develop: SQUASH merge (clean history)
|
|
900
|
+
- Develop β main: REGULAR merge (preserves commits)
|
|
901
|
+
|
|
902
|
+
#### π Dependency Updates
|
|
903
|
+
- `@modelcontextprotocol/sdk` 1.20.1 β 1.20.2
|
|
904
|
+
- `posthog-node` 5.10.0 β 5.10.3
|
|
905
|
+
- `jsdom` 27.0.0 β 27.0.1 (dev)
|
|
906
|
+
- `@types/node` 24.8.1 β 24.9.1 (dev)
|
|
907
|
+
- `@modelcontextprotocol/inspector` 0.17.1 β 0.17.2 (dev)
|
|
908
|
+
|
|
909
|
+
---
|
|
910
|
+
|
|
911
|
+
### v1.9.23 - 2025-10-26
|
|
912
|
+
|
|
913
|
+
**Feature Release**: Bidirectional Skills Converter
|
|
914
|
+
#### β¨ Features
|
|
915
|
+
- **Bidirectional Skills Converter** (#1400, #1401)
|
|
916
|
+
- Lossless conversion between DollhouseMCP Skills and Claude Skills
|
|
917
|
+
- CLI: `dollhouse convert from-anthropic` / `to-anthropic`
|
|
918
|
+
- Automatic format detection and metadata enrichment
|
|
919
|
+
- 100% fidelity roundtrip conversion
|
|
920
|
+
- Comprehensive documentation in `docs/guides/SKILLS_CONVERTER.md`
|
|
921
|
+
|
|
922
|
+
- **DollhouseMCP Primacy Messaging**
|
|
923
|
+
- README section establishing timeline (July 2025 vs October 2025)
|
|
924
|
+
- Positions DollhouseMCP as superset with 6 element types
|
|
925
|
+
- Professional framing for legal review
|
|
926
|
+
|
|
927
|
+
#### Technical Details
|
|
928
|
+
- 13 converter tests passing
|
|
929
|
+
- Security: ZIP size limits, bomb detection, Unicode normalization
|
|
930
|
+
- Components: SchemaMapper, ContentExtractor, bidirectional converters
|
|
931
|
+
- Performance: Sub-second for small skills, scales to large multi-MB skills
|
|
932
|
+
|
|
933
|
+
---
|
|
934
|
+
|
|
876
935
|
### v1.9.21 - 2025-10-23
|
|
877
936
|
|
|
878
937
|
**Patch Release**: Memory validation system activation and element formatting
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* CLI command for converting between Anthropic Skills and DollhouseMCP Skills
|
|
4
|
+
*
|
|
5
|
+
* Usage:
|
|
6
|
+
* dollhouse convert to-anthropic <input> [options]
|
|
7
|
+
* dollhouse convert from-anthropic <input> [options]
|
|
8
|
+
*
|
|
9
|
+
* Input formats:
|
|
10
|
+
* to-anthropic: DollhouseMCP skill file (.md)
|
|
11
|
+
* from-anthropic: Anthropic skill directory or ZIP file
|
|
12
|
+
*
|
|
13
|
+
* Options:
|
|
14
|
+
* -o, --output <dir> Output directory
|
|
15
|
+
* Default for from-anthropic: ~/.dollhouse/portfolio/skills
|
|
16
|
+
* Default for to-anthropic: ./anthropic-skills
|
|
17
|
+
* -v, --verbose Show detailed conversion steps
|
|
18
|
+
* -r, --report Generate conversion report
|
|
19
|
+
* --dry-run Preview conversion without executing
|
|
20
|
+
*
|
|
21
|
+
* Examples:
|
|
22
|
+
* # Convert downloaded ZIP file from Claude.ai
|
|
23
|
+
* dollhouse convert from-anthropic ~/Downloads/my-skill.zip
|
|
24
|
+
*
|
|
25
|
+
* # Convert Anthropic skill directory
|
|
26
|
+
* dollhouse convert from-anthropic ~/Downloads/my-skill-folder
|
|
27
|
+
*
|
|
28
|
+
* # Export DollhouseMCP skill to share
|
|
29
|
+
* dollhouse convert to-anthropic ~/.dollhouse/portfolio/skills/my-skill.md -o ./exported
|
|
30
|
+
*/
|
|
31
|
+
export {};
|
|
32
|
+
//# sourceMappingURL=convert.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convert.d.ts","sourceRoot":"","sources":["../../src/cli/convert.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG"}
|