@dollhousemcp/mcp-server 1.9.22 → 1.9.23
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 +45 -0
- package/README.md.backup +31 -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 +4 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,51 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.9.23] - 2025-10-26
|
|
6
|
+
|
|
7
|
+
**Feature Release**: Bidirectional Skills Converter with DollhouseMCP primacy messaging
|
|
8
|
+
|
|
9
|
+
### ✨ Features
|
|
10
|
+
- **Bidirectional Skills Converter** (#1400, #1401)
|
|
11
|
+
- Lossless conversion between DollhouseMCP Skills and Claude Skills formats
|
|
12
|
+
- CLI commands: `dollhouse convert from-anthropic` / `to-anthropic`
|
|
13
|
+
- Automatic format detection (ZIP, directory, .md file)
|
|
14
|
+
- Metadata enrichment when importing Claude Skills
|
|
15
|
+
- Roundtrip conversion with 100% fidelity
|
|
16
|
+
- Comprehensive test suite (13/13 tests passing)
|
|
17
|
+
|
|
18
|
+
- **Skills Converter Documentation** (docs commit 510ec3e7)
|
|
19
|
+
- Complete guide: `docs/guides/SKILLS_CONVERTER.md`
|
|
20
|
+
- Technical architecture details
|
|
21
|
+
- Usage examples and workflows
|
|
22
|
+
- CLI reference documentation
|
|
23
|
+
|
|
24
|
+
- **DollhouseMCP Primacy Messaging** (docs commit bf1711d0)
|
|
25
|
+
- README section establishing timeline (July 2025 premiere)
|
|
26
|
+
- Superset positioning vs Claude Skills
|
|
27
|
+
- Professional, legally-reviewable framing
|
|
28
|
+
|
|
29
|
+
### 🔧 Components
|
|
30
|
+
- **SchemaMapper**: Bidirectional metadata transformation
|
|
31
|
+
- **ContentExtractor**: Code block and documentation parsing
|
|
32
|
+
- **DollhouseToAnthropicConverter**: Export to Claude Skills format
|
|
33
|
+
- **AnthropicToDollhouseConverter**: Import from Claude Skills format
|
|
34
|
+
- **CLI Interface**: `src/cli/convert.ts` with verbose/report modes
|
|
35
|
+
|
|
36
|
+
### Technical Details
|
|
37
|
+
- Converter location: `src/converters/`
|
|
38
|
+
- CLI location: `src/cli/convert.ts`
|
|
39
|
+
- Tests: `test/__tests__/unit/converter.test.ts`
|
|
40
|
+
- Security: ZIP bomb detection, Unicode normalization, size limits
|
|
41
|
+
- Performance: <1s for small skills, 5-30s for large skills
|
|
42
|
+
|
|
43
|
+
### Documentation
|
|
44
|
+
- Skills Converter Guide: `docs/guides/SKILLS_CONVERTER.md` (758 lines)
|
|
45
|
+
- README primacy section: Establishes DollhouseMCP as original (July 2025)
|
|
46
|
+
- Architecture comparison in guide (DollhouseMCP superset)
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
5
50
|
## [1.9.22] - 2025-10-23
|
|
6
51
|
|
|
7
52
|
**Hotfix Release**: Resolve jsdom test failures
|
package/README.md.backup
CHANGED
|
@@ -12,6 +12,13 @@
|
|
|
12
12
|
[](https://github.com/DollhouseMCP/mcp-server/tree/develop/test/__tests__)
|
|
13
13
|
[](https://github.com/DollhouseMCP/mcp-server/blob/develop/SECURITY.md)
|
|
14
14
|
|
|
15
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
16
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
17
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
18
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
19
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
20
|
+
[](https://sonarcloud.io/summary/new_code?id=DollhouseMCP_mcp-server)
|
|
21
|
+
|
|
15
22
|
## Platform Support
|
|
16
23
|
[](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml?query=branch:main "Windows CI Build Status")
|
|
17
24
|
[](https://github.com/DollhouseMCP/mcp-server/actions/workflows/core-build-test.yml?query=branch:main "macOS CI Build Status")
|
|
@@ -873,6 +880,30 @@ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
|
873
880
|
|
|
874
881
|
## 🏷️ Version History
|
|
875
882
|
|
|
883
|
+
### v1.9.23 - 2025-10-26
|
|
884
|
+
|
|
885
|
+
**Feature Release**: Bidirectional Skills Converter
|
|
886
|
+
#### ✨ Features
|
|
887
|
+
- **Bidirectional Skills Converter** (#1400, #1401)
|
|
888
|
+
- Lossless conversion between DollhouseMCP Skills and Claude Skills
|
|
889
|
+
- CLI: `dollhouse convert from-anthropic` / `to-anthropic`
|
|
890
|
+
- Automatic format detection and metadata enrichment
|
|
891
|
+
- 100% fidelity roundtrip conversion
|
|
892
|
+
- Comprehensive documentation in `docs/guides/SKILLS_CONVERTER.md`
|
|
893
|
+
|
|
894
|
+
- **DollhouseMCP Primacy Messaging**
|
|
895
|
+
- README section establishing timeline (July 2025 vs October 2025)
|
|
896
|
+
- Positions DollhouseMCP as superset with 6 element types
|
|
897
|
+
- Professional framing for legal review
|
|
898
|
+
|
|
899
|
+
#### Technical Details
|
|
900
|
+
- 13 converter tests passing
|
|
901
|
+
- Security: ZIP size limits, bomb detection, Unicode normalization
|
|
902
|
+
- Components: SchemaMapper, ContentExtractor, bidirectional converters
|
|
903
|
+
- Performance: Sub-second for small skills, scales to large multi-MB skills
|
|
904
|
+
|
|
905
|
+
---
|
|
906
|
+
|
|
876
907
|
### v1.9.21 - 2025-10-23
|
|
877
908
|
|
|
878
909
|
**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"}
|