@pcircle/claude-code-buddy-mcp 2.3.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/LICENSE +661 -0
- package/README.md +599 -0
- package/README.zh-TW.md +577 -0
- package/dist/__benchmarks__/performance-fixes.bench.d.ts +8 -0
- package/dist/__benchmarks__/performance-fixes.bench.d.ts.map +1 -0
- package/dist/__benchmarks__/performance-fixes.bench.js +213 -0
- package/dist/__benchmarks__/performance-fixes.bench.js.map +1 -0
- package/dist/agents/DevelopmentButler.d.ts +80 -0
- package/dist/agents/DevelopmentButler.d.ts.map +1 -0
- package/dist/agents/DevelopmentButler.js +328 -0
- package/dist/agents/DevelopmentButler.js.map +1 -0
- package/dist/agents/E2EHealingAgent.d.ts +30 -0
- package/dist/agents/E2EHealingAgent.d.ts.map +1 -0
- package/dist/agents/E2EHealingAgent.js +162 -0
- package/dist/agents/E2EHealingAgent.js.map +1 -0
- package/dist/agents/TestWriterAgent.d.ts +26 -0
- package/dist/agents/TestWriterAgent.d.ts.map +1 -0
- package/dist/agents/TestWriterAgent.js +139 -0
- package/dist/agents/TestWriterAgent.js.map +1 -0
- package/dist/agents/base/AgentExecutor.d.ts +7 -0
- package/dist/agents/base/AgentExecutor.d.ts.map +1 -0
- package/dist/agents/base/AgentExecutor.js +13 -0
- package/dist/agents/base/AgentExecutor.js.map +1 -0
- package/dist/agents/base/index.d.ts +2 -0
- package/dist/agents/base/index.d.ts.map +1 -0
- package/dist/agents/base/index.js +2 -0
- package/dist/agents/base/index.js.map +1 -0
- package/dist/agents/e2e-healing/analyzers/EvidenceCollector.d.ts +24 -0
- package/dist/agents/e2e-healing/analyzers/EvidenceCollector.d.ts.map +1 -0
- package/dist/agents/e2e-healing/analyzers/EvidenceCollector.js +55 -0
- package/dist/agents/e2e-healing/analyzers/EvidenceCollector.js.map +1 -0
- package/dist/agents/e2e-healing/analyzers/FailureAnalyzer.d.ts +22 -0
- package/dist/agents/e2e-healing/analyzers/FailureAnalyzer.d.ts.map +1 -0
- package/dist/agents/e2e-healing/analyzers/FailureAnalyzer.js +36 -0
- package/dist/agents/e2e-healing/analyzers/FailureAnalyzer.js.map +1 -0
- package/dist/agents/e2e-healing/config.d.ts +4 -0
- package/dist/agents/e2e-healing/config.d.ts.map +1 -0
- package/dist/agents/e2e-healing/config.js +28 -0
- package/dist/agents/e2e-healing/config.js.map +1 -0
- package/dist/agents/e2e-healing/generators/FixGenerator.d.ts +21 -0
- package/dist/agents/e2e-healing/generators/FixGenerator.d.ts.map +1 -0
- package/dist/agents/e2e-healing/generators/FixGenerator.js +33 -0
- package/dist/agents/e2e-healing/generators/FixGenerator.js.map +1 -0
- package/dist/agents/e2e-healing/orchestrator/TestOrchestrator.d.ts +29 -0
- package/dist/agents/e2e-healing/orchestrator/TestOrchestrator.d.ts.map +1 -0
- package/dist/agents/e2e-healing/orchestrator/TestOrchestrator.js +70 -0
- package/dist/agents/e2e-healing/orchestrator/TestOrchestrator.js.map +1 -0
- package/dist/agents/e2e-healing/policy/GraduatedAutonomyPolicy.d.ts +30 -0
- package/dist/agents/e2e-healing/policy/GraduatedAutonomyPolicy.d.ts.map +1 -0
- package/dist/agents/e2e-healing/policy/GraduatedAutonomyPolicy.js +115 -0
- package/dist/agents/e2e-healing/policy/GraduatedAutonomyPolicy.js.map +1 -0
- package/dist/agents/e2e-healing/runners/PlaywrightRunner.d.ts +19 -0
- package/dist/agents/e2e-healing/runners/PlaywrightRunner.d.ts.map +1 -0
- package/dist/agents/e2e-healing/runners/PlaywrightRunner.js +79 -0
- package/dist/agents/e2e-healing/runners/PlaywrightRunner.js.map +1 -0
- package/dist/agents/e2e-healing/safety/CircuitBreaker.d.ts +26 -0
- package/dist/agents/e2e-healing/safety/CircuitBreaker.d.ts.map +1 -0
- package/dist/agents/e2e-healing/safety/CircuitBreaker.js +75 -0
- package/dist/agents/e2e-healing/safety/CircuitBreaker.js.map +1 -0
- package/dist/agents/e2e-healing/safety/RollbackManager.d.ts +31 -0
- package/dist/agents/e2e-healing/safety/RollbackManager.d.ts.map +1 -0
- package/dist/agents/e2e-healing/safety/RollbackManager.js +130 -0
- package/dist/agents/e2e-healing/safety/RollbackManager.js.map +1 -0
- package/dist/agents/e2e-healing/safety/SafetyGate.d.ts +21 -0
- package/dist/agents/e2e-healing/safety/SafetyGate.d.ts.map +1 -0
- package/dist/agents/e2e-healing/safety/SafetyGate.js +62 -0
- package/dist/agents/e2e-healing/safety/SafetyGate.js.map +1 -0
- package/dist/agents/e2e-healing/safety/ScopeLimiter.d.ts +14 -0
- package/dist/agents/e2e-healing/safety/ScopeLimiter.d.ts.map +1 -0
- package/dist/agents/e2e-healing/safety/ScopeLimiter.js +36 -0
- package/dist/agents/e2e-healing/safety/ScopeLimiter.js.map +1 -0
- package/dist/agents/e2e-healing/sdk/AgentSDKAdapter.d.ts +29 -0
- package/dist/agents/e2e-healing/sdk/AgentSDKAdapter.d.ts.map +1 -0
- package/dist/agents/e2e-healing/sdk/AgentSDKAdapter.js +86 -0
- package/dist/agents/e2e-healing/sdk/AgentSDKAdapter.js.map +1 -0
- package/dist/agents/e2e-healing/types.d.ts +46 -0
- package/dist/agents/e2e-healing/types.d.ts.map +1 -0
- package/dist/agents/e2e-healing/types.js +2 -0
- package/dist/agents/e2e-healing/types.js.map +1 -0
- package/dist/agents/knowledge/KnowledgeGraph.d.ts +26 -0
- package/dist/agents/knowledge/KnowledgeGraph.d.ts.map +1 -0
- package/dist/agents/knowledge/KnowledgeGraph.js +106 -0
- package/dist/agents/knowledge/KnowledgeGraph.js.map +1 -0
- package/dist/agents/knowledge/KnowledgeGraphSQLite.d.ts +42 -0
- package/dist/agents/knowledge/KnowledgeGraphSQLite.d.ts.map +1 -0
- package/dist/agents/knowledge/KnowledgeGraphSQLite.js +349 -0
- package/dist/agents/knowledge/KnowledgeGraphSQLite.js.map +1 -0
- package/dist/agents/knowledge/index.d.ts +94 -0
- package/dist/agents/knowledge/index.d.ts.map +1 -0
- package/dist/agents/knowledge/index.js +296 -0
- package/dist/agents/knowledge/index.js.map +1 -0
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.d.ts +25 -0
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.d.ts.map +1 -0
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.js +342 -0
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.js.map +1 -0
- package/dist/agents/knowledge/types.d.ts +21 -0
- package/dist/agents/knowledge/types.d.ts.map +1 -0
- package/dist/agents/knowledge/types.js +2 -0
- package/dist/agents/knowledge/types.js.map +1 -0
- package/dist/agents/templates/ci-templates.d.ts +8 -0
- package/dist/agents/templates/ci-templates.d.ts.map +1 -0
- package/dist/agents/templates/ci-templates.js +119 -0
- package/dist/agents/templates/ci-templates.js.map +1 -0
- package/dist/agents/templates/test-templates.d.ts +18 -0
- package/dist/agents/templates/test-templates.d.ts.map +1 -0
- package/dist/agents/templates/test-templates.js +22 -0
- package/dist/agents/templates/test-templates.js.map +1 -0
- package/dist/config/index.d.ts +51 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +96 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/models.d.ts +47 -0
- package/dist/config/models.d.ts.map +1 -0
- package/dist/config/models.js +57 -0
- package/dist/config/models.js.map +1 -0
- package/dist/config/simple-config.d.ts +32 -0
- package/dist/config/simple-config.d.ts.map +1 -0
- package/dist/config/simple-config.js +225 -0
- package/dist/config/simple-config.js.map +1 -0
- package/dist/core/AgentRegistry.d.ts +32 -0
- package/dist/core/AgentRegistry.d.ts.map +1 -0
- package/dist/core/AgentRegistry.js +281 -0
- package/dist/core/AgentRegistry.js.map +1 -0
- package/dist/core/BackgroundExecutor.d.ts +56 -0
- package/dist/core/BackgroundExecutor.d.ts.map +1 -0
- package/dist/core/BackgroundExecutor.js +492 -0
- package/dist/core/BackgroundExecutor.js.map +1 -0
- package/dist/core/BackgroundExecutorConstants.d.ts +8 -0
- package/dist/core/BackgroundExecutorConstants.d.ts.map +1 -0
- package/dist/core/BackgroundExecutorConstants.js +8 -0
- package/dist/core/BackgroundExecutorConstants.js.map +1 -0
- package/dist/core/CheckpointDetector.d.ts +25 -0
- package/dist/core/CheckpointDetector.d.ts.map +1 -0
- package/dist/core/CheckpointDetector.js +67 -0
- package/dist/core/CheckpointDetector.js.map +1 -0
- package/dist/core/ExecutionMonitor.d.ts +29 -0
- package/dist/core/ExecutionMonitor.d.ts.map +1 -0
- package/dist/core/ExecutionMonitor.js +124 -0
- package/dist/core/ExecutionMonitor.js.map +1 -0
- package/dist/core/ExecutionQueue.d.ts +21 -0
- package/dist/core/ExecutionQueue.d.ts.map +1 -0
- package/dist/core/ExecutionQueue.js +104 -0
- package/dist/core/ExecutionQueue.js.map +1 -0
- package/dist/core/HealthCheck.d.ts +39 -0
- package/dist/core/HealthCheck.d.ts.map +1 -0
- package/dist/core/HealthCheck.js +219 -0
- package/dist/core/HealthCheck.js.map +1 -0
- package/dist/core/HookIntegration.d.ts +45 -0
- package/dist/core/HookIntegration.d.ts.map +1 -0
- package/dist/core/HookIntegration.js +241 -0
- package/dist/core/HookIntegration.js.map +1 -0
- package/dist/core/MCPToolInterface.d.ts +120 -0
- package/dist/core/MCPToolInterface.d.ts.map +1 -0
- package/dist/core/MCPToolInterface.js +376 -0
- package/dist/core/MCPToolInterface.js.map +1 -0
- package/dist/core/PromptEnhancer.d.ts +13 -0
- package/dist/core/PromptEnhancer.d.ts.map +1 -0
- package/dist/core/PromptEnhancer.js +112 -0
- package/dist/core/PromptEnhancer.js.map +1 -0
- package/dist/core/ResourceMonitor.d.ts +32 -0
- package/dist/core/ResourceMonitor.d.ts.map +1 -0
- package/dist/core/ResourceMonitor.js +181 -0
- package/dist/core/ResourceMonitor.js.map +1 -0
- package/dist/core/ResultHandler.d.ts +9 -0
- package/dist/core/ResultHandler.d.ts.map +1 -0
- package/dist/core/ResultHandler.js +60 -0
- package/dist/core/ResultHandler.js.map +1 -0
- package/dist/core/ServiceLocator.d.ts +10 -0
- package/dist/core/ServiceLocator.d.ts.map +1 -0
- package/dist/core/ServiceLocator.js +29 -0
- package/dist/core/ServiceLocator.js.map +1 -0
- package/dist/core/SessionContextMonitor.d.ts +41 -0
- package/dist/core/SessionContextMonitor.d.ts.map +1 -0
- package/dist/core/SessionContextMonitor.js +156 -0
- package/dist/core/SessionContextMonitor.js.map +1 -0
- package/dist/core/SessionTokenTracker.d.ts +43 -0
- package/dist/core/SessionTokenTracker.d.ts.map +1 -0
- package/dist/core/SessionTokenTracker.js +76 -0
- package/dist/core/SessionTokenTracker.js.map +1 -0
- package/dist/core/TaskScheduler.d.ts +19 -0
- package/dist/core/TaskScheduler.d.ts.map +1 -0
- package/dist/core/TaskScheduler.js +59 -0
- package/dist/core/TaskScheduler.js.map +1 -0
- package/dist/core/WorkflowGuidanceEngine.d.ts +35 -0
- package/dist/core/WorkflowGuidanceEngine.d.ts.map +1 -0
- package/dist/core/WorkflowGuidanceEngine.js +104 -0
- package/dist/core/WorkflowGuidanceEngine.js.map +1 -0
- package/dist/core/types.d.ts +66 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +11 -0
- package/dist/core/types.js.map +1 -0
- package/dist/db/ConnectionPool.d.ts +47 -0
- package/dist/db/ConnectionPool.d.ts.map +1 -0
- package/dist/db/ConnectionPool.js +432 -0
- package/dist/db/ConnectionPool.js.map +1 -0
- package/dist/db/QueryCache.d.ts +46 -0
- package/dist/db/QueryCache.d.ts.map +1 -0
- package/dist/db/QueryCache.js +229 -0
- package/dist/db/QueryCache.js.map +1 -0
- package/dist/errors/index.d.ts +62 -0
- package/dist/errors/index.d.ts.map +1 -0
- package/dist/errors/index.js +124 -0
- package/dist/errors/index.js.map +1 -0
- package/dist/evolution/ABTestManager.d.ts +21 -0
- package/dist/evolution/ABTestManager.d.ts.map +1 -0
- package/dist/evolution/ABTestManager.js +183 -0
- package/dist/evolution/ABTestManager.js.map +1 -0
- package/dist/evolution/AdaptationEngine.d.ts +60 -0
- package/dist/evolution/AdaptationEngine.d.ts.map +1 -0
- package/dist/evolution/AdaptationEngine.js +313 -0
- package/dist/evolution/AdaptationEngine.js.map +1 -0
- package/dist/evolution/AgentEvolutionConfig.d.ts +32 -0
- package/dist/evolution/AgentEvolutionConfig.d.ts.map +1 -0
- package/dist/evolution/AgentEvolutionConfig.js +329 -0
- package/dist/evolution/AgentEvolutionConfig.js.map +1 -0
- package/dist/evolution/ContextMatcher.d.ts +24 -0
- package/dist/evolution/ContextMatcher.d.ts.map +1 -0
- package/dist/evolution/ContextMatcher.js +85 -0
- package/dist/evolution/ContextMatcher.js.map +1 -0
- package/dist/evolution/EvolutionBootstrap.d.ts +69 -0
- package/dist/evolution/EvolutionBootstrap.d.ts.map +1 -0
- package/dist/evolution/EvolutionBootstrap.js +332 -0
- package/dist/evolution/EvolutionBootstrap.js.map +1 -0
- package/dist/evolution/EvolutionMonitor.d.ts +111 -0
- package/dist/evolution/EvolutionMonitor.d.ts.map +1 -0
- package/dist/evolution/EvolutionMonitor.js +540 -0
- package/dist/evolution/EvolutionMonitor.js.map +1 -0
- package/dist/evolution/FeedbackCollector.d.ts +26 -0
- package/dist/evolution/FeedbackCollector.d.ts.map +1 -0
- package/dist/evolution/FeedbackCollector.js +93 -0
- package/dist/evolution/FeedbackCollector.js.map +1 -0
- package/dist/evolution/KnowledgeTransferManager.d.ts +16 -0
- package/dist/evolution/KnowledgeTransferManager.d.ts.map +1 -0
- package/dist/evolution/KnowledgeTransferManager.js +34 -0
- package/dist/evolution/KnowledgeTransferManager.js.map +1 -0
- package/dist/evolution/LearningManager.d.ts +79 -0
- package/dist/evolution/LearningManager.d.ts.map +1 -0
- package/dist/evolution/LearningManager.js +582 -0
- package/dist/evolution/LearningManager.js.map +1 -0
- package/dist/evolution/LearningManagerConstants.d.ts +55 -0
- package/dist/evolution/LearningManagerConstants.d.ts.map +1 -0
- package/dist/evolution/LearningManagerConstants.js +55 -0
- package/dist/evolution/LearningManagerConstants.js.map +1 -0
- package/dist/evolution/MultiObjectiveOptimizer.d.ts +9 -0
- package/dist/evolution/MultiObjectiveOptimizer.d.ts.map +1 -0
- package/dist/evolution/MultiObjectiveOptimizer.js +92 -0
- package/dist/evolution/MultiObjectiveOptimizer.js.map +1 -0
- package/dist/evolution/PatternExplainer.d.ts +14 -0
- package/dist/evolution/PatternExplainer.d.ts.map +1 -0
- package/dist/evolution/PatternExplainer.js +113 -0
- package/dist/evolution/PatternExplainer.js.map +1 -0
- package/dist/evolution/PerformanceTracker.d.ts +43 -0
- package/dist/evolution/PerformanceTracker.d.ts.map +1 -0
- package/dist/evolution/PerformanceTracker.js +453 -0
- package/dist/evolution/PerformanceTracker.js.map +1 -0
- package/dist/evolution/PerformanceTrackerConstants.d.ts +5 -0
- package/dist/evolution/PerformanceTrackerConstants.d.ts.map +1 -0
- package/dist/evolution/PerformanceTrackerConstants.js +5 -0
- package/dist/evolution/PerformanceTrackerConstants.js.map +1 -0
- package/dist/evolution/StatisticalAnalyzer.d.ts +20 -0
- package/dist/evolution/StatisticalAnalyzer.d.ts.map +1 -0
- package/dist/evolution/StatisticalAnalyzer.js +154 -0
- package/dist/evolution/StatisticalAnalyzer.js.map +1 -0
- package/dist/evolution/TransferabilityChecker.d.ts +11 -0
- package/dist/evolution/TransferabilityChecker.d.ts.map +1 -0
- package/dist/evolution/TransferabilityChecker.js +78 -0
- package/dist/evolution/TransferabilityChecker.js.map +1 -0
- package/dist/evolution/index.d.ts +11 -0
- package/dist/evolution/index.d.ts.map +1 -0
- package/dist/evolution/index.js +9 -0
- package/dist/evolution/index.js.map +1 -0
- package/dist/evolution/instrumentation/SpanTracker.d.ts +64 -0
- package/dist/evolution/instrumentation/SpanTracker.d.ts.map +1 -0
- package/dist/evolution/instrumentation/SpanTracker.js +229 -0
- package/dist/evolution/instrumentation/SpanTracker.js.map +1 -0
- package/dist/evolution/instrumentation/withEvolutionTracking.d.ts +19 -0
- package/dist/evolution/instrumentation/withEvolutionTracking.d.ts.map +1 -0
- package/dist/evolution/instrumentation/withEvolutionTracking.js +256 -0
- package/dist/evolution/instrumentation/withEvolutionTracking.js.map +1 -0
- package/dist/evolution/integration-test-scenarios.d.ts +56 -0
- package/dist/evolution/integration-test-scenarios.d.ts.map +1 -0
- package/dist/evolution/integration-test-scenarios.js +131 -0
- package/dist/evolution/integration-test-scenarios.js.map +1 -0
- package/dist/evolution/links/LinkManager.d.ts +17 -0
- package/dist/evolution/links/LinkManager.d.ts.map +1 -0
- package/dist/evolution/links/LinkManager.js +41 -0
- package/dist/evolution/links/LinkManager.js.map +1 -0
- package/dist/evolution/storage/EvolutionStore.d.ts +87 -0
- package/dist/evolution/storage/EvolutionStore.d.ts.map +1 -0
- package/dist/evolution/storage/EvolutionStore.js +2 -0
- package/dist/evolution/storage/EvolutionStore.js.map +1 -0
- package/dist/evolution/storage/IEvolutionStore.d.ts +87 -0
- package/dist/evolution/storage/IEvolutionStore.d.ts.map +1 -0
- package/dist/evolution/storage/IEvolutionStore.js +2 -0
- package/dist/evolution/storage/IEvolutionStore.js.map +1 -0
- package/dist/evolution/storage/SQLiteStore.d.ts +115 -0
- package/dist/evolution/storage/SQLiteStore.d.ts.map +1 -0
- package/dist/evolution/storage/SQLiteStore.enhanced.d.ts +35 -0
- package/dist/evolution/storage/SQLiteStore.enhanced.d.ts.map +1 -0
- package/dist/evolution/storage/SQLiteStore.enhanced.js +514 -0
- package/dist/evolution/storage/SQLiteStore.enhanced.js.map +1 -0
- package/dist/evolution/storage/SQLiteStore.js +915 -0
- package/dist/evolution/storage/SQLiteStore.js.map +1 -0
- package/dist/evolution/storage/deprecated/SQLiteStore.basic.d.ts +109 -0
- package/dist/evolution/storage/deprecated/SQLiteStore.basic.d.ts.map +1 -0
- package/dist/evolution/storage/deprecated/SQLiteStore.basic.js +1033 -0
- package/dist/evolution/storage/deprecated/SQLiteStore.basic.js.map +1 -0
- package/dist/evolution/storage/index.d.ts +6 -0
- package/dist/evolution/storage/index.d.ts.map +1 -0
- package/dist/evolution/storage/index.js +3 -0
- package/dist/evolution/storage/index.js.map +1 -0
- package/dist/evolution/storage/migrations/MigrationManager.d.ts +17 -0
- package/dist/evolution/storage/migrations/MigrationManager.d.ts.map +1 -0
- package/dist/evolution/storage/migrations/MigrationManager.js +242 -0
- package/dist/evolution/storage/migrations/MigrationManager.js.map +1 -0
- package/dist/evolution/storage/repositories/AdaptationRepository.d.ts +17 -0
- package/dist/evolution/storage/repositories/AdaptationRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/AdaptationRepository.js +82 -0
- package/dist/evolution/storage/repositories/AdaptationRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/CostRecordsRepository.d.ts +43 -0
- package/dist/evolution/storage/repositories/CostRecordsRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/CostRecordsRepository.js +157 -0
- package/dist/evolution/storage/repositories/CostRecordsRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/ExecutionRepository.d.ts +12 -0
- package/dist/evolution/storage/repositories/ExecutionRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/ExecutionRepository.js +87 -0
- package/dist/evolution/storage/repositories/ExecutionRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/PatternRepository.d.ts +12 -0
- package/dist/evolution/storage/repositories/PatternRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/PatternRepository.js +150 -0
- package/dist/evolution/storage/repositories/PatternRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/PerformanceMetricsRepository.d.ts +39 -0
- package/dist/evolution/storage/repositories/PerformanceMetricsRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/PerformanceMetricsRepository.js +130 -0
- package/dist/evolution/storage/repositories/PerformanceMetricsRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/RewardRepository.d.ts +17 -0
- package/dist/evolution/storage/repositories/RewardRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/RewardRepository.js +82 -0
- package/dist/evolution/storage/repositories/RewardRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/SpanRepository.d.ts +14 -0
- package/dist/evolution/storage/repositories/SpanRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/SpanRepository.js +191 -0
- package/dist/evolution/storage/repositories/SpanRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/StatsRepository.d.ts +16 -0
- package/dist/evolution/storage/repositories/StatsRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/StatsRepository.js +271 -0
- package/dist/evolution/storage/repositories/StatsRepository.js.map +1 -0
- package/dist/evolution/storage/repositories/TaskRepository.d.ts +16 -0
- package/dist/evolution/storage/repositories/TaskRepository.d.ts.map +1 -0
- package/dist/evolution/storage/repositories/TaskRepository.js +93 -0
- package/dist/evolution/storage/repositories/TaskRepository.js.map +1 -0
- package/dist/evolution/storage/schema.d.ts +81 -0
- package/dist/evolution/storage/schema.d.ts.map +1 -0
- package/dist/evolution/storage/schema.js +241 -0
- package/dist/evolution/storage/schema.js.map +1 -0
- package/dist/evolution/storage/types.d.ts +402 -0
- package/dist/evolution/storage/types.d.ts.map +1 -0
- package/dist/evolution/storage/types.js +2 -0
- package/dist/evolution/storage/types.js.map +1 -0
- package/dist/evolution/storage/validation.d.ts +12 -0
- package/dist/evolution/storage/validation.d.ts.map +1 -0
- package/dist/evolution/storage/validation.js +88 -0
- package/dist/evolution/storage/validation.js.map +1 -0
- package/dist/evolution/types.d.ts +214 -0
- package/dist/evolution/types.d.ts.map +1 -0
- package/dist/evolution/types.js +2 -0
- package/dist/evolution/types.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/dist/knowledge-graph/index.d.ts +27 -0
- package/dist/knowledge-graph/index.d.ts.map +1 -0
- package/dist/knowledge-graph/index.js +353 -0
- package/dist/knowledge-graph/index.js.map +1 -0
- package/dist/knowledge-graph/types.d.ts +37 -0
- package/dist/knowledge-graph/types.d.ts.map +1 -0
- package/dist/knowledge-graph/types.js +2 -0
- package/dist/knowledge-graph/types.js.map +1 -0
- package/dist/management/UninstallManager.d.ts +23 -0
- package/dist/management/UninstallManager.d.ts.map +1 -0
- package/dist/management/UninstallManager.js +186 -0
- package/dist/management/UninstallManager.js.map +1 -0
- package/dist/management/index.d.ts +3 -0
- package/dist/management/index.d.ts.map +1 -0
- package/dist/management/index.js +2 -0
- package/dist/management/index.js.map +1 -0
- package/dist/mcp/BuddyCommands.d.ts +13 -0
- package/dist/mcp/BuddyCommands.d.ts.map +1 -0
- package/dist/mcp/BuddyCommands.js +110 -0
- package/dist/mcp/BuddyCommands.js.map +1 -0
- package/dist/mcp/ClaudeMdReloader.d.ts +37 -0
- package/dist/mcp/ClaudeMdReloader.d.ts.map +1 -0
- package/dist/mcp/ClaudeMdReloader.js +92 -0
- package/dist/mcp/ClaudeMdReloader.js.map +1 -0
- package/dist/mcp/HumanInLoopUI.d.ts +23 -0
- package/dist/mcp/HumanInLoopUI.d.ts.map +1 -0
- package/dist/mcp/HumanInLoopUI.js +92 -0
- package/dist/mcp/HumanInLoopUI.js.map +1 -0
- package/dist/mcp/ServerInitializer.d.ts +47 -0
- package/dist/mcp/ServerInitializer.d.ts.map +1 -0
- package/dist/mcp/ServerInitializer.js +89 -0
- package/dist/mcp/ServerInitializer.js.map +1 -0
- package/dist/mcp/SessionBootstrapper.d.ts +11 -0
- package/dist/mcp/SessionBootstrapper.d.ts.map +1 -0
- package/dist/mcp/SessionBootstrapper.js +67 -0
- package/dist/mcp/SessionBootstrapper.js.map +1 -0
- package/dist/mcp/ToolDefinitions.d.ts +42 -0
- package/dist/mcp/ToolDefinitions.d.ts.map +1 -0
- package/dist/mcp/ToolDefinitions.js +234 -0
- package/dist/mcp/ToolDefinitions.js.map +1 -0
- package/dist/mcp/ToolRouter.d.ts +22 -0
- package/dist/mcp/ToolRouter.d.ts.map +1 -0
- package/dist/mcp/ToolRouter.js +102 -0
- package/dist/mcp/ToolRouter.js.map +1 -0
- package/dist/mcp/handlers/BuddyHandlers.d.ts +14 -0
- package/dist/mcp/handlers/BuddyHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/BuddyHandlers.js +152 -0
- package/dist/mcp/handlers/BuddyHandlers.js.map +1 -0
- package/dist/mcp/handlers/ResourceHandlers.d.ts +3 -0
- package/dist/mcp/handlers/ResourceHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/ResourceHandlers.js +86 -0
- package/dist/mcp/handlers/ResourceHandlers.js.map +1 -0
- package/dist/mcp/handlers/ToolHandlers.d.ts +52 -0
- package/dist/mcp/handlers/ToolHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/ToolHandlers.js +914 -0
- package/dist/mcp/handlers/ToolHandlers.js.map +1 -0
- package/dist/mcp/handlers/index.d.ts +4 -0
- package/dist/mcp/handlers/index.d.ts.map +1 -0
- package/dist/mcp/handlers/index.js +4 -0
- package/dist/mcp/handlers/index.js.map +1 -0
- package/dist/mcp/index.d.ts +5 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/mcp/index.js +3 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/mcp/schemas/OutputSchemas.d.ts +368 -0
- package/dist/mcp/schemas/OutputSchemas.d.ts.map +1 -0
- package/dist/mcp/schemas/OutputSchemas.js +191 -0
- package/dist/mcp/schemas/OutputSchemas.js.map +1 -0
- package/dist/mcp/server.d.ts +17 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +184 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/tools/add-observations.d.ts +48 -0
- package/dist/mcp/tools/add-observations.d.ts.map +1 -0
- package/dist/mcp/tools/add-observations.js +64 -0
- package/dist/mcp/tools/add-observations.js.map +1 -0
- package/dist/mcp/tools/buddy-do.d.ts +14 -0
- package/dist/mcp/tools/buddy-do.d.ts.map +1 -0
- package/dist/mcp/tools/buddy-do.js +77 -0
- package/dist/mcp/tools/buddy-do.js.map +1 -0
- package/dist/mcp/tools/buddy-help.d.ts +13 -0
- package/dist/mcp/tools/buddy-help.d.ts.map +1 -0
- package/dist/mcp/tools/buddy-help.js +52 -0
- package/dist/mcp/tools/buddy-help.js.map +1 -0
- package/dist/mcp/tools/buddy-remember.d.ts +15 -0
- package/dist/mcp/tools/buddy-remember.d.ts.map +1 -0
- package/dist/mcp/tools/buddy-remember.js +77 -0
- package/dist/mcp/tools/buddy-remember.js.map +1 -0
- package/dist/mcp/tools/create-entities.d.ts +57 -0
- package/dist/mcp/tools/create-entities.d.ts.map +1 -0
- package/dist/mcp/tools/create-entities.js +64 -0
- package/dist/mcp/tools/create-entities.js.map +1 -0
- package/dist/mcp/tools/create-relations.d.ts +60 -0
- package/dist/mcp/tools/create-relations.d.ts.map +1 -0
- package/dist/mcp/tools/create-relations.js +84 -0
- package/dist/mcp/tools/create-relations.js.map +1 -0
- package/dist/mcp/tools/health-check.d.ts +10 -0
- package/dist/mcp/tools/health-check.d.ts.map +1 -0
- package/dist/mcp/tools/health-check.js +37 -0
- package/dist/mcp/tools/health-check.js.map +1 -0
- package/dist/mcp/tools/recall-memory.d.ts +31 -0
- package/dist/mcp/tools/recall-memory.d.ts.map +1 -0
- package/dist/mcp/tools/recall-memory.js +31 -0
- package/dist/mcp/tools/recall-memory.js.map +1 -0
- package/dist/mcp/validation.d.ts +88 -0
- package/dist/mcp/validation.d.ts.map +1 -0
- package/dist/mcp/validation.js +119 -0
- package/dist/mcp/validation.js.map +1 -0
- package/dist/memory/ProjectAutoTracker.d.ts +36 -0
- package/dist/memory/ProjectAutoTracker.d.ts.map +1 -0
- package/dist/memory/ProjectAutoTracker.js +200 -0
- package/dist/memory/ProjectAutoTracker.js.map +1 -0
- package/dist/memory/ProjectMemoryCleanup.d.ts +17 -0
- package/dist/memory/ProjectMemoryCleanup.d.ts.map +1 -0
- package/dist/memory/ProjectMemoryCleanup.js +57 -0
- package/dist/memory/ProjectMemoryCleanup.js.map +1 -0
- package/dist/memory/ProjectMemoryManager.d.ts +15 -0
- package/dist/memory/ProjectMemoryManager.d.ts.map +1 -0
- package/dist/memory/ProjectMemoryManager.js +36 -0
- package/dist/memory/ProjectMemoryManager.js.map +1 -0
- package/dist/orchestrator/AgentRouter.d.ts +20 -0
- package/dist/orchestrator/AgentRouter.d.ts.map +1 -0
- package/dist/orchestrator/AgentRouter.js +274 -0
- package/dist/orchestrator/AgentRouter.js.map +1 -0
- package/dist/orchestrator/CostTracker.d.ts +25 -0
- package/dist/orchestrator/CostTracker.d.ts.map +1 -0
- package/dist/orchestrator/CostTracker.js +199 -0
- package/dist/orchestrator/CostTracker.js.map +1 -0
- package/dist/orchestrator/GlobalResourcePool.d.ts +59 -0
- package/dist/orchestrator/GlobalResourcePool.d.ts.map +1 -0
- package/dist/orchestrator/GlobalResourcePool.js +224 -0
- package/dist/orchestrator/GlobalResourcePool.js.map +1 -0
- package/dist/orchestrator/GlobalResourcePoolConstants.d.ts +22 -0
- package/dist/orchestrator/GlobalResourcePoolConstants.d.ts.map +1 -0
- package/dist/orchestrator/GlobalResourcePoolConstants.js +22 -0
- package/dist/orchestrator/GlobalResourcePoolConstants.js.map +1 -0
- package/dist/orchestrator/TaskAnalyzer.d.ts +15 -0
- package/dist/orchestrator/TaskAnalyzer.d.ts.map +1 -0
- package/dist/orchestrator/TaskAnalyzer.js +234 -0
- package/dist/orchestrator/TaskAnalyzer.js.map +1 -0
- package/dist/orchestrator/TaskAnalyzerConstants.d.ts +16 -0
- package/dist/orchestrator/TaskAnalyzerConstants.d.ts.map +1 -0
- package/dist/orchestrator/TaskAnalyzerConstants.js +16 -0
- package/dist/orchestrator/TaskAnalyzerConstants.js.map +1 -0
- package/dist/orchestrator/example.d.ts +2 -0
- package/dist/orchestrator/example.d.ts.map +1 -0
- package/dist/orchestrator/example.js +118 -0
- package/dist/orchestrator/example.js.map +1 -0
- package/dist/orchestrator/index.d.ts +82 -0
- package/dist/orchestrator/index.d.ts.map +1 -0
- package/dist/orchestrator/index.js +364 -0
- package/dist/orchestrator/index.js.map +1 -0
- package/dist/orchestrator/router.d.ts +48 -0
- package/dist/orchestrator/router.d.ts.map +1 -0
- package/dist/orchestrator/router.js +126 -0
- package/dist/orchestrator/router.js.map +1 -0
- package/dist/orchestrator/types.d.ts +60 -0
- package/dist/orchestrator/types.d.ts.map +1 -0
- package/dist/orchestrator/types.js +2 -0
- package/dist/orchestrator/types.js.map +1 -0
- package/dist/planning/PlanningEngine.d.ts +52 -0
- package/dist/planning/PlanningEngine.d.ts.map +1 -0
- package/dist/planning/PlanningEngine.js +271 -0
- package/dist/planning/PlanningEngine.js.map +1 -0
- package/dist/planning/TaskDecomposer.d.ts +32 -0
- package/dist/planning/TaskDecomposer.d.ts.map +1 -0
- package/dist/planning/TaskDecomposer.js +152 -0
- package/dist/planning/TaskDecomposer.js.map +1 -0
- package/dist/prompts/templates/PromptTemplates.d.ts +11 -0
- package/dist/prompts/templates/PromptTemplates.d.ts.map +1 -0
- package/dist/prompts/templates/PromptTemplates.js +942 -0
- package/dist/prompts/templates/PromptTemplates.js.map +1 -0
- package/dist/prompts/templates/index.d.ts +2 -0
- package/dist/prompts/templates/index.d.ts.map +1 -0
- package/dist/prompts/templates/index.js +2 -0
- package/dist/prompts/templates/index.js.map +1 -0
- package/dist/skills/SkillManager.d.ts +33 -0
- package/dist/skills/SkillManager.d.ts.map +1 -0
- package/dist/skills/SkillManager.js +153 -0
- package/dist/skills/SkillManager.js.map +1 -0
- package/dist/skills/index.d.ts +3 -0
- package/dist/skills/index.d.ts.map +1 -0
- package/dist/skills/index.js +2 -0
- package/dist/skills/index.js.map +1 -0
- package/dist/telemetry/TelemetryCollector.d.ts +19 -0
- package/dist/telemetry/TelemetryCollector.d.ts.map +1 -0
- package/dist/telemetry/TelemetryCollector.js +62 -0
- package/dist/telemetry/TelemetryCollector.js.map +1 -0
- package/dist/telemetry/TelemetryStore.d.ts +20 -0
- package/dist/telemetry/TelemetryStore.d.ts.map +1 -0
- package/dist/telemetry/TelemetryStore.js +126 -0
- package/dist/telemetry/TelemetryStore.js.map +1 -0
- package/dist/telemetry/index.d.ts +8 -0
- package/dist/telemetry/index.d.ts.map +1 -0
- package/dist/telemetry/index.js +33 -0
- package/dist/telemetry/index.js.map +1 -0
- package/dist/telemetry/sanitization.d.ts +6 -0
- package/dist/telemetry/sanitization.d.ts.map +1 -0
- package/dist/telemetry/sanitization.js +180 -0
- package/dist/telemetry/sanitization.js.map +1 -0
- package/dist/telemetry/types.d.ts +73 -0
- package/dist/telemetry/types.d.ts.map +1 -0
- package/dist/telemetry/types.js +16 -0
- package/dist/telemetry/types.js.map +1 -0
- package/dist/templates/git-education-templates.d.ts +26 -0
- package/dist/templates/git-education-templates.d.ts.map +1 -0
- package/dist/templates/git-education-templates.js +455 -0
- package/dist/templates/git-education-templates.js.map +1 -0
- package/dist/types/AgentClassification.d.ts +6 -0
- package/dist/types/AgentClassification.d.ts.map +1 -0
- package/dist/types/AgentClassification.js +7 -0
- package/dist/types/AgentClassification.js.map +1 -0
- package/dist/types/Checkpoint.d.ts +12 -0
- package/dist/types/Checkpoint.d.ts.map +1 -0
- package/dist/types/Checkpoint.js +13 -0
- package/dist/types/Checkpoint.js.map +1 -0
- package/dist/types/toonify.d.ts +91 -0
- package/dist/types/toonify.d.ts.map +1 -0
- package/dist/types/toonify.js +18 -0
- package/dist/types/toonify.js.map +1 -0
- package/dist/ui/AsciiProgressBar.d.ts +29 -0
- package/dist/ui/AsciiProgressBar.d.ts.map +1 -0
- package/dist/ui/AsciiProgressBar.js +131 -0
- package/dist/ui/AsciiProgressBar.js.map +1 -0
- package/dist/ui/AttributionManager.d.ts +19 -0
- package/dist/ui/AttributionManager.d.ts.map +1 -0
- package/dist/ui/AttributionManager.js +107 -0
- package/dist/ui/AttributionManager.js.map +1 -0
- package/dist/ui/Dashboard.d.ts +24 -0
- package/dist/ui/Dashboard.d.ts.map +1 -0
- package/dist/ui/Dashboard.js +135 -0
- package/dist/ui/Dashboard.js.map +1 -0
- package/dist/ui/LoadingIndicator.d.ts +53 -0
- package/dist/ui/LoadingIndicator.d.ts.map +1 -0
- package/dist/ui/LoadingIndicator.js +174 -0
- package/dist/ui/LoadingIndicator.js.map +1 -0
- package/dist/ui/MetricsStore.d.ts +15 -0
- package/dist/ui/MetricsStore.d.ts.map +1 -0
- package/dist/ui/MetricsStore.js +111 -0
- package/dist/ui/MetricsStore.js.map +1 -0
- package/dist/ui/ProgressRenderer.d.ts +24 -0
- package/dist/ui/ProgressRenderer.d.ts.map +1 -0
- package/dist/ui/ProgressRenderer.js +121 -0
- package/dist/ui/ProgressRenderer.js.map +1 -0
- package/dist/ui/ResponseFormatter.d.ts +42 -0
- package/dist/ui/ResponseFormatter.d.ts.map +1 -0
- package/dist/ui/ResponseFormatter.js +243 -0
- package/dist/ui/ResponseFormatter.js.map +1 -0
- package/dist/ui/UIEventBus.d.ts +38 -0
- package/dist/ui/UIEventBus.d.ts.map +1 -0
- package/dist/ui/UIEventBus.js +173 -0
- package/dist/ui/UIEventBus.js.map +1 -0
- package/dist/ui/index.d.ts +8 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +6 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/ui/theme.d.ts +292 -0
- package/dist/ui/theme.d.ts.map +1 -0
- package/dist/ui/theme.js +153 -0
- package/dist/ui/theme.js.map +1 -0
- package/dist/ui/types.d.ts +146 -0
- package/dist/ui/types.d.ts.map +1 -0
- package/dist/ui/types.js +16 -0
- package/dist/ui/types.js.map +1 -0
- package/dist/utils/ILogger.d.ts +7 -0
- package/dist/utils/ILogger.d.ts.map +1 -0
- package/dist/utils/ILogger.js +2 -0
- package/dist/utils/ILogger.js.map +1 -0
- package/dist/utils/MinHeap.d.ts +15 -0
- package/dist/utils/MinHeap.d.ts.map +1 -0
- package/dist/utils/MinHeap.js +69 -0
- package/dist/utils/MinHeap.js.map +1 -0
- package/dist/utils/RateLimiter.d.ts +28 -0
- package/dist/utils/RateLimiter.d.ts.map +1 -0
- package/dist/utils/RateLimiter.js +115 -0
- package/dist/utils/RateLimiter.js.map +1 -0
- package/dist/utils/SecureKeyStore.d.ts +10 -0
- package/dist/utils/SecureKeyStore.d.ts.map +1 -0
- package/dist/utils/SecureKeyStore.js +32 -0
- package/dist/utils/SecureKeyStore.js.map +1 -0
- package/dist/utils/SystemResources.d.ts +40 -0
- package/dist/utils/SystemResources.d.ts.map +1 -0
- package/dist/utils/SystemResources.js +221 -0
- package/dist/utils/SystemResources.js.map +1 -0
- package/dist/utils/cost-tracker.d.ts +34 -0
- package/dist/utils/cost-tracker.d.ts.map +1 -0
- package/dist/utils/cost-tracker.js +92 -0
- package/dist/utils/cost-tracker.js.map +1 -0
- package/dist/utils/errorHandler.d.ts +28 -0
- package/dist/utils/errorHandler.d.ts.map +1 -0
- package/dist/utils/errorHandler.js +206 -0
- package/dist/utils/errorHandler.js.map +1 -0
- package/dist/utils/json.d.ts +13 -0
- package/dist/utils/json.d.ts.map +1 -0
- package/dist/utils/json.js +85 -0
- package/dist/utils/json.js.map +1 -0
- package/dist/utils/logger.d.ts +16 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +57 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/lru-cache.d.ts +40 -0
- package/dist/utils/lru-cache.d.ts.map +1 -0
- package/dist/utils/lru-cache.js +209 -0
- package/dist/utils/lru-cache.js.map +1 -0
- package/dist/utils/memory.d.ts +20 -0
- package/dist/utils/memory.d.ts.map +1 -0
- package/dist/utils/memory.js +53 -0
- package/dist/utils/memory.js.map +1 -0
- package/dist/utils/money.d.ts +10 -0
- package/dist/utils/money.d.ts.map +1 -0
- package/dist/utils/money.js +25 -0
- package/dist/utils/money.js.map +1 -0
- package/dist/utils/pathValidation.d.ts +2 -0
- package/dist/utils/pathValidation.d.ts.map +1 -0
- package/dist/utils/pathValidation.js +62 -0
- package/dist/utils/pathValidation.js.map +1 -0
- package/dist/utils/paths.d.ts +4 -0
- package/dist/utils/paths.d.ts.map +1 -0
- package/dist/utils/paths.js +28 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/requestId.d.ts +4 -0
- package/dist/utils/requestId.d.ts.map +1 -0
- package/dist/utils/requestId.js +17 -0
- package/dist/utils/requestId.js.map +1 -0
- package/dist/utils/retry.d.ts +20 -0
- package/dist/utils/retry.d.ts.map +1 -0
- package/dist/utils/retry.js +226 -0
- package/dist/utils/retry.js.map +1 -0
- package/dist/utils/toonify-adapter.d.ts +77 -0
- package/dist/utils/toonify-adapter.d.ts.map +1 -0
- package/dist/utils/toonify-adapter.js +283 -0
- package/dist/utils/toonify-adapter.js.map +1 -0
- package/dist/utils/validation.d.ts +7 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +62 -0
- package/dist/utils/validation.js.map +1 -0
- package/package.json +116 -0
- package/plugin.json +21 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
export declare const colors: {
|
|
2
|
+
readonly primary: {
|
|
3
|
+
readonly light: "#8b9dc3";
|
|
4
|
+
readonly main: "#667eea";
|
|
5
|
+
readonly dark: "#5568d3";
|
|
6
|
+
readonly darker: "#764ba2";
|
|
7
|
+
};
|
|
8
|
+
readonly success: "#10b981";
|
|
9
|
+
readonly warning: "#f59e0b";
|
|
10
|
+
readonly error: "#ef4444";
|
|
11
|
+
readonly info: "#3b82f6";
|
|
12
|
+
readonly gray: {
|
|
13
|
+
readonly 50: "#f9fafb";
|
|
14
|
+
readonly 100: "#f3f4f6";
|
|
15
|
+
readonly 200: "#e5e7eb";
|
|
16
|
+
readonly 300: "#d1d5db";
|
|
17
|
+
readonly 400: "#9ca3af";
|
|
18
|
+
readonly 500: "#6b7280";
|
|
19
|
+
readonly 600: "#4b5563";
|
|
20
|
+
readonly 700: "#374151";
|
|
21
|
+
readonly 800: "#1f2937";
|
|
22
|
+
readonly 900: "#111827";
|
|
23
|
+
};
|
|
24
|
+
readonly text: {
|
|
25
|
+
readonly primary: "#f9fafb";
|
|
26
|
+
readonly secondary: "#d1d5db";
|
|
27
|
+
readonly muted: "#9ca3af";
|
|
28
|
+
readonly inverse: "#111827";
|
|
29
|
+
};
|
|
30
|
+
readonly background: {
|
|
31
|
+
readonly primary: "#111827";
|
|
32
|
+
readonly secondary: "#1f2937";
|
|
33
|
+
readonly tertiary: "#374151";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare const typography: {
|
|
37
|
+
readonly fontFamily: "SF Mono, Monaco, Consolas, monospace";
|
|
38
|
+
readonly fontSize: {
|
|
39
|
+
readonly xs: "10px";
|
|
40
|
+
readonly sm: "12px";
|
|
41
|
+
readonly base: "14px";
|
|
42
|
+
readonly lg: "16px";
|
|
43
|
+
readonly xl: "20px";
|
|
44
|
+
readonly '2xl': "28px";
|
|
45
|
+
};
|
|
46
|
+
readonly lineHeight: {
|
|
47
|
+
readonly tight: 1.2;
|
|
48
|
+
readonly normal: 1.5;
|
|
49
|
+
readonly relaxed: 1.75;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export declare const spacing: {
|
|
53
|
+
readonly 0: 0;
|
|
54
|
+
readonly 1: 4;
|
|
55
|
+
readonly 2: 8;
|
|
56
|
+
readonly 3: 12;
|
|
57
|
+
readonly 4: 16;
|
|
58
|
+
readonly 5: 24;
|
|
59
|
+
readonly 6: 32;
|
|
60
|
+
readonly 7: 48;
|
|
61
|
+
readonly 8: 64;
|
|
62
|
+
};
|
|
63
|
+
export declare const icons: {
|
|
64
|
+
readonly success: "✓";
|
|
65
|
+
readonly error: "✗";
|
|
66
|
+
readonly warning: "⚠";
|
|
67
|
+
readonly info: "ℹ";
|
|
68
|
+
readonly pending: "○";
|
|
69
|
+
readonly inProgress: "◐";
|
|
70
|
+
readonly play: "▶";
|
|
71
|
+
readonly pause: "⏸";
|
|
72
|
+
readonly stop: "⏹";
|
|
73
|
+
readonly refresh: "↻";
|
|
74
|
+
readonly arrowRight: "→";
|
|
75
|
+
readonly arrowLeft: "←";
|
|
76
|
+
readonly arrowUp: "↑";
|
|
77
|
+
readonly arrowDown: "↓";
|
|
78
|
+
readonly file: "📄";
|
|
79
|
+
readonly folder: "📁";
|
|
80
|
+
readonly code: "💻";
|
|
81
|
+
readonly settings: "⚙";
|
|
82
|
+
readonly search: "🔍";
|
|
83
|
+
readonly filter: "⏺";
|
|
84
|
+
readonly star: "⭐";
|
|
85
|
+
readonly check: "✓";
|
|
86
|
+
readonly cross: "✗";
|
|
87
|
+
readonly bullet: "•";
|
|
88
|
+
readonly chevronRight: "›";
|
|
89
|
+
readonly chevronDown: "∨";
|
|
90
|
+
};
|
|
91
|
+
export declare const borders: {
|
|
92
|
+
readonly light: {
|
|
93
|
+
readonly topLeft: "┌";
|
|
94
|
+
readonly topRight: "┐";
|
|
95
|
+
readonly bottomLeft: "└";
|
|
96
|
+
readonly bottomRight: "┘";
|
|
97
|
+
readonly horizontal: "─";
|
|
98
|
+
readonly vertical: "│";
|
|
99
|
+
readonly cross: "┼";
|
|
100
|
+
readonly teeLeft: "├";
|
|
101
|
+
readonly teeRight: "┤";
|
|
102
|
+
readonly teeTop: "┬";
|
|
103
|
+
readonly teeBottom: "┴";
|
|
104
|
+
};
|
|
105
|
+
readonly heavy: {
|
|
106
|
+
readonly topLeft: "┏";
|
|
107
|
+
readonly topRight: "┓";
|
|
108
|
+
readonly bottomLeft: "┗";
|
|
109
|
+
readonly bottomRight: "┛";
|
|
110
|
+
readonly horizontal: "━";
|
|
111
|
+
readonly vertical: "┃";
|
|
112
|
+
readonly cross: "╋";
|
|
113
|
+
readonly teeLeft: "┣";
|
|
114
|
+
readonly teeRight: "┫";
|
|
115
|
+
readonly teeTop: "┳";
|
|
116
|
+
readonly teeBottom: "┻";
|
|
117
|
+
};
|
|
118
|
+
readonly double: {
|
|
119
|
+
readonly topLeft: "╔";
|
|
120
|
+
readonly topRight: "╗";
|
|
121
|
+
readonly bottomLeft: "╚";
|
|
122
|
+
readonly bottomRight: "╝";
|
|
123
|
+
readonly horizontal: "═";
|
|
124
|
+
readonly vertical: "║";
|
|
125
|
+
readonly cross: "╬";
|
|
126
|
+
readonly teeLeft: "╠";
|
|
127
|
+
readonly teeRight: "╣";
|
|
128
|
+
readonly teeTop: "╦";
|
|
129
|
+
readonly teeBottom: "╩";
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
export declare const animation: {
|
|
133
|
+
readonly duration: {
|
|
134
|
+
readonly fast: 150;
|
|
135
|
+
readonly normal: 300;
|
|
136
|
+
readonly slow: 500;
|
|
137
|
+
};
|
|
138
|
+
readonly spinners: {
|
|
139
|
+
readonly dots: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
|
|
140
|
+
readonly line: readonly ["|", "/", "-", "\\"];
|
|
141
|
+
readonly arrow: readonly ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"];
|
|
142
|
+
readonly circle: readonly ["◐", "◓", "◑", "◒"];
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
export declare const theme: {
|
|
146
|
+
readonly colors: {
|
|
147
|
+
readonly primary: {
|
|
148
|
+
readonly light: "#8b9dc3";
|
|
149
|
+
readonly main: "#667eea";
|
|
150
|
+
readonly dark: "#5568d3";
|
|
151
|
+
readonly darker: "#764ba2";
|
|
152
|
+
};
|
|
153
|
+
readonly success: "#10b981";
|
|
154
|
+
readonly warning: "#f59e0b";
|
|
155
|
+
readonly error: "#ef4444";
|
|
156
|
+
readonly info: "#3b82f6";
|
|
157
|
+
readonly gray: {
|
|
158
|
+
readonly 50: "#f9fafb";
|
|
159
|
+
readonly 100: "#f3f4f6";
|
|
160
|
+
readonly 200: "#e5e7eb";
|
|
161
|
+
readonly 300: "#d1d5db";
|
|
162
|
+
readonly 400: "#9ca3af";
|
|
163
|
+
readonly 500: "#6b7280";
|
|
164
|
+
readonly 600: "#4b5563";
|
|
165
|
+
readonly 700: "#374151";
|
|
166
|
+
readonly 800: "#1f2937";
|
|
167
|
+
readonly 900: "#111827";
|
|
168
|
+
};
|
|
169
|
+
readonly text: {
|
|
170
|
+
readonly primary: "#f9fafb";
|
|
171
|
+
readonly secondary: "#d1d5db";
|
|
172
|
+
readonly muted: "#9ca3af";
|
|
173
|
+
readonly inverse: "#111827";
|
|
174
|
+
};
|
|
175
|
+
readonly background: {
|
|
176
|
+
readonly primary: "#111827";
|
|
177
|
+
readonly secondary: "#1f2937";
|
|
178
|
+
readonly tertiary: "#374151";
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
readonly typography: {
|
|
182
|
+
readonly fontFamily: "SF Mono, Monaco, Consolas, monospace";
|
|
183
|
+
readonly fontSize: {
|
|
184
|
+
readonly xs: "10px";
|
|
185
|
+
readonly sm: "12px";
|
|
186
|
+
readonly base: "14px";
|
|
187
|
+
readonly lg: "16px";
|
|
188
|
+
readonly xl: "20px";
|
|
189
|
+
readonly '2xl': "28px";
|
|
190
|
+
};
|
|
191
|
+
readonly lineHeight: {
|
|
192
|
+
readonly tight: 1.2;
|
|
193
|
+
readonly normal: 1.5;
|
|
194
|
+
readonly relaxed: 1.75;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
readonly spacing: {
|
|
198
|
+
readonly 0: 0;
|
|
199
|
+
readonly 1: 4;
|
|
200
|
+
readonly 2: 8;
|
|
201
|
+
readonly 3: 12;
|
|
202
|
+
readonly 4: 16;
|
|
203
|
+
readonly 5: 24;
|
|
204
|
+
readonly 6: 32;
|
|
205
|
+
readonly 7: 48;
|
|
206
|
+
readonly 8: 64;
|
|
207
|
+
};
|
|
208
|
+
readonly icons: {
|
|
209
|
+
readonly success: "✓";
|
|
210
|
+
readonly error: "✗";
|
|
211
|
+
readonly warning: "⚠";
|
|
212
|
+
readonly info: "ℹ";
|
|
213
|
+
readonly pending: "○";
|
|
214
|
+
readonly inProgress: "◐";
|
|
215
|
+
readonly play: "▶";
|
|
216
|
+
readonly pause: "⏸";
|
|
217
|
+
readonly stop: "⏹";
|
|
218
|
+
readonly refresh: "↻";
|
|
219
|
+
readonly arrowRight: "→";
|
|
220
|
+
readonly arrowLeft: "←";
|
|
221
|
+
readonly arrowUp: "↑";
|
|
222
|
+
readonly arrowDown: "↓";
|
|
223
|
+
readonly file: "📄";
|
|
224
|
+
readonly folder: "📁";
|
|
225
|
+
readonly code: "💻";
|
|
226
|
+
readonly settings: "⚙";
|
|
227
|
+
readonly search: "🔍";
|
|
228
|
+
readonly filter: "⏺";
|
|
229
|
+
readonly star: "⭐";
|
|
230
|
+
readonly check: "✓";
|
|
231
|
+
readonly cross: "✗";
|
|
232
|
+
readonly bullet: "•";
|
|
233
|
+
readonly chevronRight: "›";
|
|
234
|
+
readonly chevronDown: "∨";
|
|
235
|
+
};
|
|
236
|
+
readonly borders: {
|
|
237
|
+
readonly light: {
|
|
238
|
+
readonly topLeft: "┌";
|
|
239
|
+
readonly topRight: "┐";
|
|
240
|
+
readonly bottomLeft: "└";
|
|
241
|
+
readonly bottomRight: "┘";
|
|
242
|
+
readonly horizontal: "─";
|
|
243
|
+
readonly vertical: "│";
|
|
244
|
+
readonly cross: "┼";
|
|
245
|
+
readonly teeLeft: "├";
|
|
246
|
+
readonly teeRight: "┤";
|
|
247
|
+
readonly teeTop: "┬";
|
|
248
|
+
readonly teeBottom: "┴";
|
|
249
|
+
};
|
|
250
|
+
readonly heavy: {
|
|
251
|
+
readonly topLeft: "┏";
|
|
252
|
+
readonly topRight: "┓";
|
|
253
|
+
readonly bottomLeft: "┗";
|
|
254
|
+
readonly bottomRight: "┛";
|
|
255
|
+
readonly horizontal: "━";
|
|
256
|
+
readonly vertical: "┃";
|
|
257
|
+
readonly cross: "╋";
|
|
258
|
+
readonly teeLeft: "┣";
|
|
259
|
+
readonly teeRight: "┫";
|
|
260
|
+
readonly teeTop: "┳";
|
|
261
|
+
readonly teeBottom: "┻";
|
|
262
|
+
};
|
|
263
|
+
readonly double: {
|
|
264
|
+
readonly topLeft: "╔";
|
|
265
|
+
readonly topRight: "╗";
|
|
266
|
+
readonly bottomLeft: "╚";
|
|
267
|
+
readonly bottomRight: "╝";
|
|
268
|
+
readonly horizontal: "═";
|
|
269
|
+
readonly vertical: "║";
|
|
270
|
+
readonly cross: "╬";
|
|
271
|
+
readonly teeLeft: "╠";
|
|
272
|
+
readonly teeRight: "╣";
|
|
273
|
+
readonly teeTop: "╦";
|
|
274
|
+
readonly teeBottom: "╩";
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
readonly animation: {
|
|
278
|
+
readonly duration: {
|
|
279
|
+
readonly fast: 150;
|
|
280
|
+
readonly normal: 300;
|
|
281
|
+
readonly slow: 500;
|
|
282
|
+
};
|
|
283
|
+
readonly spinners: {
|
|
284
|
+
readonly dots: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
|
|
285
|
+
readonly line: readonly ["|", "/", "-", "\\"];
|
|
286
|
+
readonly arrow: readonly ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"];
|
|
287
|
+
readonly circle: readonly ["◐", "◓", "◑", "◒"];
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
export type Theme = typeof theme;
|
|
292
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/ui/theme.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CT,CAAC;AAEX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;CAoBb,CAAC;AAEX,eAAO,MAAM,OAAO;;;;;;;;;;CAWV,CAAC;AAEX,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsCR,CAAC;AAEX,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CV,CAAC;AAEX,eAAO,MAAM,SAAS;;;;;;;;;;;;CAeZ,CAAC;AAGX,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC"}
|
package/dist/ui/theme.js
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
export const colors = {
|
|
2
|
+
primary: {
|
|
3
|
+
light: '#8b9dc3',
|
|
4
|
+
main: '#667eea',
|
|
5
|
+
dark: '#5568d3',
|
|
6
|
+
darker: '#764ba2',
|
|
7
|
+
},
|
|
8
|
+
success: '#10b981',
|
|
9
|
+
warning: '#f59e0b',
|
|
10
|
+
error: '#ef4444',
|
|
11
|
+
info: '#3b82f6',
|
|
12
|
+
gray: {
|
|
13
|
+
50: '#f9fafb',
|
|
14
|
+
100: '#f3f4f6',
|
|
15
|
+
200: '#e5e7eb',
|
|
16
|
+
300: '#d1d5db',
|
|
17
|
+
400: '#9ca3af',
|
|
18
|
+
500: '#6b7280',
|
|
19
|
+
600: '#4b5563',
|
|
20
|
+
700: '#374151',
|
|
21
|
+
800: '#1f2937',
|
|
22
|
+
900: '#111827',
|
|
23
|
+
},
|
|
24
|
+
text: {
|
|
25
|
+
primary: '#f9fafb',
|
|
26
|
+
secondary: '#d1d5db',
|
|
27
|
+
muted: '#9ca3af',
|
|
28
|
+
inverse: '#111827',
|
|
29
|
+
},
|
|
30
|
+
background: {
|
|
31
|
+
primary: '#111827',
|
|
32
|
+
secondary: '#1f2937',
|
|
33
|
+
tertiary: '#374151',
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
export const typography = {
|
|
37
|
+
fontFamily: 'SF Mono, Monaco, Consolas, monospace',
|
|
38
|
+
fontSize: {
|
|
39
|
+
xs: '10px',
|
|
40
|
+
sm: '12px',
|
|
41
|
+
base: '14px',
|
|
42
|
+
lg: '16px',
|
|
43
|
+
xl: '20px',
|
|
44
|
+
'2xl': '28px',
|
|
45
|
+
},
|
|
46
|
+
lineHeight: {
|
|
47
|
+
tight: 1.2,
|
|
48
|
+
normal: 1.5,
|
|
49
|
+
relaxed: 1.75,
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
export const spacing = {
|
|
53
|
+
0: 0,
|
|
54
|
+
1: 4,
|
|
55
|
+
2: 8,
|
|
56
|
+
3: 12,
|
|
57
|
+
4: 16,
|
|
58
|
+
5: 24,
|
|
59
|
+
6: 32,
|
|
60
|
+
7: 48,
|
|
61
|
+
8: 64,
|
|
62
|
+
};
|
|
63
|
+
export const icons = {
|
|
64
|
+
success: '✓',
|
|
65
|
+
error: '✗',
|
|
66
|
+
warning: '⚠',
|
|
67
|
+
info: 'ℹ',
|
|
68
|
+
pending: '○',
|
|
69
|
+
inProgress: '◐',
|
|
70
|
+
play: '▶',
|
|
71
|
+
pause: '⏸',
|
|
72
|
+
stop: '⏹',
|
|
73
|
+
refresh: '↻',
|
|
74
|
+
arrowRight: '→',
|
|
75
|
+
arrowLeft: '←',
|
|
76
|
+
arrowUp: '↑',
|
|
77
|
+
arrowDown: '↓',
|
|
78
|
+
file: '📄',
|
|
79
|
+
folder: '📁',
|
|
80
|
+
code: '💻',
|
|
81
|
+
settings: '⚙',
|
|
82
|
+
search: '🔍',
|
|
83
|
+
filter: '⏺',
|
|
84
|
+
star: '⭐',
|
|
85
|
+
check: '✓',
|
|
86
|
+
cross: '✗',
|
|
87
|
+
bullet: '•',
|
|
88
|
+
chevronRight: '›',
|
|
89
|
+
chevronDown: '∨',
|
|
90
|
+
};
|
|
91
|
+
export const borders = {
|
|
92
|
+
light: {
|
|
93
|
+
topLeft: '┌',
|
|
94
|
+
topRight: '┐',
|
|
95
|
+
bottomLeft: '└',
|
|
96
|
+
bottomRight: '┘',
|
|
97
|
+
horizontal: '─',
|
|
98
|
+
vertical: '│',
|
|
99
|
+
cross: '┼',
|
|
100
|
+
teeLeft: '├',
|
|
101
|
+
teeRight: '┤',
|
|
102
|
+
teeTop: '┬',
|
|
103
|
+
teeBottom: '┴',
|
|
104
|
+
},
|
|
105
|
+
heavy: {
|
|
106
|
+
topLeft: '┏',
|
|
107
|
+
topRight: '┓',
|
|
108
|
+
bottomLeft: '┗',
|
|
109
|
+
bottomRight: '┛',
|
|
110
|
+
horizontal: '━',
|
|
111
|
+
vertical: '┃',
|
|
112
|
+
cross: '╋',
|
|
113
|
+
teeLeft: '┣',
|
|
114
|
+
teeRight: '┫',
|
|
115
|
+
teeTop: '┳',
|
|
116
|
+
teeBottom: '┻',
|
|
117
|
+
},
|
|
118
|
+
double: {
|
|
119
|
+
topLeft: '╔',
|
|
120
|
+
topRight: '╗',
|
|
121
|
+
bottomLeft: '╚',
|
|
122
|
+
bottomRight: '╝',
|
|
123
|
+
horizontal: '═',
|
|
124
|
+
vertical: '║',
|
|
125
|
+
cross: '╬',
|
|
126
|
+
teeLeft: '╠',
|
|
127
|
+
teeRight: '╣',
|
|
128
|
+
teeTop: '╦',
|
|
129
|
+
teeBottom: '╩',
|
|
130
|
+
},
|
|
131
|
+
};
|
|
132
|
+
export const animation = {
|
|
133
|
+
duration: {
|
|
134
|
+
fast: 150,
|
|
135
|
+
normal: 300,
|
|
136
|
+
slow: 500,
|
|
137
|
+
},
|
|
138
|
+
spinners: {
|
|
139
|
+
dots: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
|
|
140
|
+
line: ['|', '/', '-', '\\'],
|
|
141
|
+
arrow: ['←', '↖', '↑', '↗', '→', '↘', '↓', '↙'],
|
|
142
|
+
circle: ['◐', '◓', '◑', '◒'],
|
|
143
|
+
},
|
|
144
|
+
};
|
|
145
|
+
export const theme = {
|
|
146
|
+
colors,
|
|
147
|
+
typography,
|
|
148
|
+
spacing,
|
|
149
|
+
icons,
|
|
150
|
+
borders,
|
|
151
|
+
animation,
|
|
152
|
+
};
|
|
153
|
+
//# sourceMappingURL=theme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.js","sourceRoot":"","sources":["../../src/ui/theme.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,MAAM,MAAM,GAAG;IAEpB,OAAO,EAAE;QACP,KAAK,EAAE,SAAS;QAChB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,SAAS;KAClB;IAGD,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;IAChB,IAAI,EAAE,SAAS;IAGf,IAAI,EAAE;QACJ,EAAE,EAAE,SAAS;QACb,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;QACd,GAAG,EAAE,SAAS;KACf;IAGD,IAAI,EAAE;QACJ,OAAO,EAAE,SAAS;QAClB,SAAS,EAAE,SAAS;QACpB,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,SAAS;KACnB;IAGD,UAAU,EAAE;QACV,OAAO,EAAE,SAAS;QAClB,SAAS,EAAE,SAAS;QACpB,QAAQ,EAAE,SAAS;KACpB;CACO,CAAC;AAEX,MAAM,CAAC,MAAM,UAAU,GAAG;IAExB,UAAU,EAAE,sCAAsC;IAGlD,QAAQ,EAAE;QACR,EAAE,EAAE,MAAM;QACV,EAAE,EAAE,MAAM;QACV,IAAI,EAAE,MAAM;QACZ,EAAE,EAAE,MAAM;QACV,EAAE,EAAE,MAAM;QACV,KAAK,EAAE,MAAM;KACd;IAGD,UAAU,EAAE;QACV,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,OAAO,EAAE,IAAI;KACd;CACO,CAAC;AAEX,MAAM,CAAC,MAAM,OAAO,GAAG;IAErB,CAAC,EAAE,CAAC;IACJ,CAAC,EAAE,CAAC;IACJ,CAAC,EAAE,CAAC;IACJ,CAAC,EAAE,EAAE;IACL,CAAC,EAAE,EAAE;IACL,CAAC,EAAE,EAAE;IACL,CAAC,EAAE,EAAE;IACL,CAAC,EAAE,EAAE;IACL,CAAC,EAAE,EAAE;CACG,CAAC;AAEX,MAAM,CAAC,MAAM,KAAK,GAAG;IAEnB,OAAO,EAAE,GAAG;IACZ,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,GAAG;IACZ,IAAI,EAAE,GAAG;IACT,OAAO,EAAE,GAAG;IACZ,UAAU,EAAE,GAAG;IAGf,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,GAAG;IACV,IAAI,EAAE,GAAG;IACT,OAAO,EAAE,GAAG;IAGZ,UAAU,EAAE,GAAG;IACf,SAAS,EAAE,GAAG;IACd,OAAO,EAAE,GAAG;IACZ,SAAS,EAAE,GAAG;IAGd,IAAI,EAAE,IAAI;IACV,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,IAAI;IAGV,QAAQ,EAAE,GAAG;IACb,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,GAAG;IAGX,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,GAAG;IACV,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,GAAG;IACX,YAAY,EAAE,GAAG;IACjB,WAAW,EAAE,GAAG;CACR,CAAC;AAEX,MAAM,CAAC,MAAM,OAAO,GAAG;IAErB,KAAK,EAAE;QACL,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,GAAG;QAChB,UAAU,EAAE,GAAG;QACf,QAAQ,EAAE,GAAG;QACb,KAAK,EAAE,GAAG;QACV,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,MAAM,EAAE,GAAG;QACX,SAAS,EAAE,GAAG;KACf;IAED,KAAK,EAAE;QACL,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,GAAG;QAChB,UAAU,EAAE,GAAG;QACf,QAAQ,EAAE,GAAG;QACb,KAAK,EAAE,GAAG;QACV,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,MAAM,EAAE,GAAG;QACX,SAAS,EAAE,GAAG;KACf;IAED,MAAM,EAAE;QACN,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,UAAU,EAAE,GAAG;QACf,WAAW,EAAE,GAAG;QAChB,UAAU,EAAE,GAAG;QACf,QAAQ,EAAE,GAAG;QACb,KAAK,EAAE,GAAG;QACV,OAAO,EAAE,GAAG;QACZ,QAAQ,EAAE,GAAG;QACb,MAAM,EAAE,GAAG;QACX,SAAS,EAAE,GAAG;KACf;CACO,CAAC;AAEX,MAAM,CAAC,MAAM,SAAS,GAAG;IAEvB,QAAQ,EAAE;QACR,IAAI,EAAE,GAAG;QACT,MAAM,EAAE,GAAG;QACX,IAAI,EAAE,GAAG;KACV;IAGD,QAAQ,EAAE;QACR,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;QACxD,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC;QAC3B,KAAK,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;QAC/C,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;KAC7B;CACO,CAAC;AAGX,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,MAAM;IACN,UAAU;IACV,OAAO;IACP,KAAK;IACL,OAAO;IACP,SAAS;CACD,CAAC"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export declare const UIEventType: {
|
|
2
|
+
readonly PROGRESS: "progress";
|
|
3
|
+
readonly AGENT_START: "agent_start";
|
|
4
|
+
readonly AGENT_COMPLETE: "agent_complete";
|
|
5
|
+
readonly SUCCESS: "success";
|
|
6
|
+
readonly ERROR: "error";
|
|
7
|
+
readonly METRICS_UPDATE: "metrics_update";
|
|
8
|
+
readonly ATTRIBUTION: "attribution";
|
|
9
|
+
};
|
|
10
|
+
export type UIEventTypeValue = typeof UIEventType[keyof typeof UIEventType];
|
|
11
|
+
export interface ProgressIndicator {
|
|
12
|
+
agentId: string;
|
|
13
|
+
agentType: string;
|
|
14
|
+
taskDescription: string;
|
|
15
|
+
progress: number;
|
|
16
|
+
currentStage?: string;
|
|
17
|
+
startTime: Date;
|
|
18
|
+
endTime?: Date;
|
|
19
|
+
}
|
|
20
|
+
export interface AgentStatus {
|
|
21
|
+
agentId: string;
|
|
22
|
+
agentType: string;
|
|
23
|
+
status: 'queued' | 'running' | 'completed' | 'failed' | 'cancelled';
|
|
24
|
+
progress: number;
|
|
25
|
+
currentTask?: string;
|
|
26
|
+
startTime: Date;
|
|
27
|
+
endTime?: Date;
|
|
28
|
+
}
|
|
29
|
+
export interface SuccessEvent {
|
|
30
|
+
agentId: string;
|
|
31
|
+
agentType: string;
|
|
32
|
+
taskDescription: string;
|
|
33
|
+
result: unknown;
|
|
34
|
+
duration: number;
|
|
35
|
+
timestamp: Date;
|
|
36
|
+
}
|
|
37
|
+
export interface ErrorEvent {
|
|
38
|
+
agentId: string;
|
|
39
|
+
agentType: string;
|
|
40
|
+
taskDescription: string;
|
|
41
|
+
error: Error;
|
|
42
|
+
timestamp: Date;
|
|
43
|
+
sanitized?: boolean;
|
|
44
|
+
}
|
|
45
|
+
export interface AgentStartEvent {
|
|
46
|
+
agentId: string;
|
|
47
|
+
agentType: string;
|
|
48
|
+
taskDescription: string;
|
|
49
|
+
}
|
|
50
|
+
export interface AgentCompleteEvent {
|
|
51
|
+
agentId: string;
|
|
52
|
+
agentType: string;
|
|
53
|
+
duration: number;
|
|
54
|
+
}
|
|
55
|
+
export interface AttributionEntry {
|
|
56
|
+
type: 'success' | 'error';
|
|
57
|
+
agentType: string;
|
|
58
|
+
taskDescription: string;
|
|
59
|
+
timestamp: Date;
|
|
60
|
+
result?: unknown;
|
|
61
|
+
error?: Error;
|
|
62
|
+
sanitized?: boolean;
|
|
63
|
+
}
|
|
64
|
+
export interface MetricsSnapshot {
|
|
65
|
+
sessionStart: Date;
|
|
66
|
+
totalTasks: number;
|
|
67
|
+
completedTasks: number;
|
|
68
|
+
failedTasks: number;
|
|
69
|
+
agentUsageCount: Record<string, number>;
|
|
70
|
+
estimatedTimeSaved: number;
|
|
71
|
+
tokensUsed: number;
|
|
72
|
+
}
|
|
73
|
+
export interface DashboardState {
|
|
74
|
+
activeAgents: Map<string, AgentStatus>;
|
|
75
|
+
recentEvents: AttributionEntry[];
|
|
76
|
+
metrics: MetricsSnapshot;
|
|
77
|
+
}
|
|
78
|
+
export interface DashboardConfig {
|
|
79
|
+
updateInterval: number;
|
|
80
|
+
maxRecentEvents: number;
|
|
81
|
+
showSpinner?: boolean;
|
|
82
|
+
showMetrics?: boolean;
|
|
83
|
+
showAttribution?: boolean;
|
|
84
|
+
}
|
|
85
|
+
export interface SanitizationOptions {
|
|
86
|
+
removeUserPaths?: boolean;
|
|
87
|
+
removeApiKeys?: boolean;
|
|
88
|
+
removePasswords?: boolean;
|
|
89
|
+
removeTokens?: boolean;
|
|
90
|
+
customPatterns?: RegExp[];
|
|
91
|
+
}
|
|
92
|
+
export interface GitHubIssueOptions {
|
|
93
|
+
enabled: boolean;
|
|
94
|
+
repository: string;
|
|
95
|
+
labels?: string[];
|
|
96
|
+
assignees?: string[];
|
|
97
|
+
sanitize?: SanitizationOptions;
|
|
98
|
+
}
|
|
99
|
+
export type AttributionType = 'success' | 'error' | 'warning';
|
|
100
|
+
export interface ErrorDetails {
|
|
101
|
+
name: string;
|
|
102
|
+
message: string;
|
|
103
|
+
stack?: string;
|
|
104
|
+
}
|
|
105
|
+
export interface AttributionMessage {
|
|
106
|
+
id: string;
|
|
107
|
+
type: AttributionType;
|
|
108
|
+
timestamp: Date;
|
|
109
|
+
agentIds: string[];
|
|
110
|
+
taskDescription: string;
|
|
111
|
+
metadata?: {
|
|
112
|
+
timeSaved?: number;
|
|
113
|
+
tokensUsed?: number;
|
|
114
|
+
error?: ErrorDetails;
|
|
115
|
+
suggestGitHubIssue?: boolean;
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
export interface GitHubIssueSuggestion {
|
|
119
|
+
title: string;
|
|
120
|
+
body: string;
|
|
121
|
+
labels: string[];
|
|
122
|
+
}
|
|
123
|
+
export interface SessionMetrics {
|
|
124
|
+
sessionId: string;
|
|
125
|
+
startedAt: Date;
|
|
126
|
+
tasksCompleted: number;
|
|
127
|
+
tasksFailed: number;
|
|
128
|
+
totalTimeSaved: number;
|
|
129
|
+
totalTokensUsed: number;
|
|
130
|
+
agentUsageBreakdown: Record<string, number>;
|
|
131
|
+
}
|
|
132
|
+
export interface UIConfig {
|
|
133
|
+
updateInterval: number;
|
|
134
|
+
maxRecentAttributions: number;
|
|
135
|
+
colorEnabled: boolean;
|
|
136
|
+
animationsEnabled: boolean;
|
|
137
|
+
terminalWidth?: number;
|
|
138
|
+
}
|
|
139
|
+
export declare const DEFAULT_UI_CONFIG: UIConfig;
|
|
140
|
+
export interface DashboardStateForRendering {
|
|
141
|
+
resources: import('../core/types.js').SystemResources;
|
|
142
|
+
agents: ProgressIndicator[];
|
|
143
|
+
recentAttributions: AttributionMessage[];
|
|
144
|
+
sessionMetrics: SessionMetrics;
|
|
145
|
+
}
|
|
146
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/ui/types.ts"],"names":[],"mappings":"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"}
|
package/dist/ui/types.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const UIEventType = {
|
|
2
|
+
PROGRESS: 'progress',
|
|
3
|
+
AGENT_START: 'agent_start',
|
|
4
|
+
AGENT_COMPLETE: 'agent_complete',
|
|
5
|
+
SUCCESS: 'success',
|
|
6
|
+
ERROR: 'error',
|
|
7
|
+
METRICS_UPDATE: 'metrics_update',
|
|
8
|
+
ATTRIBUTION: 'attribution',
|
|
9
|
+
};
|
|
10
|
+
export const DEFAULT_UI_CONFIG = {
|
|
11
|
+
updateInterval: 200,
|
|
12
|
+
maxRecentAttributions: 5,
|
|
13
|
+
colorEnabled: true,
|
|
14
|
+
animationsEnabled: true,
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/ui/types.ts"],"names":[],"mappings":"AAUA,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,cAAc,EAAE,gBAAgB;IAChC,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,WAAW,EAAE,aAAa;CAClB,CAAC;AAiPX,MAAM,CAAC,MAAM,iBAAiB,GAAa;IACzC,cAAc,EAAE,GAAG;IACnB,qBAAqB,EAAE,CAAC;IACxB,YAAY,EAAE,IAAI;IAClB,iBAAiB,EAAE,IAAI;CACxB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface ILogger {
|
|
2
|
+
info(message: string, meta?: Record<string, unknown>): void;
|
|
3
|
+
error(message: string, meta?: Record<string, unknown>): void;
|
|
4
|
+
warn(message: string, meta?: Record<string, unknown>): void;
|
|
5
|
+
debug(message: string, meta?: Record<string, unknown>): void;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=ILogger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ILogger.d.ts","sourceRoot":"","sources":["../../src/utils/ILogger.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,OAAO;IAMtB,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;IAO5D,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;IAO7D,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;IAO5D,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ILogger.js","sourceRoot":"","sources":["../../src/utils/ILogger.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class MinHeap<T> {
|
|
2
|
+
private heap;
|
|
3
|
+
private compareFn;
|
|
4
|
+
constructor(compareFn: (a: T, b: T) => number);
|
|
5
|
+
get size(): number;
|
|
6
|
+
isEmpty(): boolean;
|
|
7
|
+
peek(): T | undefined;
|
|
8
|
+
push(value: T): void;
|
|
9
|
+
pop(): T | undefined;
|
|
10
|
+
clear(): void;
|
|
11
|
+
toArray(): T[];
|
|
12
|
+
private bubbleUp;
|
|
13
|
+
private bubbleDown;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=MinHeap.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MinHeap.d.ts","sourceRoot":"","sources":["../../src/utils/MinHeap.ts"],"names":[],"mappings":"AAcA,qBAAa,OAAO,CAAC,CAAC;IACpB,OAAO,CAAC,IAAI,CAAW;IACvB,OAAO,CAAC,SAAS,CAAyB;gBAU9B,SAAS,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,MAAM;IAO7C,IAAI,IAAI,IAAI,MAAM,CAEjB;IAKD,OAAO,IAAI,OAAO;IASlB,IAAI,IAAI,CAAC,GAAG,SAAS;IAWrB,IAAI,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI;IAYpB,GAAG,IAAI,CAAC,GAAG,SAAS;IAkBpB,KAAK,IAAI,IAAI;IASb,OAAO,IAAI,CAAC,EAAE;IASd,OAAO,CAAC,QAAQ;IAoBhB,OAAO,CAAC,UAAU;CA8BnB"}
|