@pcircle/memesh 2.6.3
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 +536 -0
- package/README.md.backup +536 -0
- package/README.zh-TW.md +446 -0
- package/README.zh-TW.md.backup +446 -0
- package/dist/a2a/client/A2AClient.d.ts +17 -0
- package/dist/a2a/client/A2AClient.d.ts.map +1 -0
- package/dist/a2a/client/A2AClient.js +124 -0
- package/dist/a2a/client/A2AClient.js.map +1 -0
- package/dist/a2a/client/index.d.ts +2 -0
- package/dist/a2a/client/index.d.ts.map +1 -0
- package/dist/a2a/client/index.js +2 -0
- package/dist/a2a/client/index.js.map +1 -0
- package/dist/a2a/executor/TaskExecutor.d.ts +9 -0
- package/dist/a2a/executor/TaskExecutor.d.ts.map +1 -0
- package/dist/a2a/executor/TaskExecutor.js +54 -0
- package/dist/a2a/executor/TaskExecutor.js.map +1 -0
- package/dist/a2a/executor/index.d.ts +2 -0
- package/dist/a2a/executor/index.d.ts.map +1 -0
- package/dist/a2a/executor/index.js +2 -0
- package/dist/a2a/executor/index.js.map +1 -0
- package/dist/a2a/server/A2AServer.d.ts +32 -0
- package/dist/a2a/server/A2AServer.d.ts.map +1 -0
- package/dist/a2a/server/A2AServer.js +120 -0
- package/dist/a2a/server/A2AServer.js.map +1 -0
- package/dist/a2a/server/index.d.ts +4 -0
- package/dist/a2a/server/index.d.ts.map +1 -0
- package/dist/a2a/server/index.js +4 -0
- package/dist/a2a/server/index.js.map +1 -0
- package/dist/a2a/server/middleware.d.ts +6 -0
- package/dist/a2a/server/middleware.d.ts.map +1 -0
- package/dist/a2a/server/middleware.js +69 -0
- package/dist/a2a/server/middleware.js.map +1 -0
- package/dist/a2a/server/routes.d.ts +15 -0
- package/dist/a2a/server/routes.d.ts.map +1 -0
- package/dist/a2a/server/routes.js +159 -0
- package/dist/a2a/server/routes.js.map +1 -0
- package/dist/a2a/storage/AgentRegistry.d.ts +19 -0
- package/dist/a2a/storage/AgentRegistry.d.ts.map +1 -0
- package/dist/a2a/storage/AgentRegistry.js +140 -0
- package/dist/a2a/storage/AgentRegistry.js.map +1 -0
- package/dist/a2a/storage/TaskQueue.d.ts +24 -0
- package/dist/a2a/storage/TaskQueue.d.ts.map +1 -0
- package/dist/a2a/storage/TaskQueue.js +277 -0
- package/dist/a2a/storage/TaskQueue.js.map +1 -0
- package/dist/a2a/storage/index.d.ts +3 -0
- package/dist/a2a/storage/index.d.ts.map +1 -0
- package/dist/a2a/storage/index.js +3 -0
- package/dist/a2a/storage/index.js.map +1 -0
- package/dist/a2a/storage/registry-schemas.sql +20 -0
- package/dist/a2a/storage/schemas.sql +54 -0
- package/dist/a2a/types/agent-card.d.ts +59 -0
- package/dist/a2a/types/agent-card.d.ts.map +1 -0
- package/dist/a2a/types/agent-card.js +2 -0
- package/dist/a2a/types/agent-card.js.map +1 -0
- package/dist/a2a/types/index.d.ts +5 -0
- package/dist/a2a/types/index.d.ts.map +1 -0
- package/dist/a2a/types/index.js +2 -0
- package/dist/a2a/types/index.js.map +1 -0
- package/dist/a2a/types/message.d.ts +16 -0
- package/dist/a2a/types/message.d.ts.map +1 -0
- package/dist/a2a/types/message.js +2 -0
- package/dist/a2a/types/message.js.map +1 -0
- package/dist/a2a/types/protocol.d.ts +60 -0
- package/dist/a2a/types/protocol.d.ts.map +1 -0
- package/dist/a2a/types/protocol.js +2 -0
- package/dist/a2a/types/protocol.js.map +1 -0
- package/dist/a2a/types/task.d.ts +73 -0
- package/dist/a2a/types/task.d.ts.map +1 -0
- package/dist/a2a/types/task.js +2 -0
- package/dist/a2a/types/task.js.map +1 -0
- package/dist/agents/DevelopmentButler.d.ts +89 -0
- package/dist/agents/DevelopmentButler.d.ts.map +1 -0
- package/dist/agents/DevelopmentButler.js +449 -0
- package/dist/agents/DevelopmentButler.js.map +1 -0
- package/dist/agents/E2EHealingAgent.d.ts +29 -0
- package/dist/agents/E2EHealingAgent.d.ts.map +1 -0
- package/dist/agents/E2EHealingAgent.js +148 -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 +94 -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/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/ClaudeMdRuleExtractor.d.ts +16 -0
- package/dist/core/ClaudeMdRuleExtractor.d.ts.map +1 -0
- package/dist/core/ClaudeMdRuleExtractor.js +236 -0
- package/dist/core/ClaudeMdRuleExtractor.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 +53 -0
- package/dist/core/HookIntegration.d.ts.map +1 -0
- package/dist/core/HookIntegration.js +301 -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/MistakePatternManager.d.ts +31 -0
- package/dist/core/MistakePatternManager.d.ts.map +1 -0
- package/dist/core/MistakePatternManager.js +111 -0
- package/dist/core/MistakePatternManager.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/SkillsKnowledgeIntegrator.d.ts +28 -0
- package/dist/core/SkillsKnowledgeIntegrator.d.ts.map +1 -0
- package/dist/core/SkillsKnowledgeIntegrator.js +149 -0
- package/dist/core/SkillsKnowledgeIntegrator.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/TestOutputParser.d.ts +20 -0
- package/dist/core/TestOutputParser.d.ts.map +1 -0
- package/dist/core/TestOutputParser.js +144 -0
- package/dist/core/TestOutputParser.js.map +1 -0
- package/dist/core/WorkflowEnforcementEngine.d.ts +46 -0
- package/dist/core/WorkflowEnforcementEngine.d.ts.map +1 -0
- package/dist/core/WorkflowEnforcementEngine.js +277 -0
- package/dist/core/WorkflowEnforcementEngine.js.map +1 -0
- package/dist/core/WorkflowGuidanceEngine.d.ts +42 -0
- package/dist/core/WorkflowGuidanceEngine.d.ts.map +1 -0
- package/dist/core/WorkflowGuidanceEngine.js +141 -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/AgentEvolutionConfig.d.ts +32 -0
- package/dist/evolution/AgentEvolutionConfig.d.ts.map +1 -0
- package/dist/evolution/AgentEvolutionConfig.js +311 -0
- package/dist/evolution/AgentEvolutionConfig.js.map +1 -0
- package/dist/evolution/CloudEvolutionClient.d.ts +39 -0
- package/dist/evolution/CloudEvolutionClient.d.ts.map +1 -0
- package/dist/evolution/CloudEvolutionClient.js +35 -0
- package/dist/evolution/CloudEvolutionClient.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 +10 -0
- package/dist/evolution/EvolutionMonitor.d.ts.map +1 -0
- package/dist/evolution/EvolutionMonitor.js +17 -0
- package/dist/evolution/EvolutionMonitor.js.map +1 -0
- package/dist/evolution/FeedbackCollector.d.ts +19 -0
- package/dist/evolution/FeedbackCollector.d.ts.map +1 -0
- package/dist/evolution/FeedbackCollector.js +34 -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 +50 -0
- package/dist/evolution/KnowledgeTransferManager.js.map +1 -0
- package/dist/evolution/LearningManager.d.ts +18 -0
- package/dist/evolution/LearningManager.d.ts.map +1 -0
- package/dist/evolution/LearningManager.js +71 -0
- package/dist/evolution/LearningManager.js.map +1 -0
- package/dist/evolution/LocalMistakeDetector.d.ts +20 -0
- package/dist/evolution/LocalMistakeDetector.d.ts.map +1 -0
- package/dist/evolution/LocalMistakeDetector.js +233 -0
- package/dist/evolution/LocalMistakeDetector.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 +29 -0
- package/dist/evolution/PerformanceTracker.d.ts.map +1 -0
- package/dist/evolution/PerformanceTracker.js +281 -0
- package/dist/evolution/PerformanceTracker.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 +8 -0
- package/dist/evolution/index.d.ts.map +1 -0
- package/dist/evolution/index.js +6 -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 +255 -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.js +918 -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 +248 -0
- package/dist/evolution/types.d.ts.map +1 -0
- package/dist/evolution/types.js +13 -0
- package/dist/evolution/types.js.map +1 -0
- package/dist/i18n/index.d.ts +9 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +78 -0
- package/dist/i18n/index.js.map +1 -0
- package/dist/i18n/locales/en.d.ts +3 -0
- package/dist/i18n/locales/en.d.ts.map +1 -0
- package/dist/i18n/locales/en.js +39 -0
- package/dist/i18n/locales/en.js.map +1 -0
- package/dist/i18n/locales/index.d.ts +5 -0
- package/dist/i18n/locales/index.d.ts.map +1 -0
- package/dist/i18n/locales/index.js +5 -0
- package/dist/i18n/locales/index.js.map +1 -0
- package/dist/i18n/locales/ja.d.ts +3 -0
- package/dist/i18n/locales/ja.d.ts.map +1 -0
- package/dist/i18n/locales/ja.js +37 -0
- package/dist/i18n/locales/ja.js.map +1 -0
- package/dist/i18n/locales/zh-CN.d.ts +3 -0
- package/dist/i18n/locales/zh-CN.d.ts.map +1 -0
- package/dist/i18n/locales/zh-CN.js +37 -0
- package/dist/i18n/locales/zh-CN.js.map +1 -0
- package/dist/i18n/locales/zh-TW.d.ts +3 -0
- package/dist/i18n/locales/zh-TW.d.ts.map +1 -0
- package/dist/i18n/locales/zh-TW.js +37 -0
- package/dist/i18n/locales/zh-TW.js.map +1 -0
- package/dist/i18n/types.d.ts +11 -0
- package/dist/i18n/types.d.ts.map +1 -0
- package/dist/i18n/types.js +3 -0
- package/dist/i18n/types.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +108 -0
- package/dist/index.js.map +1 -0
- package/dist/knowledge-graph/index.d.ts +26 -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/ProgressReporter.d.ts +14 -0
- package/dist/mcp/ProgressReporter.d.ts.map +1 -0
- package/dist/mcp/ProgressReporter.js +22 -0
- package/dist/mcp/ProgressReporter.js.map +1 -0
- package/dist/mcp/SamplingClient.d.ts +32 -0
- package/dist/mcp/SamplingClient.d.ts.map +1 -0
- package/dist/mcp/SamplingClient.js +63 -0
- package/dist/mcp/SamplingClient.js.map +1 -0
- package/dist/mcp/ServerInitializer.d.ts +50 -0
- package/dist/mcp/ServerInitializer.d.ts.map +1 -0
- package/dist/mcp/ServerInitializer.js +96 -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 +43 -0
- package/dist/mcp/ToolDefinitions.d.ts.map +1 -0
- package/dist/mcp/ToolDefinitions.js +642 -0
- package/dist/mcp/ToolDefinitions.js.map +1 -0
- package/dist/mcp/ToolRouter.d.ts +27 -0
- package/dist/mcp/ToolRouter.d.ts.map +1 -0
- package/dist/mcp/ToolRouter.js +165 -0
- package/dist/mcp/ToolRouter.js.map +1 -0
- package/dist/mcp/handlers/A2AToolHandlers.d.ts +17 -0
- package/dist/mcp/handlers/A2AToolHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/A2AToolHandlers.js +201 -0
- package/dist/mcp/handlers/A2AToolHandlers.js.map +1 -0
- package/dist/mcp/handlers/BuddyHandlers.d.ts +16 -0
- package/dist/mcp/handlers/BuddyHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/BuddyHandlers.js +154 -0
- package/dist/mcp/handlers/BuddyHandlers.js.map +1 -0
- package/dist/mcp/handlers/BuddyRecordMistake.d.ts +17 -0
- package/dist/mcp/handlers/BuddyRecordMistake.d.ts.map +1 -0
- package/dist/mcp/handlers/BuddyRecordMistake.js +147 -0
- package/dist/mcp/handlers/BuddyRecordMistake.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 +133 -0
- package/dist/mcp/handlers/ResourceHandlers.js.map +1 -0
- package/dist/mcp/handlers/SecretHandlers.d.ts +23 -0
- package/dist/mcp/handlers/SecretHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/SecretHandlers.js +277 -0
- package/dist/mcp/handlers/SecretHandlers.js.map +1 -0
- package/dist/mcp/handlers/ToolHandlers.d.ts +57 -0
- package/dist/mcp/handlers/ToolHandlers.d.ts.map +1 -0
- package/dist/mcp/handlers/ToolHandlers.js +903 -0
- package/dist/mcp/handlers/ToolHandlers.js.map +1 -0
- package/dist/mcp/handlers/index.d.ts +6 -0
- package/dist/mcp/handlers/index.d.ts.map +1 -0
- package/dist/mcp/handlers/index.js +6 -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/resources/ResourceRegistry.d.ts +23 -0
- package/dist/mcp/resources/ResourceRegistry.d.ts.map +1 -0
- package/dist/mcp/resources/ResourceRegistry.js +26 -0
- package/dist/mcp/resources/ResourceRegistry.js.map +1 -0
- package/dist/mcp/resources/URITemplateHandler.d.ts +8 -0
- package/dist/mcp/resources/URITemplateHandler.d.ts.map +1 -0
- package/dist/mcp/resources/URITemplateHandler.js +29 -0
- package/dist/mcp/resources/URITemplateHandler.js.map +1 -0
- package/dist/mcp/resources/best-practices.md +67 -0
- package/dist/mcp/resources/buddy-do-skill.md +85 -0
- package/dist/mcp/resources/ccb-complete-guide.md +382 -0
- package/dist/mcp/resources/examples.md +56 -0
- package/dist/mcp/resources/handlers/AgentStatusHandler.d.ts +7 -0
- package/dist/mcp/resources/handlers/AgentStatusHandler.d.ts.map +1 -0
- package/dist/mcp/resources/handlers/AgentStatusHandler.js +41 -0
- package/dist/mcp/resources/handlers/AgentStatusHandler.js.map +1 -0
- package/dist/mcp/resources/handlers/TaskLogsHandler.d.ts +7 -0
- package/dist/mcp/resources/handlers/TaskLogsHandler.d.ts.map +1 -0
- package/dist/mcp/resources/handlers/TaskLogsHandler.js +36 -0
- package/dist/mcp/resources/handlers/TaskLogsHandler.js.map +1 -0
- package/dist/mcp/resources/quick-reference.md +73 -0
- package/dist/mcp/resources/usage-guide.md +92 -0
- package/dist/mcp/schemas/OutputSchemas.d.ts +696 -0
- package/dist/mcp/schemas/OutputSchemas.d.ts.map +1 -0
- package/dist/mcp/schemas/OutputSchemas.js +354 -0
- package/dist/mcp/schemas/OutputSchemas.js.map +1 -0
- package/dist/mcp/server-bootstrap.d.ts +8 -0
- package/dist/mcp/server-bootstrap.d.ts.map +1 -0
- package/dist/mcp/server-bootstrap.js +100 -0
- package/dist/mcp/server-bootstrap.js.map +1 -0
- package/dist/mcp/server.d.ts +18 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +161 -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 +15 -0
- package/dist/mcp/tools/buddy-do.d.ts.map +1 -0
- package/dist/mcp/tools/buddy-do.js +102 -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 +65 -0
- package/dist/mcp/tools/create-entities.d.ts.map +1 -0
- package/dist/mcp/tools/create-entities.js +75 -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/generate-tests.d.ts +11 -0
- package/dist/mcp/tools/generate-tests.d.ts.map +1 -0
- package/dist/mcp/tools/generate-tests.js +19 -0
- package/dist/mcp/tools/generate-tests.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 +133 -0
- package/dist/mcp/validation.d.ts.map +1 -0
- package/dist/mcp/validation.js +153 -0
- package/dist/mcp/validation.js.map +1 -0
- package/dist/memory/BuiltInRules.d.ts +54 -0
- package/dist/memory/BuiltInRules.d.ts.map +1 -0
- package/dist/memory/BuiltInRules.js +161 -0
- package/dist/memory/BuiltInRules.js.map +1 -0
- package/dist/memory/EnhancedRetrieval.d.ts +22 -0
- package/dist/memory/EnhancedRetrieval.d.ts.map +1 -0
- package/dist/memory/EnhancedRetrieval.js +63 -0
- package/dist/memory/EnhancedRetrieval.js.map +1 -0
- package/dist/memory/EntityTypes.d.ts +14 -0
- package/dist/memory/EntityTypes.d.ts.map +1 -0
- package/dist/memory/EntityTypes.js +19 -0
- package/dist/memory/EntityTypes.js.map +1 -0
- package/dist/memory/MistakePatternEngine.d.ts +15 -0
- package/dist/memory/MistakePatternEngine.d.ts.map +1 -0
- package/dist/memory/MistakePatternEngine.js +99 -0
- package/dist/memory/MistakePatternEngine.js.map +1 -0
- package/dist/memory/PreventionHook.d.ts +28 -0
- package/dist/memory/PreventionHook.d.ts.map +1 -0
- package/dist/memory/PreventionHook.js +21 -0
- package/dist/memory/PreventionHook.js.map +1 -0
- package/dist/memory/ProjectAutoTracker.d.ts +80 -0
- package/dist/memory/ProjectAutoTracker.d.ts.map +1 -0
- package/dist/memory/ProjectAutoTracker.js +386 -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/memory/SecretManager.d.ts +41 -0
- package/dist/memory/SecretManager.d.ts.map +1 -0
- package/dist/memory/SecretManager.js +313 -0
- package/dist/memory/SecretManager.js.map +1 -0
- package/dist/memory/UnifiedMemoryStore.d.ts +25 -0
- package/dist/memory/UnifiedMemoryStore.d.ts.map +1 -0
- package/dist/memory/UnifiedMemoryStore.js +414 -0
- package/dist/memory/UnifiedMemoryStore.js.map +1 -0
- package/dist/memory/UserPreferenceEngine.d.ts +18 -0
- package/dist/memory/UserPreferenceEngine.d.ts.map +1 -0
- package/dist/memory/UserPreferenceEngine.js +116 -0
- package/dist/memory/UserPreferenceEngine.js.map +1 -0
- package/dist/memory/config/semantic-groups.d.ts +9 -0
- package/dist/memory/config/semantic-groups.d.ts.map +1 -0
- package/dist/memory/config/semantic-groups.js +22 -0
- package/dist/memory/config/semantic-groups.js.map +1 -0
- package/dist/memory/index.d.ts +16 -0
- package/dist/memory/index.d.ts.map +1 -0
- package/dist/memory/index.js +12 -0
- package/dist/memory/index.js.map +1 -0
- package/dist/memory/types/index.d.ts +9 -0
- package/dist/memory/types/index.d.ts.map +1 -0
- package/dist/memory/types/index.js +5 -0
- package/dist/memory/types/index.js.map +1 -0
- package/dist/memory/types/memory-scope.d.ts +27 -0
- package/dist/memory/types/memory-scope.d.ts.map +1 -0
- package/dist/memory/types/memory-scope.js +67 -0
- package/dist/memory/types/memory-scope.js.map +1 -0
- package/dist/memory/types/pattern-types.d.ts +66 -0
- package/dist/memory/types/pattern-types.d.ts.map +1 -0
- package/dist/memory/types/pattern-types.js +2 -0
- package/dist/memory/types/pattern-types.js.map +1 -0
- package/dist/memory/types/preference-types.d.ts +28 -0
- package/dist/memory/types/preference-types.d.ts.map +1 -0
- package/dist/memory/types/preference-types.js +2 -0
- package/dist/memory/types/preference-types.js.map +1 -0
- package/dist/memory/types/secret-types.d.ts +43 -0
- package/dist/memory/types/secret-types.d.ts.map +1 -0
- package/dist/memory/types/secret-types.js +51 -0
- package/dist/memory/types/secret-types.js.map +1 -0
- package/dist/memory/types/unified-memory.d.ts +27 -0
- package/dist/memory/types/unified-memory.d.ts.map +1 -0
- package/dist/memory/types/unified-memory.js +19 -0
- package/dist/memory/types/unified-memory.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/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/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 +370 -0
- package/dist/orchestrator/index.js.map +1 -0
- package/dist/orchestrator/router.d.ts +43 -0
- package/dist/orchestrator/router.d.ts.map +1 -0
- package/dist/orchestrator/router.js +95 -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/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/tools/TestGenerator.d.ts +8 -0
- package/dist/tools/TestGenerator.d.ts.map +1 -0
- package/dist/tools/TestGenerator.js +54 -0
- package/dist/tools/TestGenerator.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/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/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 +63 -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/package.json +129 -0
- package/plugin.json +21 -0
- package/scripts/postinstall.js +13 -0
package/README.md.backup
ADDED
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# π§ Claude Code Buddy (CCB)
|
|
4
|
+
|
|
5
|
+
### **The Only MCP Server That Remembers**
|
|
6
|
+
|
|
7
|
+
**Make Claude Code remember everything. Build faster. Vibe harder.**
|
|
8
|
+
|
|
9
|
+
[](https://github.com/PCIRCLE-AI/claude-code-buddy)
|
|
10
|
+
[](https://www.npmjs.com/package/@pcircle/claude-code-buddy-mcp)
|
|
11
|
+
[](LICENSE)
|
|
12
|
+
[](https://modelcontextprotocol.io)
|
|
13
|
+
|
|
14
|
+
[π Quick Start](#-2-minute-quick-start) β’ [π Docs](docs/) β’ [π Website](https://ccb.pcircle.ai) β’ [π¬ Discussions](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
### π₯ **See It In Action** (Interactive Demo)
|
|
19
|
+
|
|
20
|
+
<table>
|
|
21
|
+
<tr>
|
|
22
|
+
<td width="50%" valign="top">
|
|
23
|
+
|
|
24
|
+
#### π΄ **Without CCB**
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Session 1 (Monday)
|
|
28
|
+
You: "We use JWT for auth because..."
|
|
29
|
+
Claude: "Got it! β
"
|
|
30
|
+
|
|
31
|
+
# Session 2 (Tuesday)
|
|
32
|
+
You: "Remember our auth approach?"
|
|
33
|
+
Claude: "Sorry, I don't have context..."
|
|
34
|
+
You: *explains everything again* π€
|
|
35
|
+
|
|
36
|
+
# Session 3 (Wednesday)
|
|
37
|
+
You: "Our JWT implementation..."
|
|
38
|
+
Claude: "What JWT implementation?"
|
|
39
|
+
You: *RAGE QUITS* π’
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
</td>
|
|
43
|
+
<td width="50%" valign="top">
|
|
44
|
+
|
|
45
|
+
#### β
**With CCB**
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# Session 1 (Monday)
|
|
49
|
+
You: buddy-do "setup JWT auth"
|
|
50
|
+
CCB: β
Implemented + Saved to memory
|
|
51
|
+
|
|
52
|
+
# Session 2 (Tuesday)
|
|
53
|
+
You: buddy-remember "auth"
|
|
54
|
+
CCB: π "JWT auth implemented on 2024-01-15
|
|
55
|
+
β³ Access tokens: 15min
|
|
56
|
+
β³ Refresh tokens: 7 days
|
|
57
|
+
β³ Secret rotation: monthly"
|
|
58
|
+
|
|
59
|
+
# Session 3 (Any day, forever)
|
|
60
|
+
You: buddy-do "add OAuth"
|
|
61
|
+
CCB: π§ "I see you have JWT. Let's
|
|
62
|
+
integrate OAuth alongside it..."
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
</td>
|
|
66
|
+
</tr>
|
|
67
|
+
</table>
|
|
68
|
+
|
|
69
|
+
<div align="center">
|
|
70
|
+
|
|
71
|
+
**π‘ Try it yourself:**
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# In Claude Code/Cursor
|
|
75
|
+
buddy-help # See all commands
|
|
76
|
+
buddy-do "explain how CCB works" # Watch it intelligently respond
|
|
77
|
+
buddy-remember "project decisions" # Query your project memory
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**π [Read User Guide](docs/USER_GUIDE.md)** β’ **π§ [API Reference](docs/api/API_REFERENCE.md)**
|
|
81
|
+
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## π€ The Problem
|
|
89
|
+
|
|
90
|
+
You know this pain:
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
Session 1: "Let me explain our architecture..."
|
|
94
|
+
Session 2: "As I mentioned before, our architecture..."
|
|
95
|
+
Session 3: "Like I said earlier, our architecture..."
|
|
96
|
+
Session 4: π€
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Every. Single. Session.**
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## β¨ The Solution
|
|
104
|
+
|
|
105
|
+
<table>
|
|
106
|
+
<tr>
|
|
107
|
+
<td width="50%" valign="top">
|
|
108
|
+
|
|
109
|
+
### β **Before CCB**
|
|
110
|
+
|
|
111
|
+
- Re-explain architecture every session
|
|
112
|
+
- Answer same questions repeatedly
|
|
113
|
+
- Forget design decisions overnight
|
|
114
|
+
- Write similar prompts over and over
|
|
115
|
+
- Claude has amnesia π€
|
|
116
|
+
|
|
117
|
+
</td>
|
|
118
|
+
<td width="50%" valign="top">
|
|
119
|
+
|
|
120
|
+
### β
**After CCB**
|
|
121
|
+
|
|
122
|
+
- **Remembers** project architecture
|
|
123
|
+
- **Recalls** past decisions instantly
|
|
124
|
+
- **Organizes** knowledge automatically
|
|
125
|
+
- **Routes** tasks intelligently
|
|
126
|
+
- Claude becomes your AI teammate π€
|
|
127
|
+
|
|
128
|
+
</td>
|
|
129
|
+
</tr>
|
|
130
|
+
</table>
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## π― Core Features
|
|
135
|
+
|
|
136
|
+
### 1. π§ **Project Memory That Actually Works**
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
# Session 1 (Last week)
|
|
140
|
+
You: "We chose PostgreSQL for JSONB support"
|
|
141
|
+
|
|
142
|
+
# Session 42 (Today)
|
|
143
|
+
You: buddy-remember "why PostgreSQL?"
|
|
144
|
+
CCB: "Based on your decision from 2024-01-15: PostgreSQL was
|
|
145
|
+
chosen for JSONB support and advanced query capabilities..."
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
**Claude remembers. Forever.**
|
|
149
|
+
|
|
150
|
+
### 2. π― **Smart Task Routing (Autopilot Mode)**
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
You: "Review this code"
|
|
154
|
+
CCB: *Detects task type*
|
|
155
|
+
*Activates code review mode*
|
|
156
|
+
*Applies best practices*
|
|
157
|
+
*Delivers structured review*
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
**No more "how should I do this?" Just do it.**
|
|
161
|
+
|
|
162
|
+
### 3. π¬ **Dead Simple Commands**
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
buddy-do "setup authentication" # Execute any dev task
|
|
166
|
+
buddy-remember "API design" # Query project memory
|
|
167
|
+
buddy-help # When stuck
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
**Three commands. Infinite possibilities.**
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## π Installation Options
|
|
175
|
+
|
|
176
|
+
Choose your preferred installation method:
|
|
177
|
+
|
|
178
|
+
### π Official Marketplace (Coming Soon)
|
|
179
|
+
Once approved by Anthropic, install with one command:
|
|
180
|
+
```bash
|
|
181
|
+
/plugin install claude-code-buddy@claude-plugins-official
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### β‘ GitHub Marketplace (Available Now)
|
|
185
|
+
```bash
|
|
186
|
+
# Add marketplace
|
|
187
|
+
/plugin marketplace add PCIRCLE-AI/claude-code-buddy
|
|
188
|
+
|
|
189
|
+
# Install plugin
|
|
190
|
+
/plugin install claude-code-buddy@pcircle-ai
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
### π¦ Quick Install Script (Recommended for Local Dev)
|
|
194
|
+
```bash
|
|
195
|
+
git clone https://github.com/PCIRCLE-AI/claude-code-buddy.git
|
|
196
|
+
cd claude-code-buddy
|
|
197
|
+
./scripts/quick-install.sh
|
|
198
|
+
claude --plugin-dir /path/to/claude-code-buddy
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
### π― For Cursor Users
|
|
202
|
+
```
|
|
203
|
+
cursor://anysphere.cursor-deeplink/mcp/install?name=@pcircle/claude-code-buddy-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBwY2lyY2xlL2NsYXVkZS1jb2RlLWJ1ZGR5LW1jcCJdfQ==
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## π 2-Minute Quick Start
|
|
209
|
+
|
|
210
|
+
### Step 1: Quick Install
|
|
211
|
+
|
|
212
|
+
<details>
|
|
213
|
+
<summary><strong>β‘ Claude Code Users</strong> (Click to expand) β RECOMMENDED</summary>
|
|
214
|
+
|
|
215
|
+
**Three simple commands:**
|
|
216
|
+
|
|
217
|
+
```bash
|
|
218
|
+
git clone https://github.com/PCIRCLE-AI/claude-code-buddy.git
|
|
219
|
+
cd claude-code-buddy
|
|
220
|
+
./scripts/quick-install.sh
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
The script will:
|
|
224
|
+
- β
Check prerequisites (Node.js 20+)
|
|
225
|
+
- β
Install dependencies
|
|
226
|
+
- β
Build CCB
|
|
227
|
+
- β
Show you how to activate the plugin
|
|
228
|
+
|
|
229
|
+
**Then start Claude Code with:**
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
claude --plugin-dir /path/to/claude-code-buddy
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
**Done!** CCB is now available as a plugin.
|
|
236
|
+
|
|
237
|
+
<Note>
|
|
238
|
+
The `--plugin-dir` flag loads your local plugin. For team distribution, see [Plugin Marketplaces](https://code.claude.com/docs/en/plugin-marketplaces) to create a shared marketplace.
|
|
239
|
+
</Note>
|
|
240
|
+
|
|
241
|
+
</details>
|
|
242
|
+
|
|
243
|
+
<details>
|
|
244
|
+
<summary><strong>π― Cursor Users</strong> (Click to expand)</summary>
|
|
245
|
+
|
|
246
|
+
Cursor uses the same MCP protocol. You can use the quick install link:
|
|
247
|
+
```
|
|
248
|
+
cursor://anysphere.cursor-deeplink/mcp/install?name=@pcircle/claude-code-buddy-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBwY2lyY2xlL2NsYXVkZS1jb2RlLWJ1ZGR5LW1jcCJdfQ==
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**Restart Cursor** and you're set.
|
|
252
|
+
|
|
253
|
+
</details>
|
|
254
|
+
|
|
255
|
+
### Step 2: Test It
|
|
256
|
+
|
|
257
|
+
```bash
|
|
258
|
+
# In Claude Code/Cursor, type:
|
|
259
|
+
buddy-help
|
|
260
|
+
|
|
261
|
+
# You should see CCB's command list
|
|
262
|
+
# Now try:
|
|
263
|
+
buddy-do "explain CCB features"
|
|
264
|
+
|
|
265
|
+
# Watch the magic happen β¨
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
**π That's it! You're vibing now.**
|
|
269
|
+
|
|
270
|
+
π **Need help?** [Detailed installation guide](docs/QUICK_INSTALL.md) | [Troubleshooting](docs/TROUBLESHOOTING.md)
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## π‘ Real-World Usage
|
|
275
|
+
|
|
276
|
+
### Scenario 1: **Building a New Feature**
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
You: buddy-do "create a real-time chat with WebSocket"
|
|
280
|
+
|
|
281
|
+
CCB analyzes your project...
|
|
282
|
+
π Detected: React + Node.js + Express
|
|
283
|
+
π§ Recalled: Your preference for TypeScript strict mode
|
|
284
|
+
π Applying: Error boundaries pattern from LoginPage.tsx
|
|
285
|
+
|
|
286
|
+
β
Generated:
|
|
287
|
+
ββ server/chat.ts (WebSocket server)
|
|
288
|
+
ββ components/ChatWindow.tsx (React component)
|
|
289
|
+
ββ hooks/useWebSocket.ts (Custom hook)
|
|
290
|
+
|
|
291
|
+
πΎ Saved to memory: "WebSocket chat architecture - 2024-01-20"
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
### Scenario 2: **"Wait, Why Did We Do That?"**
|
|
295
|
+
|
|
296
|
+
```bash
|
|
297
|
+
You: buddy-remember "authentication approach"
|
|
298
|
+
|
|
299
|
+
CCB searches knowledge graph...
|
|
300
|
+
|
|
301
|
+
π Found 3 related memories:
|
|
302
|
+
|
|
303
|
+
ββ 2024-01-15: Initial Auth Decision
|
|
304
|
+
β π¬ "JWT chosen over sessions for stateless API"
|
|
305
|
+
β β‘ Reasoning: Mobile app compatibility
|
|
306
|
+
β
|
|
307
|
+
ββ 2024-01-18: Token Expiry Implementation
|
|
308
|
+
β π» Code: auth/middleware.ts:42-67
|
|
309
|
+
β π§ Access: 15min | Refresh: 7 days
|
|
310
|
+
β
|
|
311
|
+
ββ 2024-01-22: Security Enhancement
|
|
312
|
+
π‘οΈ Added: Rate limiting + Token rotation
|
|
313
|
+
π Prevented: Token reuse vulnerability
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
### Scenario 3: **Continuous Development Flow**
|
|
317
|
+
|
|
318
|
+
```
|
|
319
|
+
Day 1 β You: "Implement user login"
|
|
320
|
+
β CCB: β
Created + πΎ Remembered
|
|
321
|
+
β
|
|
322
|
+
Day 5 β You: "Add password reset"
|
|
323
|
+
β CCB: π§ "I see you use JWT tokens..."
|
|
324
|
+
β β
Integrated seamlessly
|
|
325
|
+
β
|
|
326
|
+
Day 10β You: "Add OAuth support"
|
|
327
|
+
β CCB: π§ "Based on your JWT + password reset..."
|
|
328
|
+
β β
Consistent with existing auth
|
|
329
|
+
β
|
|
330
|
+
Week 8β You: "Why did we choose JWT again?"
|
|
331
|
+
β CCB: π *Instant recall from Day 1*
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
**No context re-explanation. Ever again.**
|
|
335
|
+
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## π Why CCB vs. Others?
|
|
339
|
+
|
|
340
|
+
| Feature | Plain Claude Code | Other MCP Tools | CCB |
|
|
341
|
+
|---------|-------------------|-----------------|-----|
|
|
342
|
+
| **Persistent Memory** | β | β οΈ Basic | β
**Full Knowledge Graph** |
|
|
343
|
+
| **Smart Routing** | β | β | β
**Auto-detects task type** |
|
|
344
|
+
| **Vibe Coding Optimized** | β οΈ | β | β
**Built for it** |
|
|
345
|
+
| **Zero Setup** | β
| β οΈ Complex | β
**2 minutes** |
|
|
346
|
+
| **Free & Open Source** | β
| β οΈ Varies | β
**AGPL-3.0** |
|
|
347
|
+
|
|
348
|
+
---
|
|
349
|
+
|
|
350
|
+
## π οΈ Advanced Features
|
|
351
|
+
|
|
352
|
+
<details>
|
|
353
|
+
<summary><strong>Auto-Memory System</strong></summary>
|
|
354
|
+
|
|
355
|
+
When you use `buddy-do`, CCB automatically records:
|
|
356
|
+
- β
Task goals and outcomes
|
|
357
|
+
- β
Technical decisions and reasoning
|
|
358
|
+
- β
Errors encountered and solutions
|
|
359
|
+
- β
Development milestones
|
|
360
|
+
|
|
361
|
+
**You don't think about memory. CCB does.**
|
|
362
|
+
|
|
363
|
+
</details>
|
|
364
|
+
|
|
365
|
+
<details>
|
|
366
|
+
<summary><strong>Multi-Project Support</strong></summary>
|
|
367
|
+
|
|
368
|
+
Each project gets its own isolated memory space.
|
|
369
|
+
|
|
370
|
+
```bash
|
|
371
|
+
cd ~/project-A
|
|
372
|
+
buddy-remember "auth" # Returns project-A's auth decisions
|
|
373
|
+
|
|
374
|
+
cd ~/project-B
|
|
375
|
+
buddy-remember "auth" # Returns project-B's auth decisions
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+
**No cross-contamination. Ever.**
|
|
379
|
+
|
|
380
|
+
</details>
|
|
381
|
+
|
|
382
|
+
<details>
|
|
383
|
+
<summary><strong>17 MCP Standard Tools</strong></summary>
|
|
384
|
+
|
|
385
|
+
Full integration with Model Context Protocol.
|
|
386
|
+
|
|
387
|
+
See complete list: [ToolDefinitions.ts](src/mcp/ToolDefinitions.ts)
|
|
388
|
+
|
|
389
|
+
</details>
|
|
390
|
+
|
|
391
|
+
---
|
|
392
|
+
|
|
393
|
+
## π§ͺ Technical Details
|
|
394
|
+
|
|
395
|
+
<table>
|
|
396
|
+
<tr>
|
|
397
|
+
<td width="50%">
|
|
398
|
+
|
|
399
|
+
### Requirements
|
|
400
|
+
- Node.js 20+
|
|
401
|
+
- Claude Code or Cursor IDE
|
|
402
|
+
- 5 minutes of your time
|
|
403
|
+
|
|
404
|
+
</td>
|
|
405
|
+
<td width="50%">
|
|
406
|
+
|
|
407
|
+
### Platform Support
|
|
408
|
+
- β
**Claude 4.5** (Haiku/Sonnet/Opus)
|
|
409
|
+
- β
**MCP SDK 1.25.3**
|
|
410
|
+
- β
Windows, macOS, Linux
|
|
411
|
+
|
|
412
|
+
</td>
|
|
413
|
+
</tr>
|
|
414
|
+
</table>
|
|
415
|
+
|
|
416
|
+
### π Security First
|
|
417
|
+
|
|
418
|
+
- β
**100% Local Processing** - Your data never leaves your machine
|
|
419
|
+
- β
**No External API Calls** - Uses your Claude Code subscription
|
|
420
|
+
- β
**npm audit: 0 vulnerabilities**
|
|
421
|
+
- β
**Open Source** - Audit the code yourself
|
|
422
|
+
|
|
423
|
+
---
|
|
424
|
+
|
|
425
|
+
## π€ Contributing
|
|
426
|
+
|
|
427
|
+
We'd love your help making CCB better!
|
|
428
|
+
|
|
429
|
+
- π **Found a bug?** [Open an issue](https://github.com/PCIRCLE-AI/claude-code-buddy/issues/new)
|
|
430
|
+
- π‘ **Have an idea?** [Start a discussion](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
|
|
431
|
+
- π οΈ **Want to code?** Check [Good First Issues](https://github.com/PCIRCLE-AI/claude-code-buddy/labels/good%20first%20issue)
|
|
432
|
+
|
|
433
|
+
**Contributing Guide**: [CONTRIBUTING.md](docs/CONTRIBUTING.md)
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
## π Documentation
|
|
438
|
+
|
|
439
|
+
- π [Full Documentation](docs/)
|
|
440
|
+
- π [Quick Install Guide](docs/QUICK_INSTALL.md)
|
|
441
|
+
- π [User Guide](docs/USER_GUIDE.md)
|
|
442
|
+
- π οΈ [API Reference](docs/api/API_REFERENCE.md)
|
|
443
|
+
- β [Troubleshooting](docs/TROUBLESHOOTING.md)
|
|
444
|
+
|
|
445
|
+
---
|
|
446
|
+
|
|
447
|
+
## β FAQ
|
|
448
|
+
|
|
449
|
+
<details>
|
|
450
|
+
<summary><strong>Q: Does it cost money?</strong></summary>
|
|
451
|
+
|
|
452
|
+
**A:** Nope. 100% free and open source (AGPL-3.0). Uses your existing Claude Code subscription.
|
|
453
|
+
|
|
454
|
+
</details>
|
|
455
|
+
|
|
456
|
+
<details>
|
|
457
|
+
<summary><strong>Q: Is my data safe?</strong></summary>
|
|
458
|
+
|
|
459
|
+
**A:** Yes. Everything processed locally. Zero external API calls. Zero data upload.
|
|
460
|
+
|
|
461
|
+
</details>
|
|
462
|
+
|
|
463
|
+
<details>
|
|
464
|
+
<summary><strong>Q: How is this different from plain Claude Code?</strong></summary>
|
|
465
|
+
|
|
466
|
+
**A:** CCB adds two superpowers:
|
|
467
|
+
1. **Persistent Memory** - Claude remembers your project across sessions
|
|
468
|
+
2. **Smart Routing** - Automatically detects and handles different task types
|
|
469
|
+
|
|
470
|
+
Think of it as Claude Code + a really good memory + autopilot mode.
|
|
471
|
+
|
|
472
|
+
</details>
|
|
473
|
+
|
|
474
|
+
<details>
|
|
475
|
+
<summary><strong>Q: Can I customize it?</strong></summary>
|
|
476
|
+
|
|
477
|
+
**A:** Absolutely. Prompt templates in `src/core/PromptEnhancer.ts`.
|
|
478
|
+
|
|
479
|
+
Want deeper customization? Fork it, hack it, make it yours. That's the open source way.
|
|
480
|
+
|
|
481
|
+
</details>
|
|
482
|
+
|
|
483
|
+
<details>
|
|
484
|
+
<summary><strong>Q: Does it work with Cursor?</strong></summary>
|
|
485
|
+
|
|
486
|
+
**A:** Yes! Cursor has native MCP support. One-click install.
|
|
487
|
+
|
|
488
|
+
</details>
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
## π Acknowledgments
|
|
493
|
+
|
|
494
|
+
Built on the shoulders of giants:
|
|
495
|
+
|
|
496
|
+
- [Model Context Protocol (MCP)](https://github.com/anthropics/mcp) - The foundation
|
|
497
|
+
- [Claude Code](https://claude.com/claude-code) - The platform
|
|
498
|
+
- All our amazing [contributors](https://github.com/PCIRCLE-AI/claude-code-buddy/graphs/contributors) and early testers
|
|
499
|
+
|
|
500
|
+
---
|
|
501
|
+
|
|
502
|
+
## π License
|
|
503
|
+
|
|
504
|
+
**AGPL-3.0** - See [LICENSE](LICENSE)
|
|
505
|
+
|
|
506
|
+
*This means: Use it, modify it, share it. But keep it open source.*
|
|
507
|
+
|
|
508
|
+
---
|
|
509
|
+
|
|
510
|
+
## π Star History
|
|
511
|
+
|
|
512
|
+
[](https://star-history.com/#PCIRCLE-AI/claude-code-buddy&Date)
|
|
513
|
+
|
|
514
|
+
---
|
|
515
|
+
|
|
516
|
+
<div align="center">
|
|
517
|
+
|
|
518
|
+
### **Built by developers, for developers**
|
|
519
|
+
|
|
520
|
+
**Stop repeating yourself. Start vibing.**
|
|
521
|
+
|
|
522
|
+
[π Get Started](#-2-minute-quick-start) β’ [π Read the Docs](docs/) β’ [π¬ Join the Discussion](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
|
|
523
|
+
|
|
524
|
+
---
|
|
525
|
+
|
|
526
|
+
### β **If CCB saved you time today, give it a star!**
|
|
527
|
+
|
|
528
|
+
It helps others discover this tool.
|
|
529
|
+
|
|
530
|
+
---
|
|
531
|
+
|
|
532
|
+
**Not affiliated with Anthropic PBC** β’ Independent open-source project
|
|
533
|
+
|
|
534
|
+
**Languages:** [English](README.md) β’ [ηΉι«δΈζ](README.zh-TW.md)
|
|
535
|
+
|
|
536
|
+
</div>
|