@dollhousemcp/mcp-server 1.9.24 → 1.9.26
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 +242 -0
- package/LICENSE +664 -59
- package/README.github.md +72 -0
- package/README.md.backup +49 -1422
- package/dist/auth/GitHubAuthManager.d.ts +63 -1
- package/dist/auth/GitHubAuthManager.d.ts.map +1 -1
- package/dist/auth/GitHubAuthManager.js +150 -20
- package/dist/collection/ElementInstaller.d.ts +265 -2
- package/dist/collection/ElementInstaller.d.ts.map +1 -1
- package/dist/collection/ElementInstaller.js +623 -37
- package/dist/config/ConfigManager.d.ts +15 -0
- package/dist/config/ConfigManager.d.ts.map +1 -1
- package/dist/config/ConfigManager.js +9 -1
- package/dist/config/sourcePriority.d.ts +279 -0
- package/dist/config/sourcePriority.d.ts.map +1 -0
- package/dist/config/sourcePriority.js +344 -0
- package/dist/elements/BaseElement.d.ts.map +1 -1
- package/dist/elements/BaseElement.js +9 -1
- package/dist/elements/memories/Memory.d.ts +2 -0
- package/dist/elements/memories/Memory.d.ts.map +1 -1
- package/dist/elements/memories/Memory.js +1 -1
- package/dist/elements/memories/MemoryManager.d.ts +49 -0
- package/dist/elements/memories/MemoryManager.d.ts.map +1 -1
- package/dist/elements/memories/MemoryManager.js +251 -8
- package/dist/elements/memories/constants.d.ts +2 -0
- package/dist/elements/memories/constants.d.ts.map +1 -1
- package/dist/elements/memories/constants.js +4 -1
- package/dist/errors/AutoLoadError.d.ts +28 -0
- package/dist/errors/AutoLoadError.d.ts.map +1 -0
- package/dist/errors/AutoLoadError.js +43 -0
- package/dist/errors/index.d.ts +1 -0
- package/dist/errors/index.d.ts.map +1 -1
- package/dist/errors/index.js +2 -1
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/dist/handlers/ConfigHandler.d.ts +18 -0
- package/dist/handlers/ConfigHandler.d.ts.map +1 -1
- package/dist/handlers/ConfigHandler.js +202 -9
- package/dist/portfolio/UnifiedIndexManager.d.ts +238 -1
- package/dist/portfolio/UnifiedIndexManager.d.ts.map +1 -1
- package/dist/portfolio/UnifiedIndexManager.js +526 -107
- package/dist/portfolio/VerbTriggerManager.d.ts +4 -0
- package/dist/portfolio/VerbTriggerManager.d.ts.map +1 -1
- package/dist/portfolio/VerbTriggerManager.js +72 -21
- package/dist/security/securityMonitor.d.ts +1 -1
- package/dist/security/securityMonitor.d.ts.map +1 -1
- package/dist/security/securityMonitor.js +1 -1
- package/dist/server/startup.d.ts +34 -0
- package/dist/server/startup.d.ts.map +1 -1
- package/dist/server/startup.js +272 -1
- package/dist/telemetry/OperationalTelemetry.d.ts +6 -0
- package/dist/telemetry/OperationalTelemetry.d.ts.map +1 -1
- package/dist/telemetry/OperationalTelemetry.js +33 -1
- package/dist/telemetry/types.d.ts +24 -2
- package/dist/telemetry/types.d.ts.map +1 -1
- package/dist/telemetry/types.js +1 -1
- package/dist/test/src/auth/GitHubAuthManager.d.ts +108 -0
- package/dist/test/src/auth/GitHubAuthManager.d.ts.map +1 -0
- package/dist/test/src/auth/GitHubAuthManager.js +565 -0
- package/dist/test/src/benchmarks/IndexPerformanceBenchmark.d.ts +98 -0
- package/dist/test/src/benchmarks/IndexPerformanceBenchmark.d.ts.map +1 -0
- package/dist/test/src/benchmarks/IndexPerformanceBenchmark.js +531 -0
- package/dist/test/src/cache/APICache.d.ts +23 -0
- package/dist/test/src/cache/APICache.d.ts.map +1 -0
- package/dist/test/src/cache/APICache.js +42 -0
- package/dist/test/src/cache/CollectionCache.d.ts +65 -0
- package/dist/test/src/cache/CollectionCache.d.ts.map +1 -0
- package/dist/test/src/cache/CollectionCache.js +172 -0
- package/dist/test/src/cache/CollectionIndexCache.d.ts +77 -0
- package/dist/test/src/cache/CollectionIndexCache.d.ts.map +1 -0
- package/dist/test/src/cache/CollectionIndexCache.js +349 -0
- package/dist/test/src/cache/LRUCache.d.ts +93 -0
- package/dist/test/src/cache/LRUCache.d.ts.map +1 -0
- package/dist/test/src/cache/LRUCache.js +299 -0
- package/dist/test/src/cache/index.d.ts +7 -0
- package/dist/test/src/cache/index.d.ts.map +1 -0
- package/dist/test/src/cache/index.js +7 -0
- package/dist/test/src/cli/convert.d.ts +32 -0
- package/dist/test/src/cli/convert.d.ts.map +1 -0
- package/dist/test/src/cli/convert.js +636 -0
- package/dist/test/src/cli/format-element.d.ts +18 -0
- package/dist/test/src/cli/format-element.d.ts.map +1 -0
- package/dist/test/src/cli/format-element.js +259 -0
- package/dist/test/src/collection/CollectionBrowser.d.ts +67 -0
- package/dist/test/src/collection/CollectionBrowser.d.ts.map +1 -0
- package/dist/test/src/collection/CollectionBrowser.js +356 -0
- package/dist/test/src/collection/CollectionIndexManager.d.ts +151 -0
- package/dist/test/src/collection/CollectionIndexManager.d.ts.map +1 -0
- package/dist/test/src/collection/CollectionIndexManager.js +501 -0
- package/dist/test/src/collection/CollectionSearch.d.ts +92 -0
- package/dist/test/src/collection/CollectionSearch.d.ts.map +1 -0
- package/dist/test/src/collection/CollectionSearch.js +477 -0
- package/dist/test/src/collection/CollectionSeeder.d.ts +36 -0
- package/dist/test/src/collection/CollectionSeeder.d.ts.map +1 -0
- package/dist/test/src/collection/CollectionSeeder.js +267 -0
- package/dist/test/src/collection/ElementInstaller.d.ts +64 -0
- package/dist/test/src/collection/ElementInstaller.d.ts.map +1 -0
- package/dist/test/src/collection/ElementInstaller.js +202 -0
- package/dist/test/src/collection/GitHubClient.d.ts +22 -0
- package/dist/test/src/collection/GitHubClient.d.ts.map +1 -0
- package/dist/test/src/collection/GitHubClient.js +122 -0
- package/dist/test/src/collection/PersonaDetails.d.ts +22 -0
- package/dist/test/src/collection/PersonaDetails.d.ts.map +1 -0
- package/dist/test/src/collection/PersonaDetails.js +71 -0
- package/dist/test/src/collection/PersonaSubmitter.d.ts +66 -0
- package/dist/test/src/collection/PersonaSubmitter.d.ts.map +1 -0
- package/dist/test/src/collection/PersonaSubmitter.js +193 -0
- package/dist/test/src/collection/index.d.ts +12 -0
- package/dist/test/src/collection/index.d.ts.map +1 -0
- package/dist/test/src/collection/index.js +12 -0
- package/dist/test/src/config/ConfigManager.d.ts +298 -0
- package/dist/test/src/config/ConfigManager.d.ts.map +1 -0
- package/dist/test/src/config/ConfigManager.js +880 -0
- package/dist/test/src/config/ConfigWizard.d.ts +78 -0
- package/dist/test/src/config/ConfigWizard.d.ts.map +1 -0
- package/dist/test/src/config/ConfigWizard.js +370 -0
- package/dist/test/src/config/ConfigWizardCheck.d.ts +47 -0
- package/dist/test/src/config/ConfigWizardCheck.d.ts.map +1 -0
- package/dist/test/src/config/ConfigWizardCheck.js +215 -0
- package/dist/test/src/config/constants.d.ts +25 -0
- package/dist/test/src/config/constants.d.ts.map +1 -0
- package/dist/test/src/config/constants.js +34 -0
- package/dist/test/src/config/element-types.d.ts +135 -0
- package/dist/test/src/config/element-types.d.ts.map +1 -0
- package/dist/test/src/config/element-types.js +108 -0
- package/dist/test/src/config/error-codes.d.ts +29 -0
- package/dist/test/src/config/error-codes.d.ts.map +1 -0
- package/dist/test/src/config/error-codes.js +70 -0
- package/dist/test/src/config/index.d.ts +8 -0
- package/dist/test/src/config/index.d.ts.map +1 -0
- package/dist/test/src/config/index.js +8 -0
- package/dist/test/src/config/indicator-config.d.ts +107 -0
- package/dist/test/src/config/indicator-config.d.ts.map +1 -0
- package/dist/test/src/config/indicator-config.js +158 -0
- package/dist/test/src/config/portfolio-constants.d.ts +83 -0
- package/dist/test/src/config/portfolio-constants.d.ts.map +1 -0
- package/dist/test/src/config/portfolio-constants.js +99 -0
- package/dist/test/src/config/portfolioConfig.d.ts +40 -0
- package/dist/test/src/config/portfolioConfig.d.ts.map +1 -0
- package/dist/test/src/config/portfolioConfig.js +58 -0
- package/dist/test/src/config/wizardTemplates.d.ts +84 -0
- package/dist/test/src/config/wizardTemplates.d.ts.map +1 -0
- package/dist/test/src/config/wizardTemplates.js +195 -0
- package/dist/test/src/constants/defaultPersonas.d.ts +10 -0
- package/dist/test/src/constants/defaultPersonas.d.ts.map +1 -0
- package/dist/test/src/constants/defaultPersonas.js +18 -0
- package/dist/test/src/constants/limits.d.ts +10 -0
- package/dist/test/src/constants/limits.d.ts.map +1 -0
- package/dist/test/src/constants/limits.js +13 -0
- package/dist/test/src/constants/version.d.ts +3 -0
- package/dist/test/src/constants/version.d.ts.map +1 -0
- package/dist/test/src/constants/version.js +4 -0
- package/dist/test/src/converters/AnthropicToDollhouseConverter.d.ts +169 -0
- package/dist/test/src/converters/AnthropicToDollhouseConverter.d.ts.map +1 -0
- package/dist/test/src/converters/AnthropicToDollhouseConverter.js +419 -0
- package/dist/test/src/converters/ContentExtractor.d.ts +76 -0
- package/dist/test/src/converters/ContentExtractor.d.ts.map +1 -0
- package/dist/test/src/converters/ContentExtractor.js +213 -0
- package/dist/test/src/converters/DollhouseToAnthropicConverter.d.ts +108 -0
- package/dist/test/src/converters/DollhouseToAnthropicConverter.d.ts.map +1 -0
- package/dist/test/src/converters/DollhouseToAnthropicConverter.js +308 -0
- package/dist/test/src/converters/SchemaMapper.d.ts +57 -0
- package/dist/test/src/converters/SchemaMapper.d.ts.map +1 -0
- package/dist/test/src/converters/SchemaMapper.js +99 -0
- package/dist/test/src/converters/index.d.ts +19 -0
- package/dist/test/src/converters/index.d.ts.map +1 -0
- package/dist/test/src/converters/index.js +17 -0
- package/dist/test/src/elements/BaseElement.d.ts +108 -0
- package/dist/test/src/elements/BaseElement.d.ts.map +1 -0
- package/dist/test/src/elements/BaseElement.js +511 -0
- package/dist/test/src/elements/FeedbackProcessor.d.ts +64 -0
- package/dist/test/src/elements/FeedbackProcessor.d.ts.map +1 -0
- package/dist/test/src/elements/FeedbackProcessor.js +471 -0
- package/dist/test/src/elements/agents/Agent.d.ts +154 -0
- package/dist/test/src/elements/agents/Agent.d.ts.map +1 -0
- package/dist/test/src/elements/agents/Agent.js +895 -0
- package/dist/test/src/elements/agents/AgentManager.d.ts +132 -0
- package/dist/test/src/elements/agents/AgentManager.d.ts.map +1 -0
- package/dist/test/src/elements/agents/AgentManager.js +667 -0
- package/dist/test/src/elements/agents/constants.d.ts +42 -0
- package/dist/test/src/elements/agents/constants.d.ts.map +1 -0
- package/dist/test/src/elements/agents/constants.js +45 -0
- package/dist/test/src/elements/agents/goalTemplates.d.ts +44 -0
- package/dist/test/src/elements/agents/goalTemplates.d.ts.map +1 -0
- package/dist/test/src/elements/agents/goalTemplates.js +297 -0
- package/dist/test/src/elements/agents/index.d.ts +8 -0
- package/dist/test/src/elements/agents/index.d.ts.map +1 -0
- package/dist/test/src/elements/agents/index.js +8 -0
- package/dist/test/src/elements/agents/ruleEngineConfig.d.ts +76 -0
- package/dist/test/src/elements/agents/ruleEngineConfig.d.ts.map +1 -0
- package/dist/test/src/elements/agents/ruleEngineConfig.js +143 -0
- package/dist/test/src/elements/agents/types.d.ts +103 -0
- package/dist/test/src/elements/agents/types.d.ts.map +1 -0
- package/dist/test/src/elements/agents/types.js +5 -0
- package/dist/test/src/elements/index.d.ts +9 -0
- package/dist/test/src/elements/index.d.ts.map +1 -0
- package/dist/test/src/elements/index.js +10 -0
- package/dist/test/src/elements/memories/Memory.d.ts +313 -0
- package/dist/test/src/elements/memories/Memory.d.ts.map +1 -0
- package/dist/test/src/elements/memories/Memory.js +992 -0
- package/dist/test/src/elements/memories/MemoryManager.d.ts +185 -0
- package/dist/test/src/elements/memories/MemoryManager.d.ts.map +1 -0
- package/dist/test/src/elements/memories/MemoryManager.js +868 -0
- package/dist/test/src/elements/memories/MemorySearchIndex.d.ts +156 -0
- package/dist/test/src/elements/memories/MemorySearchIndex.d.ts.map +1 -0
- package/dist/test/src/elements/memories/MemorySearchIndex.js +690 -0
- package/dist/test/src/elements/memories/constants.d.ts +105 -0
- package/dist/test/src/elements/memories/constants.d.ts.map +1 -0
- package/dist/test/src/elements/memories/constants.js +113 -0
- package/dist/test/src/elements/memories/index.d.ts +7 -0
- package/dist/test/src/elements/memories/index.d.ts.map +1 -0
- package/dist/test/src/elements/memories/index.js +7 -0
- package/dist/test/src/elements/memories/utils.d.ts +68 -0
- package/dist/test/src/elements/memories/utils.d.ts.map +1 -0
- package/dist/test/src/elements/memories/utils.js +137 -0
- package/dist/test/src/elements/skills/Skill.d.ts +119 -0
- package/dist/test/src/elements/skills/Skill.d.ts.map +1 -0
- package/dist/test/src/elements/skills/Skill.js +419 -0
- package/dist/test/src/elements/skills/SkillManager.d.ts +96 -0
- package/dist/test/src/elements/skills/SkillManager.d.ts.map +1 -0
- package/dist/test/src/elements/skills/SkillManager.js +478 -0
- package/dist/test/src/elements/skills/index.d.ts +6 -0
- package/dist/test/src/elements/skills/index.d.ts.map +1 -0
- package/dist/test/src/elements/skills/index.js +6 -0
- package/dist/test/src/elements/templates/Template.d.ts +153 -0
- package/dist/test/src/elements/templates/Template.d.ts.map +1 -0
- package/dist/test/src/elements/templates/Template.js +714 -0
- package/dist/test/src/elements/templates/TemplateManager.d.ts +113 -0
- package/dist/test/src/elements/templates/TemplateManager.d.ts.map +1 -0
- package/dist/test/src/elements/templates/TemplateManager.js +573 -0
- package/dist/test/src/elements/templates/index.d.ts +6 -0
- package/dist/test/src/elements/templates/index.d.ts.map +1 -0
- package/dist/test/src/elements/templates/index.js +6 -0
- package/dist/test/src/errors/SecurityError.d.ts +29 -0
- package/dist/test/src/errors/SecurityError.d.ts.map +1 -0
- package/dist/test/src/errors/SecurityError.js +47 -0
- package/dist/test/src/errors/index.d.ts +2 -0
- package/dist/test/src/errors/index.d.ts.map +1 -0
- package/dist/test/src/errors/index.js +2 -0
- package/dist/test/src/generated/version.d.ts +9 -0
- package/dist/test/src/generated/version.d.ts.map +1 -0
- package/dist/test/src/generated/version.js +9 -0
- package/dist/test/src/handlers/ConfigHandler.d.ts +62 -0
- package/dist/test/src/handlers/ConfigHandler.d.ts.map +1 -0
- package/dist/test/src/handlers/ConfigHandler.js +330 -0
- package/dist/test/src/handlers/EnhancedIndexHandler.d.ts +69 -0
- package/dist/test/src/handlers/EnhancedIndexHandler.d.ts.map +1 -0
- package/dist/test/src/handlers/EnhancedIndexHandler.js +394 -0
- package/dist/test/src/handlers/PortfolioPullHandler.d.ts +69 -0
- package/dist/test/src/handlers/PortfolioPullHandler.d.ts.map +1 -0
- package/dist/test/src/handlers/PortfolioPullHandler.js +340 -0
- package/dist/test/src/handlers/SyncHandlerV2.d.ts +42 -0
- package/dist/test/src/handlers/SyncHandlerV2.d.ts.map +1 -0
- package/dist/test/src/handlers/SyncHandlerV2.js +231 -0
- package/dist/test/src/index.barrel.d.ts +20 -0
- package/dist/test/src/index.barrel.d.ts.map +1 -0
- package/dist/test/src/index.barrel.js +29 -0
- package/dist/test/src/index.d.ts +559 -0
- package/dist/test/src/index.d.ts.map +1 -0
- package/dist/test/src/index.js +5543 -0
- package/dist/test/src/persona/PersonaElement.d.ts +74 -0
- package/dist/test/src/persona/PersonaElement.d.ts.map +1 -0
- package/dist/test/src/persona/PersonaElement.js +246 -0
- package/dist/test/src/persona/PersonaElementManager.d.ts +97 -0
- package/dist/test/src/persona/PersonaElementManager.d.ts.map +1 -0
- package/dist/test/src/persona/PersonaElementManager.js +350 -0
- package/dist/test/src/persona/PersonaLoader.d.ts +40 -0
- package/dist/test/src/persona/PersonaLoader.d.ts.map +1 -0
- package/dist/test/src/persona/PersonaLoader.js +223 -0
- package/dist/test/src/persona/PersonaManager.d.ts +112 -0
- package/dist/test/src/persona/PersonaManager.d.ts.map +1 -0
- package/dist/test/src/persona/PersonaManager.js +341 -0
- package/dist/test/src/persona/PersonaValidator.d.ts +39 -0
- package/dist/test/src/persona/PersonaValidator.d.ts.map +1 -0
- package/dist/test/src/persona/PersonaValidator.js +161 -0
- package/dist/test/src/persona/export-import/PersonaExporter.d.ts +43 -0
- package/dist/test/src/persona/export-import/PersonaExporter.d.ts.map +1 -0
- package/dist/test/src/persona/export-import/PersonaExporter.js +99 -0
- package/dist/test/src/persona/export-import/PersonaImporter.d.ts +65 -0
- package/dist/test/src/persona/export-import/PersonaImporter.d.ts.map +1 -0
- package/dist/test/src/persona/export-import/PersonaImporter.js +334 -0
- package/dist/test/src/persona/export-import/index.d.ts +8 -0
- package/dist/test/src/persona/export-import/index.d.ts.map +1 -0
- package/dist/test/src/persona/export-import/index.js +6 -0
- package/dist/test/src/persona/index.d.ts +7 -0
- package/dist/test/src/persona/index.d.ts.map +1 -0
- package/dist/test/src/persona/index.js +7 -0
- package/dist/test/src/portfolio/DefaultElementProvider.d.ts +180 -0
- package/dist/test/src/portfolio/DefaultElementProvider.d.ts.map +1 -0
- package/dist/test/src/portfolio/DefaultElementProvider.js +895 -0
- package/dist/test/src/portfolio/EnhancedIndexManager.d.ts +429 -0
- package/dist/test/src/portfolio/EnhancedIndexManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/EnhancedIndexManager.js +1780 -0
- package/dist/test/src/portfolio/GitHubPortfolioIndexer.d.ts +128 -0
- package/dist/test/src/portfolio/GitHubPortfolioIndexer.d.ts.map +1 -0
- package/dist/test/src/portfolio/GitHubPortfolioIndexer.js +497 -0
- package/dist/test/src/portfolio/MigrationManager.d.ts +44 -0
- package/dist/test/src/portfolio/MigrationManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/MigrationManager.js +296 -0
- package/dist/test/src/portfolio/NLPScoringManager.d.ts +131 -0
- package/dist/test/src/portfolio/NLPScoringManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/NLPScoringManager.js +351 -0
- package/dist/test/src/portfolio/PortfolioIndexManager.d.ts +150 -0
- package/dist/test/src/portfolio/PortfolioIndexManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/PortfolioIndexManager.js +713 -0
- package/dist/test/src/portfolio/PortfolioManager.d.ts +76 -0
- package/dist/test/src/portfolio/PortfolioManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/PortfolioManager.js +397 -0
- package/dist/test/src/portfolio/PortfolioRepoManager.d.ts +90 -0
- package/dist/test/src/portfolio/PortfolioRepoManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/PortfolioRepoManager.js +593 -0
- package/dist/test/src/portfolio/PortfolioSyncManager.d.ts +127 -0
- package/dist/test/src/portfolio/PortfolioSyncManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/PortfolioSyncManager.js +826 -0
- package/dist/test/src/portfolio/RelationshipManager.d.ts +133 -0
- package/dist/test/src/portfolio/RelationshipManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/RelationshipManager.js +503 -0
- package/dist/test/src/portfolio/UnifiedIndexManager.d.ts +390 -0
- package/dist/test/src/portfolio/UnifiedIndexManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/UnifiedIndexManager.js +1488 -0
- package/dist/test/src/portfolio/VerbTriggerManager.d.ts +127 -0
- package/dist/test/src/portfolio/VerbTriggerManager.d.ts.map +1 -0
- package/dist/test/src/portfolio/VerbTriggerManager.js +490 -0
- package/dist/test/src/portfolio/config/IndexConfig.d.ts +110 -0
- package/dist/test/src/portfolio/config/IndexConfig.d.ts.map +1 -0
- package/dist/test/src/portfolio/config/IndexConfig.js +391 -0
- package/dist/test/src/portfolio/index.d.ts +15 -0
- package/dist/test/src/portfolio/index.d.ts.map +1 -0
- package/dist/test/src/portfolio/index.js +15 -0
- package/dist/test/src/portfolio/types/RelationshipTypes.d.ts +250 -0
- package/dist/test/src/portfolio/types/RelationshipTypes.d.ts.map +1 -0
- package/dist/test/src/portfolio/types/RelationshipTypes.js +341 -0
- package/dist/test/src/portfolio/types.d.ts +25 -0
- package/dist/test/src/portfolio/types.d.ts.map +1 -0
- package/dist/test/src/portfolio/types.js +18 -0
- package/dist/test/src/security/InputValidator.d.ts +92 -0
- package/dist/test/src/security/InputValidator.d.ts.map +1 -0
- package/dist/test/src/security/InputValidator.js +471 -0
- package/dist/test/src/security/audit/SecurityAuditor.d.ts +44 -0
- package/dist/test/src/security/audit/SecurityAuditor.d.ts.map +1 -0
- package/dist/test/src/security/audit/SecurityAuditor.js +304 -0
- package/dist/test/src/security/audit/config/suppressions.d.ts +34 -0
- package/dist/test/src/security/audit/config/suppressions.d.ts.map +1 -0
- package/dist/test/src/security/audit/config/suppressions.js +982 -0
- package/dist/test/src/security/audit/index.d.ts +14 -0
- package/dist/test/src/security/audit/index.d.ts.map +1 -0
- package/dist/test/src/security/audit/index.js +15 -0
- package/dist/test/src/security/audit/reporters/ConsoleReporter.d.ts +46 -0
- package/dist/test/src/security/audit/reporters/ConsoleReporter.d.ts.map +1 -0
- package/dist/test/src/security/audit/reporters/ConsoleReporter.js +174 -0
- package/dist/test/src/security/audit/reporters/JsonReporter.d.ts +13 -0
- package/dist/test/src/security/audit/reporters/JsonReporter.d.ts.map +1 -0
- package/dist/test/src/security/audit/reporters/JsonReporter.js +25 -0
- package/dist/test/src/security/audit/reporters/MarkdownReporter.d.ts +13 -0
- package/dist/test/src/security/audit/reporters/MarkdownReporter.d.ts.map +1 -0
- package/dist/test/src/security/audit/reporters/MarkdownReporter.js +79 -0
- package/dist/test/src/security/audit/rules/SecurityRules.d.ts +20 -0
- package/dist/test/src/security/audit/rules/SecurityRules.d.ts.map +1 -0
- package/dist/test/src/security/audit/rules/SecurityRules.js +244 -0
- package/dist/test/src/security/audit/scanners/CodeScanner.d.ts +47 -0
- package/dist/test/src/security/audit/scanners/CodeScanner.d.ts.map +1 -0
- package/dist/test/src/security/audit/scanners/CodeScanner.js +174 -0
- package/dist/test/src/security/audit/scanners/ConfigurationScanner.d.ts +13 -0
- package/dist/test/src/security/audit/scanners/ConfigurationScanner.d.ts.map +1 -0
- package/dist/test/src/security/audit/scanners/ConfigurationScanner.js +22 -0
- package/dist/test/src/security/audit/scanners/DependencyScanner.d.ts +13 -0
- package/dist/test/src/security/audit/scanners/DependencyScanner.d.ts.map +1 -0
- package/dist/test/src/security/audit/scanners/DependencyScanner.js +22 -0
- package/dist/test/src/security/audit/types.d.ts +94 -0
- package/dist/test/src/security/audit/types.d.ts.map +1 -0
- package/dist/test/src/security/audit/types.js +6 -0
- package/dist/test/src/security/commandValidator.d.ts +7 -0
- package/dist/test/src/security/commandValidator.d.ts.map +1 -0
- package/dist/test/src/security/commandValidator.js +81 -0
- package/dist/test/src/security/constants.d.ts +25 -0
- package/dist/test/src/security/constants.d.ts.map +1 -0
- package/dist/test/src/security/constants.js +32 -0
- package/dist/test/src/security/contentValidator.d.ts +80 -0
- package/dist/test/src/security/contentValidator.d.ts.map +1 -0
- package/dist/test/src/security/contentValidator.js +476 -0
- package/dist/test/src/security/dosProtection.d.ts +123 -0
- package/dist/test/src/security/dosProtection.d.ts.map +1 -0
- package/dist/test/src/security/dosProtection.js +392 -0
- package/dist/test/src/security/encryption/ContextTracker.d.ts +85 -0
- package/dist/test/src/security/encryption/ContextTracker.d.ts.map +1 -0
- package/dist/test/src/security/encryption/ContextTracker.js +115 -0
- package/dist/test/src/security/encryption/PatternDecryptor.d.ts +72 -0
- package/dist/test/src/security/encryption/PatternDecryptor.d.ts.map +1 -0
- package/dist/test/src/security/encryption/PatternDecryptor.js +186 -0
- package/dist/test/src/security/encryption/PatternEncryptor.d.ts +142 -0
- package/dist/test/src/security/encryption/PatternEncryptor.d.ts.map +1 -0
- package/dist/test/src/security/encryption/PatternEncryptor.js +282 -0
- package/dist/test/src/security/encryption/index.d.ts +19 -0
- package/dist/test/src/security/encryption/index.d.ts.map +1 -0
- package/dist/test/src/security/encryption/index.js +16 -0
- package/dist/test/src/security/errorHandler.d.ts +42 -0
- package/dist/test/src/security/errorHandler.d.ts.map +1 -0
- package/dist/test/src/security/errorHandler.js +166 -0
- package/dist/test/src/security/errors.d.ts +14 -0
- package/dist/test/src/security/errors.d.ts.map +1 -0
- package/dist/test/src/security/errors.js +28 -0
- package/dist/test/src/security/fileLockManager.d.ts +70 -0
- package/dist/test/src/security/fileLockManager.d.ts.map +1 -0
- package/dist/test/src/security/fileLockManager.js +187 -0
- package/dist/test/src/security/index.d.ts +13 -0
- package/dist/test/src/security/index.d.ts.map +1 -0
- package/dist/test/src/security/index.js +15 -0
- package/dist/test/src/security/pathValidator.d.ts +26 -0
- package/dist/test/src/security/pathValidator.d.ts.map +1 -0
- package/dist/test/src/security/pathValidator.js +154 -0
- package/dist/test/src/security/regexValidator.d.ts +59 -0
- package/dist/test/src/security/regexValidator.d.ts.map +1 -0
- package/dist/test/src/security/regexValidator.js +214 -0
- package/dist/test/src/security/secureYamlParser.d.ts +91 -0
- package/dist/test/src/security/secureYamlParser.d.ts.map +1 -0
- package/dist/test/src/security/secureYamlParser.js +270 -0
- package/dist/test/src/security/securityMonitor.d.ts +59 -0
- package/dist/test/src/security/securityMonitor.d.ts.map +1 -0
- package/dist/test/src/security/securityMonitor.js +108 -0
- package/dist/test/src/security/telemetry/SecurityTelemetry.d.ts +80 -0
- package/dist/test/src/security/telemetry/SecurityTelemetry.d.ts.map +1 -0
- package/dist/test/src/security/telemetry/SecurityTelemetry.js +218 -0
- package/dist/test/src/security/tokenManager.d.ts +119 -0
- package/dist/test/src/security/tokenManager.d.ts.map +1 -0
- package/dist/test/src/security/tokenManager.js +504 -0
- package/dist/test/src/security/validation/BackgroundValidator.d.ts +132 -0
- package/dist/test/src/security/validation/BackgroundValidator.d.ts.map +1 -0
- package/dist/test/src/security/validation/BackgroundValidator.js +300 -0
- package/dist/test/src/security/validation/PatternExtractor.d.ts +108 -0
- package/dist/test/src/security/validation/PatternExtractor.d.ts.map +1 -0
- package/dist/test/src/security/validation/PatternExtractor.js +251 -0
- package/dist/test/src/security/validators/unicodeValidator.d.ts +97 -0
- package/dist/test/src/security/validators/unicodeValidator.d.ts.map +1 -0
- package/dist/test/src/security/validators/unicodeValidator.js +324 -0
- package/dist/test/src/security/yamlValidator.d.ts +21 -0
- package/dist/test/src/security/yamlValidator.d.ts.map +1 -0
- package/dist/test/src/security/yamlValidator.js +164 -0
- package/dist/test/src/server/ServerSetup.d.ts +55 -0
- package/dist/test/src/server/ServerSetup.d.ts.map +1 -0
- package/dist/test/src/server/ServerSetup.js +201 -0
- package/dist/test/src/server/index.d.ts +7 -0
- package/dist/test/src/server/index.d.ts.map +1 -0
- package/dist/test/src/server/index.js +7 -0
- package/dist/test/src/server/resources/CapabilityIndexResource.d.ts +153 -0
- package/dist/test/src/server/resources/CapabilityIndexResource.d.ts.map +1 -0
- package/dist/test/src/server/resources/CapabilityIndexResource.js +252 -0
- package/dist/test/src/server/startup.d.ts +37 -0
- package/dist/test/src/server/startup.d.ts.map +1 -0
- package/dist/test/src/server/startup.js +106 -0
- package/dist/test/src/server/tools/AuthTools.d.ts +10 -0
- package/dist/test/src/server/tools/AuthTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/AuthTools.js +73 -0
- package/dist/test/src/server/tools/BuildInfoTools.d.ts +25 -0
- package/dist/test/src/server/tools/BuildInfoTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/BuildInfoTools.js +36 -0
- package/dist/test/src/server/tools/CollectionTools.d.ts +10 -0
- package/dist/test/src/server/tools/CollectionTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/CollectionTools.js +161 -0
- package/dist/test/src/server/tools/ConfigTools.d.ts +10 -0
- package/dist/test/src/server/tools/ConfigTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/ConfigTools.js +91 -0
- package/dist/test/src/server/tools/ConfigToolsV2.d.ts +10 -0
- package/dist/test/src/server/tools/ConfigToolsV2.d.ts.map +1 -0
- package/dist/test/src/server/tools/ConfigToolsV2.js +110 -0
- package/dist/test/src/server/tools/ElementTools.d.ts +11 -0
- package/dist/test/src/server/tools/ElementTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/ElementTools.js +303 -0
- package/dist/test/src/server/tools/EnhancedIndexTools.d.ts +18 -0
- package/dist/test/src/server/tools/EnhancedIndexTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/EnhancedIndexTools.js +122 -0
- package/dist/test/src/server/tools/PersonaTools.d.ts +12 -0
- package/dist/test/src/server/tools/PersonaTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/PersonaTools.js +66 -0
- package/dist/test/src/server/tools/PortfolioTools.d.ts +12 -0
- package/dist/test/src/server/tools/PortfolioTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/PortfolioTools.js +232 -0
- package/dist/test/src/server/tools/ToolRegistry.d.ts +37 -0
- package/dist/test/src/server/tools/ToolRegistry.d.ts.map +1 -0
- package/dist/test/src/server/tools/ToolRegistry.js +40 -0
- package/dist/test/src/server/tools/UserTools.d.ts +10 -0
- package/dist/test/src/server/tools/UserTools.d.ts.map +1 -0
- package/dist/test/src/server/tools/UserTools.js +51 -0
- package/dist/test/src/server/tools/index.d.ts +14 -0
- package/dist/test/src/server/tools/index.d.ts.map +1 -0
- package/dist/test/src/server/tools/index.js +14 -0
- package/dist/test/src/server/types.d.ts +123 -0
- package/dist/test/src/server/types.d.ts.map +1 -0
- package/dist/test/src/server/types.js +5 -0
- package/dist/test/src/services/BuildInfoService.d.ts +85 -0
- package/dist/test/src/services/BuildInfoService.d.ts.map +1 -0
- package/dist/test/src/services/BuildInfoService.js +272 -0
- package/dist/test/src/sync/PortfolioDownloader.d.ts +27 -0
- package/dist/test/src/sync/PortfolioDownloader.d.ts.map +1 -0
- package/dist/test/src/sync/PortfolioDownloader.js +120 -0
- package/dist/test/src/sync/PortfolioSyncComparer.d.ts +50 -0
- package/dist/test/src/sync/PortfolioSyncComparer.d.ts.map +1 -0
- package/dist/test/src/sync/PortfolioSyncComparer.js +158 -0
- package/dist/test/src/telemetry/OperationalTelemetry.d.ts +108 -0
- package/dist/test/src/telemetry/OperationalTelemetry.d.ts.map +1 -0
- package/dist/test/src/telemetry/OperationalTelemetry.js +398 -0
- package/dist/test/src/telemetry/clientDetector.d.ts +70 -0
- package/dist/test/src/telemetry/clientDetector.d.ts.map +1 -0
- package/dist/test/src/telemetry/clientDetector.js +197 -0
- package/dist/test/src/telemetry/index.d.ts +12 -0
- package/dist/test/src/telemetry/index.d.ts.map +1 -0
- package/dist/test/src/telemetry/index.js +12 -0
- package/dist/test/src/telemetry/types.d.ts +55 -0
- package/dist/test/src/telemetry/types.d.ts.map +1 -0
- package/dist/test/src/telemetry/types.js +20 -0
- package/dist/test/src/tools/debug.d.ts +20 -0
- package/dist/test/src/tools/debug.d.ts.map +1 -0
- package/dist/test/src/tools/debug.js +37 -0
- package/dist/test/src/tools/portfolio/PortfolioElementAdapter.d.ts +54 -0
- package/dist/test/src/tools/portfolio/PortfolioElementAdapter.d.ts.map +1 -0
- package/dist/test/src/tools/portfolio/PortfolioElementAdapter.js +231 -0
- package/dist/test/src/tools/portfolio/submitToPortfolioTool.d.ts +193 -0
- package/dist/test/src/tools/portfolio/submitToPortfolioTool.d.ts.map +1 -0
- package/dist/test/src/tools/portfolio/submitToPortfolioTool.js +2059 -0
- package/dist/test/src/tools/portfolio/types.d.ts +41 -0
- package/dist/test/src/tools/portfolio/types.d.ts.map +1 -0
- package/dist/test/src/tools/portfolio/types.js +15 -0
- package/dist/test/src/types/cache.d.ts +8 -0
- package/dist/test/src/types/cache.d.ts.map +1 -0
- package/dist/test/src/types/cache.js +5 -0
- package/dist/test/src/types/collection.d.ts +74 -0
- package/dist/test/src/types/collection.d.ts.map +1 -0
- package/dist/test/src/types/collection.js +5 -0
- package/dist/test/src/types/elements/IElement.d.ts +123 -0
- package/dist/test/src/types/elements/IElement.d.ts.map +1 -0
- package/dist/test/src/types/elements/IElement.js +30 -0
- package/dist/test/src/types/elements/IElementManager.d.ts +65 -0
- package/dist/test/src/types/elements/IElementManager.d.ts.map +1 -0
- package/dist/test/src/types/elements/IElementManager.js +6 -0
- package/dist/test/src/types/elements/IRatingManager.d.ts +109 -0
- package/dist/test/src/types/elements/IRatingManager.d.ts.map +1 -0
- package/dist/test/src/types/elements/IRatingManager.js +6 -0
- package/dist/test/src/types/elements/IReferenceResolver.d.ts +52 -0
- package/dist/test/src/types/elements/IReferenceResolver.d.ts.map +1 -0
- package/dist/test/src/types/elements/IReferenceResolver.js +6 -0
- package/dist/test/src/types/elements/RatingBreakdowns.d.ts +49 -0
- package/dist/test/src/types/elements/RatingBreakdowns.d.ts.map +1 -0
- package/dist/test/src/types/elements/RatingBreakdowns.js +6 -0
- package/dist/test/src/types/elements/index.d.ts +9 -0
- package/dist/test/src/types/elements/index.d.ts.map +1 -0
- package/dist/test/src/types/elements/index.js +11 -0
- package/dist/test/src/types/index.d.ts +9 -0
- package/dist/test/src/types/index.d.ts.map +1 -0
- package/dist/test/src/types/index.js +9 -0
- package/dist/test/src/types/mcp.d.ts +84 -0
- package/dist/test/src/types/mcp.d.ts.map +1 -0
- package/dist/test/src/types/mcp.js +80 -0
- package/dist/test/src/types/persona.d.ts +30 -0
- package/dist/test/src/types/persona.d.ts.map +1 -0
- package/dist/test/src/types/persona.js +5 -0
- package/dist/test/src/utils/EarlyTerminationSearch.d.ts +41 -0
- package/dist/test/src/utils/EarlyTerminationSearch.d.ts.map +1 -0
- package/dist/test/src/utils/EarlyTerminationSearch.js +164 -0
- package/dist/test/src/utils/ElementFormatter.d.ts +190 -0
- package/dist/test/src/utils/ElementFormatter.d.ts.map +1 -0
- package/dist/test/src/utils/ElementFormatter.js +679 -0
- package/dist/test/src/utils/ErrorHandler.d.ts +86 -0
- package/dist/test/src/utils/ErrorHandler.d.ts.map +1 -0
- package/dist/test/src/utils/ErrorHandler.js +201 -0
- package/dist/test/src/utils/FileDiscoveryUtil.d.ts +53 -0
- package/dist/test/src/utils/FileDiscoveryUtil.d.ts.map +1 -0
- package/dist/test/src/utils/FileDiscoveryUtil.js +169 -0
- package/dist/test/src/utils/FileLock.d.ts +38 -0
- package/dist/test/src/utils/FileLock.d.ts.map +1 -0
- package/dist/test/src/utils/FileLock.js +161 -0
- package/dist/test/src/utils/GitHubRateLimiter.d.ts +100 -0
- package/dist/test/src/utils/GitHubRateLimiter.d.ts.map +1 -0
- package/dist/test/src/utils/GitHubRateLimiter.js +391 -0
- package/dist/test/src/utils/PerformanceMonitor.d.ts +134 -0
- package/dist/test/src/utils/PerformanceMonitor.d.ts.map +1 -0
- package/dist/test/src/utils/PerformanceMonitor.js +347 -0
- package/dist/test/src/utils/RateLimiter.d.ts +80 -0
- package/dist/test/src/utils/RateLimiter.d.ts.map +1 -0
- package/dist/test/src/utils/RateLimiter.js +172 -0
- package/dist/test/src/utils/SecureDownloader.d.ts +241 -0
- package/dist/test/src/utils/SecureDownloader.d.ts.map +1 -0
- package/dist/test/src/utils/SecureDownloader.js +759 -0
- package/dist/test/src/utils/TemplateRenderer.d.ts +63 -0
- package/dist/test/src/utils/TemplateRenderer.d.ts.map +1 -0
- package/dist/test/src/utils/TemplateRenderer.js +154 -0
- package/dist/test/src/utils/ToolCache.d.ts +82 -0
- package/dist/test/src/utils/ToolCache.d.ts.map +1 -0
- package/dist/test/src/utils/ToolCache.js +196 -0
- package/dist/test/src/utils/elementId.d.ts +76 -0
- package/dist/test/src/utils/elementId.d.ts.map +1 -0
- package/dist/test/src/utils/elementId.js +144 -0
- package/dist/test/src/utils/errorCodes.d.ts +136 -0
- package/dist/test/src/utils/errorCodes.d.ts.map +1 -0
- package/dist/test/src/utils/errorCodes.js +87 -0
- package/dist/test/src/utils/fileOperations.d.ts +88 -0
- package/dist/test/src/utils/fileOperations.d.ts.map +1 -0
- package/dist/test/src/utils/fileOperations.js +315 -0
- package/dist/test/src/utils/filesystem.d.ts +29 -0
- package/dist/test/src/utils/filesystem.d.ts.map +1 -0
- package/dist/test/src/utils/filesystem.js +106 -0
- package/dist/test/src/utils/git.d.ts +32 -0
- package/dist/test/src/utils/git.d.ts.map +1 -0
- package/dist/test/src/utils/git.js +65 -0
- package/dist/test/src/utils/index.d.ts +10 -0
- package/dist/test/src/utils/index.d.ts.map +1 -0
- package/dist/test/src/utils/index.js +10 -0
- package/dist/test/src/utils/installation.d.ts +30 -0
- package/dist/test/src/utils/installation.d.ts.map +1 -0
- package/dist/test/src/utils/installation.js +161 -0
- package/dist/test/src/utils/logger.d.ts +90 -0
- package/dist/test/src/utils/logger.d.ts.map +1 -0
- package/dist/test/src/utils/logger.js +284 -0
- package/dist/test/src/utils/migrate-legacy-memories.d.ts +35 -0
- package/dist/test/src/utils/migrate-legacy-memories.d.ts.map +1 -0
- package/dist/test/src/utils/migrate-legacy-memories.js +207 -0
- package/dist/test/src/utils/searchUtils.d.ts +54 -0
- package/dist/test/src/utils/searchUtils.d.ts.map +1 -0
- package/dist/test/src/utils/searchUtils.js +118 -0
- package/dist/test/src/utils/securityUtils.d.ts +59 -0
- package/dist/test/src/utils/securityUtils.d.ts.map +1 -0
- package/dist/test/src/utils/securityUtils.js +96 -0
- package/dist/test/src/utils/version.d.ts +25 -0
- package/dist/test/src/utils/version.d.ts.map +1 -0
- package/dist/test/src/utils/version.js +97 -0
- package/dist/test/test/__fixtures__/testCredentials.d.ts +54 -0
- package/dist/test/test/__fixtures__/testCredentials.d.ts.map +1 -0
- package/dist/test/test/__fixtures__/testCredentials.js +77 -0
- package/dist/test/test/__mocks__/fs/promises.d.ts +38 -0
- package/dist/test/test/__mocks__/fs/promises.d.ts.map +1 -0
- package/dist/test/test/__mocks__/fs/promises.js +56 -0
- package/dist/test/test/__tests__/integration/helpers/file-utils.d.ts +33 -0
- package/dist/test/test/__tests__/integration/helpers/file-utils.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/helpers/file-utils.js +85 -0
- package/dist/test/test/__tests__/integration/helpers/test-fixtures.d.ts +26 -0
- package/dist/test/test/__tests__/integration/helpers/test-fixtures.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/helpers/test-fixtures.js +95 -0
- package/dist/test/test/__tests__/integration/helpers/test-server.d.ts +49 -0
- package/dist/test/test/__tests__/integration/helpers/test-server.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/helpers/test-server.js +114 -0
- package/dist/test/test/__tests__/integration/setup.d.ts +8 -0
- package/dist/test/test/__tests__/integration/setup.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/setup.js +31 -0
- package/dist/test/test/__tests__/integration/teardown.d.ts +5 -0
- package/dist/test/test/__tests__/integration/teardown.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/teardown.js +23 -0
- package/dist/test/test/__tests__/integration/test-utils/permissionTestHelper.d.ts +40 -0
- package/dist/test/test/__tests__/integration/test-utils/permissionTestHelper.d.ts.map +1 -0
- package/dist/test/test/__tests__/integration/test-utils/permissionTestHelper.js +106 -0
- package/dist/test/test/__tests__/security/framework/RapidSecurityTesting.d.ts +34 -0
- package/dist/test/test/__tests__/security/framework/RapidSecurityTesting.d.ts.map +1 -0
- package/dist/test/test/__tests__/security/framework/RapidSecurityTesting.js +224 -0
- package/dist/test/test/__tests__/security/framework/SecurityTestFramework.d.ts +89 -0
- package/dist/test/test/__tests__/security/framework/SecurityTestFramework.d.ts.map +1 -0
- package/dist/test/test/__tests__/security/framework/SecurityTestFramework.js +540 -0
- package/dist/test/test/__tests__/security/index.d.ts +46 -0
- package/dist/test/test/__tests__/security/index.d.ts.map +1 -0
- package/dist/test/test/__tests__/security/index.js +98 -0
- package/dist/test/test/__tests__/security/setup.d.ts +3 -0
- package/dist/test/test/__tests__/security/setup.d.ts.map +1 -0
- package/dist/test/test/__tests__/security/setup.js +23 -0
- package/dist/test/test/__tests__/unit/portfolio/test-setup.d.ts +31 -0
- package/dist/test/test/__tests__/unit/portfolio/test-setup.d.ts.map +1 -0
- package/dist/test/test/__tests__/unit/portfolio/test-setup.js +102 -0
- package/dist/test/test/utils/test-environment.d.ts +80 -0
- package/dist/test/test/utils/test-environment.d.ts.map +1 -0
- package/dist/test/test/utils/test-environment.js +99 -0
- package/package.json +12 -10
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,248 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.9.26] - 2025-11-07
|
|
6
|
+
|
|
7
|
+
**Major Feature Release**: Element Source Priority System & Critical Bug Fixes
|
|
8
|
+
|
|
9
|
+
### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **Element Source Priority System** (#1451, #1452, #1453, #1454, #1455, #1456) 🌟
|
|
12
|
+
- **Intelligent element selection** based on configurable source priority
|
|
13
|
+
- Replaces simple source filtering with advanced priority-based ranking
|
|
14
|
+
- **Priority levels** (configurable per element type):
|
|
15
|
+
- `local` - User's portfolio (highest priority by default)
|
|
16
|
+
- `github` - Personal GitHub portfolio
|
|
17
|
+
- `collection` - Community collection (lowest priority by default)
|
|
18
|
+
- **User-facing API** for source priority configuration via `dollhouse_config` tool
|
|
19
|
+
- **Automatic conflict resolution** when same element exists in multiple sources
|
|
20
|
+
- **Search integration** - UnifiedIndexManager respects source priority in all searches
|
|
21
|
+
- **Installation integration** - ElementInstaller follows priority when installing elements
|
|
22
|
+
- **Comprehensive documentation** - User guides and technical references
|
|
23
|
+
- **Full test coverage** - 3000+ lines of tests including integration tests
|
|
24
|
+
- **Non-breaking** - Falls back to local-first behavior if priority not configured
|
|
25
|
+
- **Configuration persistence** - Saves to `~/.dollhouse/config.yaml`
|
|
26
|
+
|
|
27
|
+
### 🐛 Bug Fixes
|
|
28
|
+
|
|
29
|
+
- **Memory Content Preservation** (#1442)
|
|
30
|
+
- Fixed bug where memory content was lost during YAML import/parsing
|
|
31
|
+
- Ensures all memory data persists correctly through serialization
|
|
32
|
+
- Improved error handling for YAML parsing edge cases
|
|
33
|
+
|
|
34
|
+
- **VerbTriggerManager Critical Bugs** (#1443)
|
|
35
|
+
- Fixed three critical bugs in verb trigger extraction and management
|
|
36
|
+
- Improved reliability of verb-based element search
|
|
37
|
+
- Enhanced error handling and validation
|
|
38
|
+
|
|
39
|
+
- **OAuth Terminal Error Propagation** (#1444)
|
|
40
|
+
- Implements RFC 6749/8628 compliance for OAuth device flow
|
|
41
|
+
- Errors now propagate immediately to terminal instead of hanging
|
|
42
|
+
- Better user experience during authentication failures
|
|
43
|
+
|
|
44
|
+
- **GitHubAuthManager Test Mocks** (#1459)
|
|
45
|
+
- Fixed incomplete Response mock objects causing 8 test failures
|
|
46
|
+
- Added missing `status`, `statusText`, and `headers` properties
|
|
47
|
+
- Ensures proper Fetch API compatibility in tests
|
|
48
|
+
|
|
49
|
+
### 🔧 Technical Improvements
|
|
50
|
+
|
|
51
|
+
- **jsdom Stability** (#1458)
|
|
52
|
+
- Rolled back jsdom from 27.1.0 to 27.0.0 to maintain test stability
|
|
53
|
+
- Avoids ESM/CommonJS incompatibility with parse5 v8
|
|
54
|
+
- Maintains stable test environment across all platforms
|
|
55
|
+
|
|
56
|
+
- **SonarCloud Badges** (docs commit 0f30386b)
|
|
57
|
+
- Restored SonarCloud quality badges to README chunk file
|
|
58
|
+
- Prevents auto-sync workflow from removing badges
|
|
59
|
+
- Ensures badges persist across README regeneration
|
|
60
|
+
|
|
61
|
+
### 📦 Dependency Updates
|
|
62
|
+
|
|
63
|
+
- **@modelcontextprotocol/sdk** 1.20.2 → 1.21.0 (#1439)
|
|
64
|
+
- **posthog-node** 5.10.3 → 5.11.0 (#1441)
|
|
65
|
+
- **@types/archiver** 6.0.4 → 7.0.0 (#1440)
|
|
66
|
+
- **@types/node** 24.9.1 → 24.10.0 (#1438)
|
|
67
|
+
|
|
68
|
+
### 📖 Documentation
|
|
69
|
+
|
|
70
|
+
- **Element Source Priority Documentation** (#1456)
|
|
71
|
+
- Complete user guide for source priority configuration
|
|
72
|
+
- Technical implementation details
|
|
73
|
+
- Best practices and usage examples
|
|
74
|
+
|
|
75
|
+
- **Session Notes**: Comprehensive documentation of:
|
|
76
|
+
- Element Source Priority implementation (6 phases)
|
|
77
|
+
- Bug fixes and investigations
|
|
78
|
+
- Release preparation process
|
|
79
|
+
|
|
80
|
+
### 🎯 Impact
|
|
81
|
+
|
|
82
|
+
**Element Source Priority System**:
|
|
83
|
+
- Advanced element selection replacing simple filtering
|
|
84
|
+
- User control over which sources take precedence
|
|
85
|
+
- Automatic conflict resolution for duplicate elements
|
|
86
|
+
- Foundation for future multi-source element management
|
|
87
|
+
- Seamless integration with existing search and installation flows
|
|
88
|
+
|
|
89
|
+
**Bug Fixes**:
|
|
90
|
+
- Memory data integrity guaranteed
|
|
91
|
+
- Verb-based search reliability improved
|
|
92
|
+
- OAuth authentication experience enhanced
|
|
93
|
+
- Test suite fully passing across all platforms
|
|
94
|
+
|
|
95
|
+
### 🔗 Related Issues & PRs
|
|
96
|
+
|
|
97
|
+
- PR #1451: Source priority configuration system
|
|
98
|
+
- PR #1452: UnifiedIndexManager source priority integration
|
|
99
|
+
- PR #1453: ElementInstaller source priority support
|
|
100
|
+
- PR #1454: User-facing configuration API
|
|
101
|
+
- PR #1455: Integration tests for source priority
|
|
102
|
+
- PR #1456: Comprehensive documentation
|
|
103
|
+
- PR #1442: Memory content preservation fix
|
|
104
|
+
- PR #1443: VerbTriggerManager bug fixes
|
|
105
|
+
- PR #1444: OAuth error propagation
|
|
106
|
+
- PR #1458: jsdom rollback for stability
|
|
107
|
+
- PR #1459: GitHubAuthManager test fixes
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## [1.9.25] - 2025-10-30
|
|
112
|
+
|
|
113
|
+
**Major Feature Release**: Auto-Load Baseline Memories & Production Stability
|
|
114
|
+
|
|
115
|
+
### ✨ Features
|
|
116
|
+
|
|
117
|
+
- **Auto-Load Baseline Memories** (#1430, #1431) 🌟
|
|
118
|
+
- **Self-aware DollhouseMCP**: Server now loads baseline knowledge automatically on startup
|
|
119
|
+
- Eliminates 20-40k token searches for "what can dollhouse do?" - now instant with zero search
|
|
120
|
+
- Users can mark ANY memory for auto-load via `autoLoad: true` metadata flag
|
|
121
|
+
- Priority-based loading system (lower priority number = loads first)
|
|
122
|
+
- Configurable via `~/.dollhouse/config.yaml`:
|
|
123
|
+
- `autoLoad.enabled` - Global on/off switch (default: true)
|
|
124
|
+
- `autoLoad.maxTokenBudget` - Token safety limit (default: 5000)
|
|
125
|
+
- `autoLoad.memories: []` - Explicit memory list (empty = use metadata flags)
|
|
126
|
+
- Includes seed memory: `dollhousemcp-baseline-knowledge.yaml`
|
|
127
|
+
- ~2500 tokens of core capabilities overview
|
|
128
|
+
- Comprehensive trigger words for semantic search
|
|
129
|
+
- Auto-loaded by default (priority: 1)
|
|
130
|
+
- **Use Cases**:
|
|
131
|
+
- Baseline AI context (what DollhouseMCP can do)
|
|
132
|
+
- Team onboarding (project context for new engineers)
|
|
133
|
+
- Agent orchestration (swarm foundation with pre-loaded knowledge)
|
|
134
|
+
- Always-available project knowledge (like CLAUDE.md for Claude Code)
|
|
135
|
+
- Non-breaking: Auto-load failure logs warning but doesn't prevent startup
|
|
136
|
+
- Graceful degradation: Returns empty array on error
|
|
137
|
+
- Production-ready for VC evaluations and agent swarms
|
|
138
|
+
- **Performance Optimization**: Token estimate caching
|
|
139
|
+
- Content hash-based caching (SHA-256, first 16 chars)
|
|
140
|
+
- Max 1,000 cached entries (prevents memory leaks)
|
|
141
|
+
- ~50% improvement for repeated content calculations
|
|
142
|
+
- **Enhanced Error Handling**:
|
|
143
|
+
- Detailed error messages with error type
|
|
144
|
+
- Helpful recovery suggestions for common errors (ENOENT, EACCES, YAML parse)
|
|
145
|
+
- Better diagnostics for troubleshooting
|
|
146
|
+
- **Comprehensive Documentation** (3 new seed memories):
|
|
147
|
+
- `how-to-create-custom-auto-load-memories.yaml` - Complete step-by-step guide
|
|
148
|
+
- `priority-best-practices-for-teams.yaml` - Team coordination strategies
|
|
149
|
+
- `token-estimation-guidelines.yaml` - Optimization techniques and budgeting
|
|
150
|
+
|
|
151
|
+
### 🐛 Bug Fixes
|
|
152
|
+
|
|
153
|
+
- **Extended Node Compatibility CI Failures** (CRITICAL - weeks old) (#1432, #1433, #1434)
|
|
154
|
+
- **Root Cause**: JSDOM/parse5 ESM race condition during Jest teardown
|
|
155
|
+
- ALL 6 platforms (Ubuntu/macOS/Windows × Node 20.x/22.x) were failing
|
|
156
|
+
- 19 test files broken with "Must use import to load ES Module" errors
|
|
157
|
+
- **Phase 1 Fix** (#1433):
|
|
158
|
+
- Fixed jsdom version mismatch (package.json declared 27.0.1, installed 27.0.0)
|
|
159
|
+
- Added `maxConcurrency: 1` to enforce truly serial test suite execution
|
|
160
|
+
- Result: 5 out of 6 platforms passing
|
|
161
|
+
- **Phase 2 Fix** (#1434):
|
|
162
|
+
- Increased memory threshold from 500MB to 650MB for YAML bomb test
|
|
163
|
+
- Windows Node 22.x has ~528MB baseline vs ~400-450MB on Linux/macOS
|
|
164
|
+
- Platform-agnostic threshold accommodates all environments
|
|
165
|
+
- Result: ALL 6 platforms now passing ✅
|
|
166
|
+
- **Technical Details**:
|
|
167
|
+
- JSDOM initialized at module load time in Memory.ts and yamlValidator.ts
|
|
168
|
+
- JSDOM uses CommonJS require() but parse5 7.3.0 is ESM-only
|
|
169
|
+
- Race condition: Jest tears down environment while JSDOM loads parse5
|
|
170
|
+
- CI vs Local: Different npm dependency resolution (nested vs hoisted parse5)
|
|
171
|
+
|
|
172
|
+
- **README Badge Issues** (#1432, #1435)
|
|
173
|
+
- Restored SonarCloud badges (6 quality metrics) after auto-sync removal
|
|
174
|
+
- Fixed Extended Node Compatibility badge URL (was showing main branch failures)
|
|
175
|
+
- Fixed Docker Testing badge URL (was showing main branch old status)
|
|
176
|
+
- All badges now correctly point to develop branch with `?branch=develop`
|
|
177
|
+
- **Root Cause**: README auto-sync workflow syncs FROM main TO develop
|
|
178
|
+
- Overwrote develop's correct badges with main's outdated badges
|
|
179
|
+
- Badge URLs defaulted to main branch without explicit `?branch=` parameter
|
|
180
|
+
|
|
181
|
+
### 🔧 Technical Improvements
|
|
182
|
+
|
|
183
|
+
- **LICENSE Synchronization** (#1432)
|
|
184
|
+
- Synchronized develop LICENSE with main's proven working structure (763-line monolithic)
|
|
185
|
+
- Main branch LICENSE confirmed working with Glama and GitHub licensee
|
|
186
|
+
- Removed `LICENSE-ADDITIONAL-TERMS.md` (develop-only experimental file)
|
|
187
|
+
- Eliminates divergence risk for external license detection tools
|
|
188
|
+
|
|
189
|
+
- **Jest Configuration Optimization** (#1432)
|
|
190
|
+
- Restored optimal maxWorkers configuration for CI environments
|
|
191
|
+
- Added maxConcurrency: 1 for suite-level serialization
|
|
192
|
+
- Prevents race conditions in test suite execution
|
|
193
|
+
- Maintains >96% code coverage across all platforms
|
|
194
|
+
|
|
195
|
+
### 📊 Test Results
|
|
196
|
+
|
|
197
|
+
**Before Fixes**:
|
|
198
|
+
- Extended Node Compatibility: ALL 6 platforms FAILING ❌
|
|
199
|
+
- 19 test files with JSDOM/parse5 errors
|
|
200
|
+
|
|
201
|
+
**After Fixes**:
|
|
202
|
+
- Test Suites: 143 passed, 143 of 146 total ✅
|
|
203
|
+
- Tests: 2,656 passed, 2,760 total ✅
|
|
204
|
+
- Coverage: >96% maintained ✅
|
|
205
|
+
- Extended Node Compatibility: ALL 6 platforms PASSING ✅
|
|
206
|
+
- Ubuntu Node 20.x ✅
|
|
207
|
+
- Ubuntu Node 22.x ✅
|
|
208
|
+
- macOS Node 20.x ✅
|
|
209
|
+
- macOS Node 22.x ✅
|
|
210
|
+
- Windows Node 20.x ✅
|
|
211
|
+
- Windows Node 22.x ✅
|
|
212
|
+
|
|
213
|
+
### 📖 Documentation
|
|
214
|
+
|
|
215
|
+
- **Session Notes**: Comprehensive documentation of:
|
|
216
|
+
- Issue #1430 implementation details
|
|
217
|
+
- CI investigation and resolution process
|
|
218
|
+
- State-of-repo snapshot for future comparison
|
|
219
|
+
- Badge saga timeline and fixes
|
|
220
|
+
|
|
221
|
+
### 🎯 Impact
|
|
222
|
+
|
|
223
|
+
**Auto-Load Memories Feature**:
|
|
224
|
+
- 80% reduction in tokens for capability questions
|
|
225
|
+
- Instant answers to "what can dollhouse do?"
|
|
226
|
+
- Foundation for agent swarm orchestration
|
|
227
|
+
- Self-aware AI system with baseline knowledge
|
|
228
|
+
- Like CLAUDE.md but for DollhouseMCP itself
|
|
229
|
+
|
|
230
|
+
**CI Stability**:
|
|
231
|
+
- Resolved weeks-old critical failures blocking all development
|
|
232
|
+
- 100% CI pass rate across all platforms
|
|
233
|
+
- Production-ready develop branch
|
|
234
|
+
- Accurate badge reporting for contributors
|
|
235
|
+
|
|
236
|
+
### 🔗 Related Issues & PRs
|
|
237
|
+
|
|
238
|
+
- Issue #1430: Auto-load baseline memories feature
|
|
239
|
+
- PR #1431: Auto-load baseline memories implementation
|
|
240
|
+
- PR #1432: License sync, Jest config, SonarCloud badges
|
|
241
|
+
- PR #1433: Extended Node Compatibility Phase 1
|
|
242
|
+
- PR #1434: Extended Node Compatibility Final
|
|
243
|
+
- PR #1435: README badge fixes
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
5
247
|
## [1.9.24] - 2025-10-27
|
|
6
248
|
|
|
7
249
|
**Documentation Release**: Claude Skills Compatibility & Dependency Updates
|