@dollhousemcp/mcp-server 1.5.2 → 1.6.1
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 +65 -0
- package/README.md +497 -114
- package/data/agents/code-reviewer.md +8 -1
- package/data/agents/research-assistant.md +8 -1
- package/data/agents/task-manager.md +8 -1
- package/data/ensembles/business-advisor.md +8 -1
- package/data/ensembles/creative-studio.md +8 -1
- package/data/ensembles/development-team.md +8 -1
- package/data/ensembles/security-analysis-team.md +8 -1
- package/data/memories/conversation-history.md +8 -1
- package/data/memories/learning-progress.md +8 -1
- package/data/memories/project-context.md +8 -1
- package/data/personas/business-consultant.md +8 -1
- package/data/personas/creative-writer.md +8 -1
- package/data/personas/debug-detective.md +8 -1
- package/data/personas/eli5-explainer.md +8 -1
- package/data/personas/security-analyst.md +8 -1
- package/data/personas/technical-analyst.md +8 -1
- package/data/skills/code-review.md +8 -1
- package/data/skills/creative-writing.md +8 -1
- package/data/skills/data-analysis.md +8 -1
- package/data/skills/penetration-testing.md +8 -1
- package/data/skills/research.md +8 -1
- package/data/skills/threat-modeling.md +8 -1
- package/data/skills/translation.md +8 -1
- package/data/templates/code-documentation.md +8 -1
- package/data/templates/email-professional.md +8 -1
- package/data/templates/meeting-notes.md +8 -1
- package/data/templates/penetration-test-report.md +8 -1
- package/data/templates/project-brief.md +8 -1
- package/data/templates/report-executive.md +8 -1
- package/data/templates/security-vulnerability-report.md +8 -1
- package/data/templates/threat-assessment-report.md +8 -1
- package/dist/auth/GitHubAuthManager.d.ts +16 -1
- package/dist/auth/GitHubAuthManager.d.ts.map +1 -1
- package/dist/auth/GitHubAuthManager.js +61 -19
- package/dist/benchmarks/IndexPerformanceBenchmark.d.ts +98 -0
- package/dist/benchmarks/IndexPerformanceBenchmark.d.ts.map +1 -0
- package/dist/benchmarks/IndexPerformanceBenchmark.js +531 -0
- package/dist/cache/CollectionCache.d.ts.map +1 -1
- package/dist/cache/CollectionCache.js +13 -3
- package/dist/cache/CollectionIndexCache.d.ts +77 -0
- package/dist/cache/CollectionIndexCache.d.ts.map +1 -0
- package/dist/cache/CollectionIndexCache.js +349 -0
- package/dist/cache/LRUCache.d.ts +93 -0
- package/dist/cache/LRUCache.d.ts.map +1 -0
- package/dist/cache/LRUCache.js +299 -0
- package/dist/cache/index.d.ts +1 -0
- package/dist/cache/index.d.ts.map +1 -1
- package/dist/cache/index.js +2 -1
- package/dist/collection/CollectionBrowser.d.ts +21 -1
- package/dist/collection/CollectionBrowser.d.ts.map +1 -1
- package/dist/collection/CollectionBrowser.js +130 -10
- package/dist/collection/CollectionIndexManager.d.ts +151 -0
- package/dist/collection/CollectionIndexManager.d.ts.map +1 -0
- package/dist/collection/CollectionIndexManager.js +499 -0
- package/dist/collection/CollectionSearch.d.ts +55 -0
- package/dist/collection/CollectionSearch.d.ts.map +1 -1
- package/dist/collection/CollectionSearch.js +338 -13
- package/dist/collection/CollectionSeeder.d.ts.map +1 -1
- package/dist/collection/CollectionSeeder.js +38 -1
- package/dist/collection/ElementInstaller.d.ts +31 -0
- package/dist/collection/ElementInstaller.d.ts.map +1 -1
- package/dist/collection/ElementInstaller.js +77 -15
- package/dist/collection/PersonaSubmitter.d.ts +1 -1
- package/dist/collection/PersonaSubmitter.d.ts.map +1 -1
- package/dist/collection/PersonaSubmitter.js +2 -2
- package/dist/collection/index.d.ts +1 -0
- package/dist/collection/index.d.ts.map +1 -1
- package/dist/collection/index.js +2 -1
- package/dist/config/ConfigManager.d.ts +78 -0
- package/dist/config/ConfigManager.d.ts.map +1 -0
- package/dist/config/ConfigManager.js +216 -0
- package/dist/config/element-types.d.ts +135 -0
- package/dist/config/element-types.d.ts.map +1 -0
- package/dist/config/element-types.js +108 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +3 -1
- package/dist/config/portfolio-constants.d.ts +83 -0
- package/dist/config/portfolio-constants.d.ts.map +1 -0
- package/dist/config/portfolio-constants.js +99 -0
- package/dist/elements/BaseElement.d.ts +14 -2
- package/dist/elements/BaseElement.d.ts.map +1 -1
- package/dist/elements/BaseElement.js +88 -6
- package/dist/elements/agents/Agent.d.ts +10 -1
- package/dist/elements/agents/Agent.d.ts.map +1 -1
- package/dist/elements/agents/Agent.js +66 -19
- package/dist/elements/agents/AgentManager.d.ts +2 -0
- package/dist/elements/agents/AgentManager.d.ts.map +1 -1
- package/dist/elements/agents/AgentManager.js +12 -10
- package/dist/elements/skills/Skill.d.ts +10 -1
- package/dist/elements/skills/Skill.d.ts.map +1 -1
- package/dist/elements/skills/Skill.js +40 -3
- package/dist/elements/skills/SkillManager.d.ts +1 -0
- package/dist/elements/skills/SkillManager.d.ts.map +1 -1
- package/dist/elements/skills/SkillManager.js +10 -4
- package/dist/elements/templates/Template.d.ts +10 -1
- package/dist/elements/templates/Template.d.ts.map +1 -1
- package/dist/elements/templates/Template.js +35 -18
- package/dist/elements/templates/TemplateManager.d.ts +1 -1
- package/dist/elements/templates/TemplateManager.d.ts.map +1 -1
- package/dist/elements/templates/TemplateManager.js +6 -5
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/dist/index.barrel.d.ts +1 -2
- package/dist/index.barrel.d.ts.map +1 -1
- package/dist/index.barrel.js +2 -4
- package/dist/index.d.ts +143 -25
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1883 -310
- package/dist/persona/PersonaElement.d.ts +10 -0
- package/dist/persona/PersonaElement.d.ts.map +1 -1
- package/dist/persona/PersonaElement.js +55 -32
- package/dist/persona/PersonaElementManager.d.ts.map +1 -1
- package/dist/persona/PersonaElementManager.js +13 -11
- package/dist/persona/PersonaLoader.d.ts.map +1 -1
- package/dist/persona/PersonaLoader.js +8 -2
- package/dist/persona/export-import/PersonaImporter.d.ts.map +1 -1
- package/dist/persona/export-import/PersonaImporter.js +24 -5
- package/dist/persona/export-import/PersonaSharer.d.ts +21 -0
- package/dist/persona/export-import/PersonaSharer.d.ts.map +1 -1
- package/dist/persona/export-import/PersonaSharer.js +198 -22
- package/dist/portfolio/DefaultElementProvider.d.ts +90 -0
- package/dist/portfolio/DefaultElementProvider.d.ts.map +1 -1
- package/dist/portfolio/DefaultElementProvider.js +499 -7
- package/dist/portfolio/GitHubPortfolioIndexer.d.ts +129 -0
- package/dist/portfolio/GitHubPortfolioIndexer.d.ts.map +1 -0
- package/dist/portfolio/GitHubPortfolioIndexer.js +475 -0
- package/dist/portfolio/MigrationManager.d.ts.map +1 -1
- package/dist/portfolio/MigrationManager.js +136 -3
- package/dist/portfolio/PortfolioIndexManager.d.ts +130 -0
- package/dist/portfolio/PortfolioIndexManager.d.ts.map +1 -0
- package/dist/portfolio/PortfolioIndexManager.js +478 -0
- package/dist/portfolio/PortfolioManager.d.ts +5 -0
- package/dist/portfolio/PortfolioManager.d.ts.map +1 -1
- package/dist/portfolio/PortfolioManager.js +61 -20
- package/dist/portfolio/PortfolioRepoManager.d.ts +75 -0
- package/dist/portfolio/PortfolioRepoManager.d.ts.map +1 -0
- package/dist/portfolio/PortfolioRepoManager.js +337 -0
- package/dist/portfolio/UnifiedIndexManager.d.ts +388 -0
- package/dist/portfolio/UnifiedIndexManager.d.ts.map +1 -0
- package/dist/portfolio/UnifiedIndexManager.js +1434 -0
- package/dist/portfolio/index.d.ts +15 -0
- package/dist/portfolio/index.d.ts.map +1 -0
- package/dist/portfolio/index.js +15 -0
- package/dist/portfolio/types.d.ts +7 -0
- package/dist/portfolio/types.d.ts.map +1 -1
- package/dist/portfolio/types.js +6 -1
- package/dist/security/InputValidator.d.ts.map +1 -1
- package/dist/security/InputValidator.js +50 -48
- package/dist/security/audit/SecurityAuditor.d.ts.map +1 -1
- package/dist/security/audit/SecurityAuditor.js +17 -9
- package/dist/security/audit/config/suppressions.d.ts.map +1 -1
- package/dist/security/audit/config/suppressions.js +19 -3
- package/dist/security/contentValidator.d.ts +2 -0
- package/dist/security/contentValidator.d.ts.map +1 -1
- package/dist/security/contentValidator.js +115 -4
- package/dist/security/secureYamlParser.d.ts +1 -0
- package/dist/security/secureYamlParser.d.ts.map +1 -1
- package/dist/security/secureYamlParser.js +29 -7
- 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/security/tokenManager.d.ts +1 -1
- package/dist/security/tokenManager.d.ts.map +1 -1
- package/dist/security/tokenManager.js +30 -10
- package/dist/server/ServerSetup.d.ts +22 -2
- package/dist/server/ServerSetup.d.ts.map +1 -1
- package/dist/server/ServerSetup.js +77 -12
- package/dist/server/tools/AuthTools.d.ts.map +1 -1
- package/dist/server/tools/AuthTools.js +33 -1
- package/dist/server/tools/BuildInfoTools.d.ts +25 -0
- package/dist/server/tools/BuildInfoTools.d.ts.map +1 -0
- package/dist/server/tools/BuildInfoTools.js +36 -0
- package/dist/server/tools/CollectionTools.d.ts.map +1 -1
- package/dist/server/tools/CollectionTools.js +55 -46
- package/dist/server/tools/ConfigTools.d.ts.map +1 -1
- package/dist/server/tools/ConfigTools.js +29 -1
- package/dist/server/tools/PersonaTools.d.ts +4 -2
- package/dist/server/tools/PersonaTools.d.ts.map +1 -1
- package/dist/server/tools/PersonaTools.js +5 -152
- package/dist/server/tools/PortfolioTools.d.ts +12 -0
- package/dist/server/tools/PortfolioTools.d.ts.map +1 -0
- package/dist/server/tools/PortfolioTools.js +221 -0
- package/dist/server/tools/index.d.ts +3 -1
- package/dist/server/tools/index.d.ts.map +1 -1
- package/dist/server/tools/index.js +4 -2
- package/dist/server/types.d.ts +40 -5
- package/dist/server/types.d.ts.map +1 -1
- package/dist/server/types.js +1 -1
- package/dist/services/BuildInfoService.d.ts +84 -0
- package/dist/services/BuildInfoService.d.ts.map +1 -0
- package/dist/services/BuildInfoService.js +271 -0
- package/dist/tools/portfolio/PortfolioElementAdapter.d.ts +54 -0
- package/dist/tools/portfolio/PortfolioElementAdapter.d.ts.map +1 -0
- package/dist/tools/portfolio/PortfolioElementAdapter.js +229 -0
- package/dist/tools/portfolio/submitToPortfolioTool.d.ts +164 -0
- package/dist/tools/portfolio/submitToPortfolioTool.d.ts.map +1 -0
- package/dist/tools/portfolio/submitToPortfolioTool.js +1523 -0
- package/dist/tools/portfolio/types.d.ts +41 -0
- package/dist/tools/portfolio/types.d.ts.map +1 -0
- package/dist/tools/portfolio/types.js +15 -0
- package/dist/types/collection.d.ts +51 -0
- package/dist/types/collection.d.ts.map +1 -1
- package/dist/types/collection.js +1 -1
- package/dist/utils/EarlyTerminationSearch.d.ts +41 -0
- package/dist/utils/EarlyTerminationSearch.d.ts.map +1 -0
- package/dist/utils/EarlyTerminationSearch.js +164 -0
- package/dist/utils/ErrorHandler.d.ts +86 -0
- package/dist/utils/ErrorHandler.d.ts.map +1 -0
- package/dist/utils/ErrorHandler.js +201 -0
- package/dist/utils/FileDiscoveryUtil.d.ts +53 -0
- package/dist/utils/FileDiscoveryUtil.d.ts.map +1 -0
- package/dist/utils/FileDiscoveryUtil.js +169 -0
- package/dist/utils/GitHubRateLimiter.d.ts +88 -0
- package/dist/utils/GitHubRateLimiter.d.ts.map +1 -0
- package/dist/utils/GitHubRateLimiter.js +315 -0
- package/dist/utils/PerformanceMonitor.d.ts +134 -0
- package/dist/utils/PerformanceMonitor.d.ts.map +1 -0
- package/dist/utils/PerformanceMonitor.js +347 -0
- package/dist/utils/RateLimiter.d.ts.map +1 -0
- package/dist/utils/RateLimiter.js +172 -0
- package/dist/utils/SecureDownloader.d.ts +241 -0
- package/dist/utils/SecureDownloader.d.ts.map +1 -0
- package/dist/utils/SecureDownloader.js +759 -0
- package/dist/utils/ToolCache.d.ts +82 -0
- package/dist/utils/ToolCache.d.ts.map +1 -0
- package/dist/utils/ToolCache.js +196 -0
- package/dist/utils/errorCodes.d.ts +136 -0
- package/dist/utils/errorCodes.d.ts.map +1 -0
- package/dist/utils/errorCodes.js +87 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +4 -1
- package/dist/utils/installation.d.ts +1 -1
- package/dist/utils/installation.d.ts.map +1 -1
- package/dist/utils/installation.js +9 -8
- package/dist/utils/searchUtils.d.ts +31 -0
- package/dist/utils/searchUtils.d.ts.map +1 -1
- package/dist/utils/searchUtils.js +62 -1
- package/package.json +17 -7
- package/dist/config/updateConfig.d.ts +0 -84
- package/dist/config/updateConfig.d.ts.map +0 -1
- package/dist/config/updateConfig.js +0 -148
- package/dist/server/tools/UpdateTools.d.ts +0 -10
- package/dist/server/tools/UpdateTools.d.ts.map +0 -1
- package/dist/server/tools/UpdateTools.js +0 -85
- package/dist/update/BackupManager.d.ts +0 -63
- package/dist/update/BackupManager.d.ts.map +0 -1
- package/dist/update/BackupManager.js +0 -370
- package/dist/update/DependencyChecker.d.ts +0 -41
- package/dist/update/DependencyChecker.d.ts.map +0 -1
- package/dist/update/DependencyChecker.js +0 -132
- package/dist/update/RateLimiter.d.ts.map +0 -1
- package/dist/update/RateLimiter.js +0 -172
- package/dist/update/SignatureVerifier.d.ts +0 -71
- package/dist/update/SignatureVerifier.d.ts.map +0 -1
- package/dist/update/SignatureVerifier.js +0 -214
- package/dist/update/UpdateChecker.d.ts +0 -132
- package/dist/update/UpdateChecker.d.ts.map +0 -1
- package/dist/update/UpdateChecker.js +0 -506
- package/dist/update/UpdateManager.d.ts +0 -60
- package/dist/update/UpdateManager.d.ts.map +0 -1
- package/dist/update/UpdateManager.js +0 -730
- package/dist/update/VersionManager.d.ts +0 -31
- package/dist/update/VersionManager.d.ts.map +0 -1
- package/dist/update/VersionManager.js +0 -181
- package/dist/update/index.d.ts +0 -9
- package/dist/update/index.d.ts.map +0 -1
- package/dist/update/index.js +0 -9
- /package/dist/{update → utils}/RateLimiter.d.ts +0 -0
|
@@ -46,8 +46,15 @@ risk_thresholds:
|
|
|
46
46
|
max_file_size: 500
|
|
47
47
|
max_function_length: 50
|
|
48
48
|
security_score_minimum: 8.0
|
|
49
|
+
_dollhouseMCPTest: true
|
|
50
|
+
_testMetadata:
|
|
51
|
+
suite: "bundled-test-data"
|
|
52
|
+
purpose: "Edge case validation testing"
|
|
53
|
+
created: "2025-08-20"
|
|
54
|
+
version: "1.0.0"
|
|
55
|
+
migrated: "2025-08-20T23:47:24.340Z"
|
|
56
|
+
originalPath: "data/agents/code-reviewer.md"
|
|
49
57
|
---
|
|
50
|
-
|
|
51
58
|
# Code Reviewer Agent
|
|
52
59
|
|
|
53
60
|
An intelligent agent that performs automated code reviews focusing on security, performance, quality, and best practices.
|
|
@@ -40,8 +40,15 @@ risk_thresholds:
|
|
|
40
40
|
max_research_depth: 10
|
|
41
41
|
fact_check_requirement: 0.7
|
|
42
42
|
bias_detection_sensitivity: 0.8
|
|
43
|
+
_dollhouseMCPTest: true
|
|
44
|
+
_testMetadata:
|
|
45
|
+
suite: "bundled-test-data"
|
|
46
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
47
|
+
created: "2025-08-20"
|
|
48
|
+
version: "1.0.0"
|
|
49
|
+
migrated: "2025-08-20T23:47:24.340Z"
|
|
50
|
+
originalPath: "data/agents/research-assistant.md"
|
|
43
51
|
---
|
|
44
|
-
|
|
45
52
|
# Research Assistant Agent
|
|
46
53
|
|
|
47
54
|
An autonomous agent designed to conduct comprehensive research, validate information, and synthesize findings into actionable insights.
|
|
@@ -40,8 +40,15 @@ risk_thresholds:
|
|
|
40
40
|
max_task_age_days: 90
|
|
41
41
|
min_progress_rate: 0.1
|
|
42
42
|
resource_utilization_cap: 0.9
|
|
43
|
+
_dollhouseMCPTest: true
|
|
44
|
+
_testMetadata:
|
|
45
|
+
suite: "bundled-test-data"
|
|
46
|
+
purpose: "Workflow integration testing"
|
|
47
|
+
created: "2025-08-20"
|
|
48
|
+
version: "1.0.0"
|
|
49
|
+
migrated: "2025-08-20T23:47:24.341Z"
|
|
50
|
+
originalPath: "data/agents/task-manager.md"
|
|
43
51
|
---
|
|
44
|
-
|
|
45
52
|
# Task Manager Agent
|
|
46
53
|
|
|
47
54
|
An intelligent agent designed to manage tasks, optimize workflows, and ensure project success through systematic planning and execution.
|
|
@@ -65,8 +65,15 @@ elements:
|
|
|
65
65
|
activation: "conditional"
|
|
66
66
|
condition: "project_planning || implementation_phase"
|
|
67
67
|
purpose: "Project execution and resource management"
|
|
68
|
+
_dollhouseMCPTest: true
|
|
69
|
+
_testMetadata:
|
|
70
|
+
suite: "bundled-test-data"
|
|
71
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
72
|
+
created: "2025-08-20"
|
|
73
|
+
version: "1.0.0"
|
|
74
|
+
migrated: "2025-08-20T23:47:24.341Z"
|
|
75
|
+
originalPath: "data/ensembles/business-advisor.md"
|
|
68
76
|
---
|
|
69
|
-
|
|
70
77
|
# Business Advisor Ensemble
|
|
71
78
|
|
|
72
79
|
A comprehensive business advisory ensemble that combines strategic thinking, data analysis, market research, and project management to provide executive-level business guidance and implementation support.
|
|
@@ -57,8 +57,15 @@ elements:
|
|
|
57
57
|
priority: 90
|
|
58
58
|
activation: "always"
|
|
59
59
|
purpose: "Maintain creative continuity and style preferences"
|
|
60
|
+
_dollhouseMCPTest: true
|
|
61
|
+
_testMetadata:
|
|
62
|
+
suite: "bundled-test-data"
|
|
63
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
64
|
+
created: "2025-08-20"
|
|
65
|
+
version: "1.0.0"
|
|
66
|
+
migrated: "2025-08-20T23:47:24.341Z"
|
|
67
|
+
originalPath: "data/ensembles/creative-studio.md"
|
|
60
68
|
---
|
|
61
|
-
|
|
62
69
|
# Creative Studio Ensemble
|
|
63
70
|
|
|
64
71
|
A dynamic creative ensemble that combines storytelling expertise, writing skills, research capabilities, and cultural adaptation to produce compelling content across multiple formats and languages.
|
|
@@ -57,8 +57,15 @@ elements:
|
|
|
57
57
|
priority: 80
|
|
58
58
|
activation: "always"
|
|
59
59
|
purpose: "Coordinate tasks and track progress"
|
|
60
|
+
_dollhouseMCPTest: true
|
|
61
|
+
_testMetadata:
|
|
62
|
+
suite: "bundled-test-data"
|
|
63
|
+
purpose: "Workflow integration testing"
|
|
64
|
+
created: "2025-08-20"
|
|
65
|
+
version: "1.0.0"
|
|
66
|
+
migrated: "2025-08-20T23:47:24.342Z"
|
|
67
|
+
originalPath: "data/ensembles/development-team.md"
|
|
60
68
|
---
|
|
61
|
-
|
|
62
69
|
# Development Team Ensemble
|
|
63
70
|
|
|
64
71
|
A comprehensive ensemble that combines multiple specialized elements to function as a complete software development team. This ensemble provides architecture design, implementation, debugging, documentation, and project management capabilities.
|
|
@@ -90,8 +90,15 @@ elements:
|
|
|
90
90
|
activation: "conditional"
|
|
91
91
|
condition: "automated_review_requested || large_codebase"
|
|
92
92
|
purpose: "Automated security code analysis"
|
|
93
|
+
_dollhouseMCPTest: true
|
|
94
|
+
_testMetadata:
|
|
95
|
+
suite: "bundled-test-data"
|
|
96
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
97
|
+
created: "2025-08-20"
|
|
98
|
+
version: "1.0.0"
|
|
99
|
+
migrated: "2025-08-20T23:47:24.342Z"
|
|
100
|
+
originalPath: "data/ensembles/security-analysis-team.md"
|
|
93
101
|
---
|
|
94
|
-
|
|
95
102
|
# Security Analysis Team Ensemble
|
|
96
103
|
|
|
97
104
|
An elite security analysis ensemble that combines the expertise of seasoned security professionals with advanced testing methodologies and comprehensive reporting capabilities. This ensemble represents a complete security assessment team capable of conducting everything from code reviews to red team exercises.
|
|
@@ -43,8 +43,15 @@ schema:
|
|
|
43
43
|
active_topics: "array"
|
|
44
44
|
completed_topics: "array"
|
|
45
45
|
parked_topics: "array"
|
|
46
|
+
_dollhouseMCPTest: true
|
|
47
|
+
_testMetadata:
|
|
48
|
+
suite: "bundled-test-data"
|
|
49
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
50
|
+
created: "2025-08-20"
|
|
51
|
+
version: "1.0.0"
|
|
52
|
+
migrated: "2025-08-20T23:47:24.342Z"
|
|
53
|
+
originalPath: "data/memories/conversation-history.md"
|
|
46
54
|
---
|
|
47
|
-
|
|
48
55
|
# Conversation History Memory
|
|
49
56
|
|
|
50
57
|
This memory element provides continuity across conversation sessions, maintaining context, preferences, and ongoing topics to enable more natural and productive interactions.
|
|
@@ -44,8 +44,15 @@ schema:
|
|
|
44
44
|
in_progress: "array"
|
|
45
45
|
planned: "array"
|
|
46
46
|
prerequisites: "object"
|
|
47
|
+
_dollhouseMCPTest: true
|
|
48
|
+
_testMetadata:
|
|
49
|
+
suite: "bundled-test-data"
|
|
50
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
51
|
+
created: "2025-08-20"
|
|
52
|
+
version: "1.0.0"
|
|
53
|
+
migrated: "2025-08-20T23:47:24.343Z"
|
|
54
|
+
originalPath: "data/memories/learning-progress.md"
|
|
47
55
|
---
|
|
48
|
-
|
|
49
56
|
# Learning Progress Memory
|
|
50
57
|
|
|
51
58
|
This memory element creates a personalized learning experience by tracking progress, adapting to learning patterns, and maintaining a comprehensive knowledge map.
|
|
@@ -45,8 +45,15 @@ schema:
|
|
|
45
45
|
dependencies: "array"
|
|
46
46
|
api_contracts: "object"
|
|
47
47
|
known_issues: "array"
|
|
48
|
+
_dollhouseMCPTest: true
|
|
49
|
+
_testMetadata:
|
|
50
|
+
suite: "bundled-test-data"
|
|
51
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
52
|
+
created: "2025-08-20"
|
|
53
|
+
version: "1.0.0"
|
|
54
|
+
migrated: "2025-08-20T23:47:24.343Z"
|
|
55
|
+
originalPath: "data/memories/project-context.md"
|
|
48
56
|
---
|
|
49
|
-
|
|
50
57
|
# Project Context Memory
|
|
51
58
|
|
|
52
59
|
This memory element maintains comprehensive project knowledge including technical decisions, team information, architecture details, and historical context.
|
|
@@ -4,8 +4,15 @@ description: "A strategic advisor focused on ROI, implementation, and practical
|
|
|
4
4
|
triggers: ["business", "strategy", "roi", "implementation", "market", "revenue"]
|
|
5
5
|
version: "1.0"
|
|
6
6
|
author: "Persona MCP Server"
|
|
7
|
+
_dollhouseMCPTest: true
|
|
8
|
+
_testMetadata:
|
|
9
|
+
suite: "bundled-test-data"
|
|
10
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
11
|
+
created: "2025-08-20"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
migrated: "2025-08-20T23:47:24.344Z"
|
|
14
|
+
originalPath: "data/personas/business-consultant.md"
|
|
7
15
|
---
|
|
8
|
-
|
|
9
16
|
# Business Consultant
|
|
10
17
|
|
|
11
18
|
You are a Business Consultant persona - a strategic advisor who translates technical possibilities into business opportunities. Your focus is on practical outcomes, ROI, and implementable strategies.
|
|
@@ -14,8 +14,15 @@ price: "free"
|
|
|
14
14
|
revenue_split: "80/20"
|
|
15
15
|
license: "CC-BY-SA-4.0"
|
|
16
16
|
created_date: "2025-07-01"
|
|
17
|
+
_dollhouseMCPTest: true
|
|
18
|
+
_testMetadata:
|
|
19
|
+
suite: "bundled-test-data"
|
|
20
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
21
|
+
created: "2025-08-20"
|
|
22
|
+
version: "1.0.0"
|
|
23
|
+
migrated: "2025-08-20T23:47:24.345Z"
|
|
24
|
+
originalPath: "data/personas/creative-writer.md"
|
|
17
25
|
---
|
|
18
|
-
|
|
19
26
|
# Creative Writer
|
|
20
27
|
|
|
21
28
|
You are a Creative Writer persona - an imaginative storyteller who transforms any topic into engaging, narrative-driven content. Your mission is to make information memorable through the power of story.
|
|
@@ -4,8 +4,15 @@ description: "A systematic investigator specializing in troubleshooting and root
|
|
|
4
4
|
triggers: ["debug", "troubleshoot", "error", "investigate", "bug", "problem"]
|
|
5
5
|
version: "1.0"
|
|
6
6
|
author: "Persona MCP Server"
|
|
7
|
+
_dollhouseMCPTest: true
|
|
8
|
+
_testMetadata:
|
|
9
|
+
suite: "bundled-test-data"
|
|
10
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
11
|
+
created: "2025-08-20"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
migrated: "2025-08-20T23:47:24.345Z"
|
|
14
|
+
originalPath: "data/personas/debug-detective.md"
|
|
7
15
|
---
|
|
8
|
-
|
|
9
16
|
# Debug Detective
|
|
10
17
|
|
|
11
18
|
You are a Debug Detective persona - a methodical investigator who excels at hunting down bugs and solving mysterious technical problems. Your approach is systematic, evidence-based, and thorough.
|
|
@@ -4,8 +4,15 @@ description: "A patient teacher who simplifies complex topics using everyday ana
|
|
|
4
4
|
triggers: ["explain", "simple", "beginner", "eli5", "teach", "basics"]
|
|
5
5
|
version: "1.0"
|
|
6
6
|
author: "Persona MCP Server"
|
|
7
|
+
_dollhouseMCPTest: true
|
|
8
|
+
_testMetadata:
|
|
9
|
+
suite: "bundled-test-data"
|
|
10
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
11
|
+
created: "2025-08-20"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
migrated: "2025-08-20T23:47:24.345Z"
|
|
14
|
+
originalPath: "data/personas/eli5-explainer.md"
|
|
7
15
|
---
|
|
8
|
-
|
|
9
16
|
# ELI5 Explainer
|
|
10
17
|
|
|
11
18
|
You are an ELI5 (Explain Like I'm 5) Explainer persona - a patient teacher who makes complex topics accessible to everyone. Your superpower is transforming intimidating concepts into simple, relatable explanations.
|
|
@@ -4,8 +4,15 @@ description: "Highly detail-oriented code security expert focused on vulnerabili
|
|
|
4
4
|
triggers: ["security", "vulnerability", "pentest", "secure", "audit", "CVE", "OWASP"]
|
|
5
5
|
version: "1.0"
|
|
6
6
|
author: "DollhouseMCP"
|
|
7
|
+
_dollhouseMCPTest: true
|
|
8
|
+
_testMetadata:
|
|
9
|
+
suite: "bundled-test-data"
|
|
10
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
11
|
+
created: "2025-08-20"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
migrated: "2025-08-20T23:47:24.345Z"
|
|
14
|
+
originalPath: "data/personas/security-analyst.md"
|
|
7
15
|
---
|
|
8
|
-
|
|
9
16
|
# Security Analyst
|
|
10
17
|
|
|
11
18
|
You are a Security Analyst persona - a meticulous code security expert with deep knowledge of vulnerability patterns, secure coding practices, and threat modeling. Your approach is thorough, systematic, and paranoid in the best way possible.
|
|
@@ -4,8 +4,15 @@ description: "A systematic problem-solver focused on deep technical analysis and
|
|
|
4
4
|
triggers: ["technical", "analysis", "architecture", "debugging", "systematic"]
|
|
5
5
|
version: "1.0"
|
|
6
6
|
author: "Persona MCP Server"
|
|
7
|
+
_dollhouseMCPTest: true
|
|
8
|
+
_testMetadata:
|
|
9
|
+
suite: "bundled-test-data"
|
|
10
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
11
|
+
created: "2025-08-20"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
migrated: "2025-08-20T23:47:24.346Z"
|
|
14
|
+
originalPath: "data/personas/technical-analyst.md"
|
|
7
15
|
---
|
|
8
|
-
|
|
9
16
|
# Technical Analyst
|
|
10
17
|
|
|
11
18
|
You are a Technical Analyst persona - a methodical investigator who approaches problems with systematic rigor and evidence-based reasoning. Your expertise lies in breaking down complex technical challenges into manageable components.
|
|
@@ -26,8 +26,15 @@ parameters:
|
|
|
26
26
|
description: "Minimum severity to report"
|
|
27
27
|
default: "info"
|
|
28
28
|
enum: ["error", "warning", "info", "style"]
|
|
29
|
+
_dollhouseMCPTest: true
|
|
30
|
+
_testMetadata:
|
|
31
|
+
suite: "bundled-test-data"
|
|
32
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
33
|
+
created: "2025-08-20"
|
|
34
|
+
version: "1.0.0"
|
|
35
|
+
migrated: "2025-08-20T23:47:24.346Z"
|
|
36
|
+
originalPath: "data/skills/code-review.md"
|
|
29
37
|
---
|
|
30
|
-
|
|
31
38
|
# Code Review Skill
|
|
32
39
|
|
|
33
40
|
This skill provides systematic code analysis capabilities for identifying issues, suggesting improvements, and ensuring code quality.
|
|
@@ -32,8 +32,15 @@ parameters:
|
|
|
32
32
|
description: "Stylistic elements to include"
|
|
33
33
|
default: ["dialogue", "description"]
|
|
34
34
|
enum: ["dialogue", "description", "action", "introspection", "humor", "metaphor", "symbolism"]
|
|
35
|
+
_dollhouseMCPTest: true
|
|
36
|
+
_testMetadata:
|
|
37
|
+
suite: "bundled-test-data"
|
|
38
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
39
|
+
created: "2025-08-20"
|
|
40
|
+
version: "1.0.0"
|
|
41
|
+
migrated: "2025-08-20T23:47:24.346Z"
|
|
42
|
+
originalPath: "data/skills/creative-writing.md"
|
|
35
43
|
---
|
|
36
|
-
|
|
37
44
|
# Creative Writing Skill
|
|
38
45
|
|
|
39
46
|
This skill enhances creative writing abilities for crafting compelling narratives, developing rich characters, and employing advanced literary techniques.
|
|
@@ -33,8 +33,15 @@ parameters:
|
|
|
33
33
|
description: "How to handle missing values"
|
|
34
34
|
default: "interpolate"
|
|
35
35
|
enum: ["ignore", "interpolate", "drop", "flag"]
|
|
36
|
+
_dollhouseMCPTest: true
|
|
37
|
+
_testMetadata:
|
|
38
|
+
suite: "bundled-test-data"
|
|
39
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
40
|
+
created: "2025-08-20"
|
|
41
|
+
version: "1.0.0"
|
|
42
|
+
migrated: "2025-08-20T23:47:24.346Z"
|
|
43
|
+
originalPath: "data/skills/data-analysis.md"
|
|
36
44
|
---
|
|
37
|
-
|
|
38
45
|
# Data Analysis Skill
|
|
39
46
|
|
|
40
47
|
This skill provides comprehensive data analysis capabilities for extracting insights, identifying patterns, and making data-driven recommendations.
|
|
@@ -31,8 +31,15 @@ parameters:
|
|
|
31
31
|
description: "How stealthy to be"
|
|
32
32
|
default: "normal"
|
|
33
33
|
enum: ["aggressive", "normal", "stealth", "passive"]
|
|
34
|
+
_dollhouseMCPTest: true
|
|
35
|
+
_testMetadata:
|
|
36
|
+
suite: "bundled-test-data"
|
|
37
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
38
|
+
created: "2025-08-20"
|
|
39
|
+
version: "1.0.0"
|
|
40
|
+
migrated: "2025-08-20T23:47:24.347Z"
|
|
41
|
+
originalPath: "data/skills/penetration-testing.md"
|
|
34
42
|
---
|
|
35
|
-
|
|
36
43
|
# Penetration Testing Skill
|
|
37
44
|
|
|
38
45
|
This skill provides systematic penetration testing capabilities using industry-standard methodologies to identify security vulnerabilities through controlled, ethical attacks.
|
package/data/skills/research.md
CHANGED
|
@@ -30,8 +30,15 @@ parameters:
|
|
|
30
30
|
type: "boolean"
|
|
31
31
|
description: "Verify claims and cross-reference"
|
|
32
32
|
default: true
|
|
33
|
+
_dollhouseMCPTest: true
|
|
34
|
+
_testMetadata:
|
|
35
|
+
suite: "bundled-test-data"
|
|
36
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
37
|
+
created: "2025-08-20"
|
|
38
|
+
version: "1.0.0"
|
|
39
|
+
migrated: "2025-08-20T23:47:24.347Z"
|
|
40
|
+
originalPath: "data/skills/research.md"
|
|
33
41
|
---
|
|
34
|
-
|
|
35
42
|
# Research Skill
|
|
36
43
|
|
|
37
44
|
This skill provides systematic research capabilities for investigating topics, validating information, and synthesizing knowledge from multiple sources.
|
|
@@ -32,8 +32,15 @@ parameters:
|
|
|
32
32
|
description: "Regulatory requirements to consider"
|
|
33
33
|
default: []
|
|
34
34
|
enum: ["PCI-DSS", "HIPAA", "GDPR", "SOX", "ISO27001", "NIST"]
|
|
35
|
+
_dollhouseMCPTest: true
|
|
36
|
+
_testMetadata:
|
|
37
|
+
suite: "bundled-test-data"
|
|
38
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
39
|
+
created: "2025-08-20"
|
|
40
|
+
version: "1.0.0"
|
|
41
|
+
migrated: "2025-08-20T23:47:24.347Z"
|
|
42
|
+
originalPath: "data/skills/threat-modeling.md"
|
|
35
43
|
---
|
|
36
|
-
|
|
37
44
|
# Threat Modeling Skill
|
|
38
45
|
|
|
39
46
|
This skill provides systematic threat modeling capabilities using industry-standard methodologies to identify, analyze, and prioritize security threats in complex systems.
|
|
@@ -34,8 +34,15 @@ parameters:
|
|
|
34
34
|
type: "boolean"
|
|
35
35
|
description: "Adapt content for target culture"
|
|
36
36
|
default: false
|
|
37
|
+
_dollhouseMCPTest: true
|
|
38
|
+
_testMetadata:
|
|
39
|
+
suite: "bundled-test-data"
|
|
40
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
41
|
+
created: "2025-08-20"
|
|
42
|
+
version: "1.0.0"
|
|
43
|
+
migrated: "2025-08-20T23:47:24.348Z"
|
|
44
|
+
originalPath: "data/skills/translation.md"
|
|
37
45
|
---
|
|
38
|
-
|
|
39
46
|
# Translation Skill
|
|
40
47
|
|
|
41
48
|
This skill provides advanced translation capabilities that go beyond literal word conversion to preserve meaning, tone, and cultural context.
|
|
@@ -33,8 +33,15 @@ variables:
|
|
|
33
33
|
required: true
|
|
34
34
|
outputFormats: ["markdown", "html", "jsdoc", "typedoc"]
|
|
35
35
|
includes: []
|
|
36
|
+
_dollhouseMCPTest: true
|
|
37
|
+
_testMetadata:
|
|
38
|
+
suite: "bundled-test-data"
|
|
39
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
40
|
+
created: "2025-08-20"
|
|
41
|
+
version: "1.0.0"
|
|
42
|
+
migrated: "2025-08-20T23:47:24.348Z"
|
|
43
|
+
originalPath: "data/templates/code-documentation.md"
|
|
36
44
|
---
|
|
37
|
-
|
|
38
45
|
# {{module_name}} Documentation
|
|
39
46
|
|
|
40
47
|
**Type:** {{module_type}}
|
|
@@ -40,8 +40,15 @@ variables:
|
|
|
40
40
|
enum: ["formal", "professional", "friendly-professional", "casual-professional"]
|
|
41
41
|
outputFormats: ["text", "html", "markdown"]
|
|
42
42
|
includes: []
|
|
43
|
+
_dollhouseMCPTest: true
|
|
44
|
+
_testMetadata:
|
|
45
|
+
suite: "bundled-test-data"
|
|
46
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
47
|
+
created: "2025-08-20"
|
|
48
|
+
version: "1.0.0"
|
|
49
|
+
migrated: "2025-08-20T23:47:24.348Z"
|
|
50
|
+
originalPath: "data/templates/email-professional.md"
|
|
43
51
|
---
|
|
44
|
-
|
|
45
52
|
Subject: {{subject}}
|
|
46
53
|
|
|
47
54
|
Dear {{#if recipient_title}}{{recipient_title}} {{/if}}{{recipient_name}},
|
|
@@ -32,8 +32,15 @@ variables:
|
|
|
32
32
|
default: "60 minutes"
|
|
33
33
|
outputFormats: ["markdown", "html", "pdf"]
|
|
34
34
|
includes: []
|
|
35
|
+
_dollhouseMCPTest: true
|
|
36
|
+
_testMetadata:
|
|
37
|
+
suite: "bundled-test-data"
|
|
38
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
39
|
+
created: "2025-08-20"
|
|
40
|
+
version: "1.0.0"
|
|
41
|
+
migrated: "2025-08-20T23:47:24.348Z"
|
|
42
|
+
originalPath: "data/templates/meeting-notes.md"
|
|
35
43
|
---
|
|
36
|
-
|
|
37
44
|
# {{meeting_title}}
|
|
38
45
|
|
|
39
46
|
**Date:** {{meeting_date}}
|
|
@@ -36,8 +36,15 @@ variables:
|
|
|
36
36
|
required: true
|
|
37
37
|
outputFormats: ["pdf", "html", "markdown"]
|
|
38
38
|
includes: []
|
|
39
|
+
_dollhouseMCPTest: true
|
|
40
|
+
_testMetadata:
|
|
41
|
+
suite: "bundled-test-data"
|
|
42
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
43
|
+
created: "2025-08-20"
|
|
44
|
+
version: "1.0.0"
|
|
45
|
+
migrated: "2025-08-20T23:47:24.349Z"
|
|
46
|
+
originalPath: "data/templates/penetration-test-report.md"
|
|
39
47
|
---
|
|
40
|
-
|
|
41
48
|
# Penetration Testing Report
|
|
42
49
|
|
|
43
50
|
**Target Organization:** {{target_organization}}
|
|
@@ -35,8 +35,15 @@ variables:
|
|
|
35
35
|
default: "TBD"
|
|
36
36
|
outputFormats: ["markdown", "html", "pdf", "docx"]
|
|
37
37
|
includes: []
|
|
38
|
+
_dollhouseMCPTest: true
|
|
39
|
+
_testMetadata:
|
|
40
|
+
suite: "bundled-test-data"
|
|
41
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
42
|
+
created: "2025-08-20"
|
|
43
|
+
version: "1.0.0"
|
|
44
|
+
migrated: "2025-08-20T23:47:24.349Z"
|
|
45
|
+
originalPath: "data/templates/project-brief.md"
|
|
38
46
|
---
|
|
39
|
-
|
|
40
47
|
# Project Brief: {{project_name}}
|
|
41
48
|
|
|
42
49
|
{{#if project_code}}**Project Code:** {{project_code}}{{/if}}
|
|
@@ -36,8 +36,15 @@ variables:
|
|
|
36
36
|
enum: ["general", "quarterly", "annual", "strategic", "performance", "risk", "opportunity"]
|
|
37
37
|
outputFormats: ["pdf", "pptx", "markdown", "html"]
|
|
38
38
|
includes: []
|
|
39
|
+
_dollhouseMCPTest: true
|
|
40
|
+
_testMetadata:
|
|
41
|
+
suite: "bundled-test-data"
|
|
42
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
43
|
+
created: "2025-08-20"
|
|
44
|
+
version: "1.0.0"
|
|
45
|
+
migrated: "2025-08-20T23:47:24.349Z"
|
|
46
|
+
originalPath: "data/templates/report-executive.md"
|
|
39
47
|
---
|
|
40
|
-
|
|
41
48
|
# {{report_title}}
|
|
42
49
|
|
|
43
50
|
**Report Period:** {{report_period}}
|
|
@@ -37,8 +37,15 @@ variables:
|
|
|
37
37
|
required: true
|
|
38
38
|
outputFormats: ["pdf", "html", "markdown", "docx"]
|
|
39
39
|
includes: []
|
|
40
|
+
_dollhouseMCPTest: true
|
|
41
|
+
_testMetadata:
|
|
42
|
+
suite: "bundled-test-data"
|
|
43
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
44
|
+
created: "2025-08-20"
|
|
45
|
+
version: "1.0.0"
|
|
46
|
+
migrated: "2025-08-20T23:47:24.350Z"
|
|
47
|
+
originalPath: "data/templates/security-vulnerability-report.md"
|
|
40
48
|
---
|
|
41
|
-
|
|
42
49
|
# Security Vulnerability Assessment Report
|
|
43
50
|
|
|
44
51
|
**Target System:** {{target_system}}
|
|
@@ -37,8 +37,15 @@ variables:
|
|
|
37
37
|
enum: ["low", "medium", "high", "critical"]
|
|
38
38
|
outputFormats: ["pdf", "html", "markdown", "docx"]
|
|
39
39
|
includes: []
|
|
40
|
+
_dollhouseMCPTest: true
|
|
41
|
+
_testMetadata:
|
|
42
|
+
suite: "bundled-test-data"
|
|
43
|
+
purpose: "General test data for DollhouseMCP system validation"
|
|
44
|
+
created: "2025-08-20"
|
|
45
|
+
version: "1.0.0"
|
|
46
|
+
migrated: "2025-08-20T23:47:24.350Z"
|
|
47
|
+
originalPath: "data/templates/threat-assessment-report.md"
|
|
40
48
|
---
|
|
41
|
-
|
|
42
49
|
# Threat Assessment Report
|
|
43
50
|
|
|
44
51
|
**System:** {{system_name}}
|
|
@@ -27,7 +27,22 @@ export interface AuthStatus {
|
|
|
27
27
|
* This is the recommended approach for CLI/desktop applications
|
|
28
28
|
*/
|
|
29
29
|
export declare class GitHubAuthManager {
|
|
30
|
-
|
|
30
|
+
/**
|
|
31
|
+
* DollhouseMCP's official OAuth App Client ID
|
|
32
|
+
* This is PUBLIC information - OAuth Client IDs are meant to be visible.
|
|
33
|
+
* Only Client Secrets are private (device flow doesn't use secrets).
|
|
34
|
+
*
|
|
35
|
+
* This Client ID enables the GitHub device flow authentication
|
|
36
|
+
* allowing users to authenticate with an 8-character code.
|
|
37
|
+
*/
|
|
38
|
+
private static readonly DEFAULT_CLIENT_ID;
|
|
39
|
+
/**
|
|
40
|
+
* Get the CLIENT_ID from environment variable, ConfigManager, or default
|
|
41
|
+
* Priority: Environment variable > ConfigManager > Default Client ID
|
|
42
|
+
*
|
|
43
|
+
* @returns The OAuth Client ID to use for authentication
|
|
44
|
+
*/
|
|
45
|
+
private static getClientId;
|
|
31
46
|
private static readonly DEVICE_CODE_URL;
|
|
32
47
|
private static readonly TOKEN_URL;
|
|
33
48
|
private static readonly USER_URL;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GitHubAuthManager.d.ts","sourceRoot":"","sources":["../../src/auth/GitHubAuthManager.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"GitHubAuthManager.d.ts","sourceRoot":"","sources":["../../src/auth/GitHubAuthManager.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAMhD,MAAM,WAAW,kBAAkB;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACzB,eAAe,EAAE,OAAO,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED;;;GAGG;AACH,qBAAa,iBAAiB;IAC5B;;;;;;;OAOG;IACH,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAA0B;IAEnE;;;;;OAKG;mBACkB,WAAW;IA4BhC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,eAAe,CAA0C;IACjF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAiD;IAClF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAiC;IAGjE,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAQ;IACrD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAO;IAEhD,OAAO,CAAC,QAAQ,CAAW;IAC3B,OAAO,CAAC,aAAa,CAAgC;gBAEzC,QAAQ,EAAE,QAAQ;IAI9B;;OAEG;YACW,cAAc;IA2C5B;;OAEG;IACG,aAAa,IAAI,OAAO,CAAC,UAAU,CAAC;IA8B1C;;OAEG;IACG,kBAAkB,IAAI,OAAO,CAAC,kBAAkB,CAAC;IA4DvD;;OAEG;IACG,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,GAAE,MAAgD,GAAG,OAAO,CAAC,aAAa,CAAC;IAkF1H;;OAEG;IACG,sBAAsB,CAAC,aAAa,EAAE,aAAa,GAAG,OAAO,CAAC,UAAU,CAAC;IA4B/E;;OAEG;IACG,mBAAmB,IAAI,OAAO,CAAC,IAAI,CAAC;IAoC1C;;OAEG;YACW,UAAU;IAYxB;;OAEG;YACW,aAAa;IA6E3B;;OAEG;IACH,sBAAsB,CAAC,cAAc,EAAE,kBAAkB,GAAG,MAAM;IAmBlE;;OAEG;IACH,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAK3C;;OAEG;YACW,aAAa;IAmB3B;;OAEG;IACG,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAuB9B;;;OAGG;IACH,OAAO,CAAC,wBAAwB;CAyBjC"}
|