@dollhousemcp/mcp-server 1.9.20 → 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 +99 -0
- package/README.github.md +505 -505
- package/README.md.backup +536 -505
- 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/index.d.ts.map +1 -1
- package/dist/index.js +32 -10
- package/dist/security/audit/config/suppressions.d.ts.map +1 -1
- package/dist/security/audit/config/suppressions.js +36 -1
- package/dist/utils/ElementFormatter.d.ts +31 -1
- package/dist/utils/ElementFormatter.d.ts.map +1 -1
- package/dist/utils/ElementFormatter.js +56 -15
- package/package.json +9 -6
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,105 @@
|
|
|
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
|
+
|
|
50
|
+
## [1.9.22] - 2025-10-23
|
|
51
|
+
|
|
52
|
+
**Hotfix Release**: Resolve jsdom test failures
|
|
53
|
+
|
|
54
|
+
### Fixed
|
|
55
|
+
- **jsdom version compatibility** (Hotfix)
|
|
56
|
+
- Reverted jsdom from 27.0.1 to 27.0.0 due to parse5 ES module import issues
|
|
57
|
+
- Fixes test failures in MemoryManager and other test suites
|
|
58
|
+
- The jsdom 27.0.1 update introduced a breaking change with parse5 becoming an ES module
|
|
59
|
+
- Will revisit jsdom 27.0.1 update in future release with proper ES module configuration
|
|
60
|
+
|
|
61
|
+
## [1.9.21] - 2025-10-23
|
|
62
|
+
|
|
63
|
+
**Patch Release**: Memory validation system activation and element formatting
|
|
64
|
+
|
|
65
|
+
### Added
|
|
66
|
+
- **Element file formatter script** (#1388, fixes #1387)
|
|
67
|
+
- New `scripts/fix-element-formatting.ts` to reformat blob content elements
|
|
68
|
+
- Fixes element files stored as single-line blobs (unreadable in editors)
|
|
69
|
+
- Intelligently adds newlines before/after markdown headers
|
|
70
|
+
- Formats code blocks and YAML structures properly
|
|
71
|
+
- Dry-run mode for safe testing
|
|
72
|
+
- Average line length detection (>200 chars triggers formatting)
|
|
73
|
+
|
|
74
|
+
### Fixed
|
|
75
|
+
- **Background memory validation startup** (#1389)
|
|
76
|
+
- BackgroundValidator service now starts automatically on server initialization
|
|
77
|
+
- Memory entries with UNTRUSTED status will be automatically validated every 5 minutes
|
|
78
|
+
- Trust levels are now properly updated (VALIDATED, FLAGGED, QUARANTINED)
|
|
79
|
+
- Validation runs server-side with zero token cost
|
|
80
|
+
|
|
81
|
+
### Changed
|
|
82
|
+
- **README version history optimization**
|
|
83
|
+
- Limited version history in README to 1.9.x releases only (21 versions instead of 35)
|
|
84
|
+
- Reduced README size from ~75KB to ~61KB for better readability
|
|
85
|
+
- Complete history remains in CHANGELOG.md (source of truth)
|
|
86
|
+
- Updated `generate-version-history.js` minVersion from 1.6.0 to 1.9.0
|
|
87
|
+
- **Added missing v1.9.20 changelog entry to README**
|
|
88
|
+
- Previous README was missing the v1.9.20 MCP Registry Publishing Fix
|
|
89
|
+
|
|
90
|
+
### Context
|
|
91
|
+
The BackgroundValidator service was fully implemented in Issue #1314 (Phase 1: Background validation for memory security) but was never activated. The `backgroundValidator.start()` method was missing from server initialization, causing all memories to remain UNTRUSTED indefinitely.
|
|
92
|
+
|
|
93
|
+
This patch release adds proper lifecycle management:
|
|
94
|
+
- Import backgroundValidator singleton in server initialization
|
|
95
|
+
- Start validation service after resource handlers are set up
|
|
96
|
+
- Stop service during server cleanup
|
|
97
|
+
|
|
98
|
+
### Impact
|
|
99
|
+
- Memory security architecture is now fully operational
|
|
100
|
+
- UNTRUSTED memories will be automatically validated
|
|
101
|
+
- Trust level updates work correctly
|
|
102
|
+
- No performance impact (runs in background outside LLM context)
|
|
103
|
+
|
|
5
104
|
## [1.9.20] - 2025-10-17
|
|
6
105
|
|
|
7
106
|
**Fix Release**: MCP Registry Publishing Compatibility
|