@pcircle/memesh 2.6.6 β 2.7.0
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/README.md +116 -54
- package/README.zh-TW.md +198 -33
- package/dist/a2a/client/A2AClient.d.ts +7 -1
- package/dist/a2a/client/A2AClient.d.ts.map +1 -1
- package/dist/a2a/client/A2AClient.js +197 -61
- package/dist/a2a/client/A2AClient.js.map +1 -1
- package/dist/a2a/constants.d.ts +34 -0
- package/dist/a2a/constants.d.ts.map +1 -0
- package/dist/a2a/constants.js +34 -0
- package/dist/a2a/constants.js.map +1 -0
- package/dist/a2a/delegator/MCPTaskDelegator.d.ts +19 -0
- package/dist/a2a/delegator/MCPTaskDelegator.d.ts.map +1 -0
- package/dist/a2a/delegator/MCPTaskDelegator.js +184 -0
- package/dist/a2a/delegator/MCPTaskDelegator.js.map +1 -0
- package/dist/a2a/delegator/index.d.ts +3 -0
- package/dist/a2a/delegator/index.d.ts.map +1 -0
- package/dist/a2a/delegator/index.js +2 -0
- package/dist/a2a/delegator/index.js.map +1 -0
- package/dist/a2a/delegator/types.d.ts +9 -0
- package/dist/a2a/delegator/types.d.ts.map +1 -0
- package/dist/a2a/delegator/types.js +2 -0
- package/dist/a2a/delegator/types.js.map +1 -0
- package/dist/a2a/errors/ErrorCodes.d.ts +26 -0
- package/dist/a2a/errors/ErrorCodes.d.ts.map +1 -0
- package/dist/a2a/errors/ErrorCodes.js +25 -0
- package/dist/a2a/errors/ErrorCodes.js.map +1 -0
- package/dist/a2a/errors/ErrorMessages.d.ts +28 -0
- package/dist/a2a/errors/ErrorMessages.d.ts.map +1 -0
- package/dist/a2a/errors/ErrorMessages.js +51 -0
- package/dist/a2a/errors/ErrorMessages.js.map +1 -0
- package/dist/a2a/errors/index.d.ts +3 -0
- package/dist/a2a/errors/index.d.ts.map +1 -0
- package/dist/a2a/errors/index.js +3 -0
- package/dist/a2a/errors/index.js.map +1 -0
- package/dist/a2a/executor/TaskExecutor.d.ts +6 -4
- package/dist/a2a/executor/TaskExecutor.d.ts.map +1 -1
- package/dist/a2a/executor/TaskExecutor.js +8 -47
- package/dist/a2a/executor/TaskExecutor.js.map +1 -1
- package/dist/a2a/jobs/TimeoutChecker.d.ts +49 -0
- package/dist/a2a/jobs/TimeoutChecker.d.ts.map +1 -0
- package/dist/a2a/jobs/TimeoutChecker.js +176 -0
- package/dist/a2a/jobs/TimeoutChecker.js.map +1 -0
- package/dist/a2a/metrics/A2AMetrics.d.ts +38 -0
- package/dist/a2a/metrics/A2AMetrics.d.ts.map +1 -0
- package/dist/a2a/metrics/A2AMetrics.js +142 -0
- package/dist/a2a/metrics/A2AMetrics.js.map +1 -0
- package/dist/a2a/metrics/index.d.ts +3 -0
- package/dist/a2a/metrics/index.d.ts.map +1 -0
- package/dist/a2a/metrics/index.js +2 -0
- package/dist/a2a/metrics/index.js.map +1 -0
- package/dist/a2a/server/A2AServer.d.ts +2 -0
- package/dist/a2a/server/A2AServer.d.ts.map +1 -1
- package/dist/a2a/server/A2AServer.js +48 -8
- package/dist/a2a/server/A2AServer.js.map +1 -1
- package/dist/a2a/server/middleware/auth.d.ts +6 -0
- package/dist/a2a/server/middleware/auth.d.ts.map +1 -0
- package/dist/a2a/server/middleware/auth.js +64 -0
- package/dist/a2a/server/middleware/auth.js.map +1 -0
- package/dist/a2a/server/middleware/csrf.d.ts +7 -0
- package/dist/a2a/server/middleware/csrf.d.ts.map +1 -0
- package/dist/a2a/server/middleware/csrf.js +169 -0
- package/dist/a2a/server/middleware/csrf.js.map +1 -0
- package/dist/a2a/server/middleware/rateLimit.d.ts +9 -0
- package/dist/a2a/server/middleware/rateLimit.d.ts.map +1 -0
- package/dist/a2a/server/middleware/rateLimit.js +192 -0
- package/dist/a2a/server/middleware/rateLimit.js.map +1 -0
- package/dist/a2a/server/middleware/resourceProtection.d.ts +17 -0
- package/dist/a2a/server/middleware/resourceProtection.d.ts.map +1 -0
- package/dist/a2a/server/middleware/resourceProtection.js +258 -0
- package/dist/a2a/server/middleware/resourceProtection.js.map +1 -0
- package/dist/a2a/server/middleware/timeout.d.ts +4 -0
- package/dist/a2a/server/middleware/timeout.d.ts.map +1 -0
- package/dist/a2a/server/middleware/timeout.js +56 -0
- package/dist/a2a/server/middleware/timeout.js.map +1 -0
- package/dist/a2a/server/middleware.d.ts.map +1 -1
- package/dist/a2a/server/middleware.js +9 -6
- package/dist/a2a/server/middleware.js.map +1 -1
- package/dist/a2a/server/routes.d.ts +3 -0
- package/dist/a2a/server/routes.d.ts.map +1 -1
- package/dist/a2a/server/routes.js +24 -7
- package/dist/a2a/server/routes.js.map +1 -1
- package/dist/a2a/server/validation/index.d.ts +2 -0
- package/dist/a2a/server/validation/index.d.ts.map +1 -0
- package/dist/a2a/server/validation/index.js +2 -0
- package/dist/a2a/server/validation/index.js.map +1 -0
- package/dist/a2a/server/validation/sendMessageSchema.d.ts +112 -0
- package/dist/a2a/server/validation/sendMessageSchema.d.ts.map +1 -0
- package/dist/a2a/server/validation/sendMessageSchema.js +143 -0
- package/dist/a2a/server/validation/sendMessageSchema.js.map +1 -0
- package/dist/a2a/storage/AgentRegistry.d.ts +7 -0
- package/dist/a2a/storage/AgentRegistry.d.ts.map +1 -1
- package/dist/a2a/storage/AgentRegistry.js +95 -38
- package/dist/a2a/storage/AgentRegistry.js.map +1 -1
- package/dist/a2a/storage/TaskQueue.d.ts +3 -0
- package/dist/a2a/storage/TaskQueue.d.ts.map +1 -1
- package/dist/a2a/storage/TaskQueue.js +80 -18
- package/dist/a2a/storage/TaskQueue.js.map +1 -1
- package/dist/a2a/storage/inputValidation.d.ts +18 -0
- package/dist/a2a/storage/inputValidation.d.ts.map +1 -0
- package/dist/a2a/storage/inputValidation.js +101 -0
- package/dist/a2a/storage/inputValidation.js.map +1 -0
- package/dist/a2a/storage/schemas.sql +11 -1
- package/dist/a2a/types/index.d.ts +1 -0
- package/dist/a2a/types/index.d.ts.map +1 -1
- package/dist/a2a/types/rateLimit.d.ts +26 -0
- package/dist/a2a/types/rateLimit.d.ts.map +1 -0
- package/dist/a2a/types/rateLimit.js +2 -0
- package/dist/a2a/types/rateLimit.js.map +1 -0
- package/dist/a2a/types/task.d.ts +1 -1
- package/dist/a2a/types/task.d.ts.map +1 -1
- package/dist/agents/E2EHealingAgent.js +1 -1
- package/dist/agents/E2EHealingAgent.js.map +1 -1
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.d.ts.map +1 -1
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.js +5 -3
- package/dist/agents/knowledge/storage/KnowledgeGraphStore.js.map +1 -1
- package/dist/cli/config.d.ts +36 -0
- package/dist/cli/config.d.ts.map +1 -0
- package/dist/cli/config.js +398 -0
- package/dist/cli/config.js.map +1 -0
- package/dist/cli/daemon.d.ts +3 -0
- package/dist/cli/daemon.d.ts.map +1 -0
- package/dist/cli/daemon.js +413 -0
- package/dist/cli/daemon.js.map +1 -0
- package/dist/cli/dashboard.d.ts +2 -0
- package/dist/cli/dashboard.d.ts.map +1 -0
- package/dist/cli/dashboard.js +300 -0
- package/dist/cli/dashboard.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +182 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/setup-wizard.d.ts +18 -0
- package/dist/cli/setup-wizard.d.ts.map +1 -0
- package/dist/cli/setup-wizard.js +308 -0
- package/dist/cli/setup-wizard.js.map +1 -0
- package/dist/cli/stats.d.ts +34 -0
- package/dist/cli/stats.d.ts.map +1 -0
- package/dist/cli/stats.js +479 -0
- package/dist/cli/stats.js.map +1 -0
- package/dist/cli/tutorial.d.ts +27 -0
- package/dist/cli/tutorial.d.ts.map +1 -0
- package/dist/cli/tutorial.js +430 -0
- package/dist/cli/tutorial.js.map +1 -0
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +8 -7
- package/dist/config/index.js.map +1 -1
- package/dist/config/simple-config.js.map +1 -1
- package/dist/core/BackgroundExecutor.d.ts +6 -0
- package/dist/core/BackgroundExecutor.d.ts.map +1 -1
- package/dist/core/BackgroundExecutor.js +152 -44
- package/dist/core/BackgroundExecutor.js.map +1 -1
- package/dist/core/ClaudeMdRuleExtractor.d.ts.map +1 -1
- package/dist/core/ClaudeMdRuleExtractor.js +9 -14
- package/dist/core/ClaudeMdRuleExtractor.js.map +1 -1
- package/dist/core/MistakePatternManager.d.ts.map +1 -1
- package/dist/core/MistakePatternManager.js +29 -3
- package/dist/core/MistakePatternManager.js.map +1 -1
- package/dist/core/ResourceMonitor.d.ts.map +1 -1
- package/dist/core/ResourceMonitor.js +64 -2
- package/dist/core/ResourceMonitor.js.map +1 -1
- package/dist/core/ResultHandler.d.ts.map +1 -1
- package/dist/core/ResultHandler.js +12 -0
- package/dist/core/ResultHandler.js.map +1 -1
- package/dist/core/SessionContextMonitor.d.ts.map +1 -1
- package/dist/core/SessionContextMonitor.js +4 -1
- package/dist/core/SessionContextMonitor.js.map +1 -1
- package/dist/core/SessionTokenTracker.d.ts.map +1 -1
- package/dist/core/SessionTokenTracker.js +58 -2
- package/dist/core/SessionTokenTracker.js.map +1 -1
- package/dist/db/ConnectionPool.d.ts.map +1 -1
- package/dist/db/ConnectionPool.js +111 -37
- package/dist/db/ConnectionPool.js.map +1 -1
- package/dist/db/QueryCache.d.ts.map +1 -1
- package/dist/db/QueryCache.js +8 -5
- package/dist/db/QueryCache.js.map +1 -1
- package/dist/errors/ErrorClassifier.d.ts +60 -0
- package/dist/errors/ErrorClassifier.d.ts.map +1 -0
- package/dist/errors/ErrorClassifier.js +443 -0
- package/dist/errors/ErrorClassifier.js.map +1 -0
- package/dist/errors/index.d.ts +1 -0
- package/dist/errors/index.d.ts.map +1 -1
- package/dist/errors/index.js +3 -0
- package/dist/errors/index.js.map +1 -1
- package/dist/evolution/ABTestManager.d.ts.map +1 -1
- package/dist/evolution/ABTestManager.js +80 -1
- package/dist/evolution/ABTestManager.js.map +1 -1
- package/dist/evolution/EvolutionBootstrap.d.ts.map +1 -1
- package/dist/evolution/EvolutionBootstrap.js +4 -4
- package/dist/evolution/EvolutionBootstrap.js.map +1 -1
- package/dist/evolution/FeedbackCollector.d.ts.map +1 -1
- package/dist/evolution/FeedbackCollector.js +6 -0
- package/dist/evolution/FeedbackCollector.js.map +1 -1
- package/dist/evolution/LearningManager.d.ts.map +1 -1
- package/dist/evolution/LearningManager.js +16 -0
- package/dist/evolution/LearningManager.js.map +1 -1
- package/dist/evolution/MultiObjectiveOptimizer.d.ts.map +1 -1
- package/dist/evolution/MultiObjectiveOptimizer.js +18 -3
- package/dist/evolution/MultiObjectiveOptimizer.js.map +1 -1
- package/dist/evolution/PerformanceTracker.d.ts.map +1 -1
- package/dist/evolution/PerformanceTracker.js +83 -13
- package/dist/evolution/PerformanceTracker.js.map +1 -1
- package/dist/evolution/StatisticalAnalyzer.d.ts +1 -0
- package/dist/evolution/StatisticalAnalyzer.d.ts.map +1 -1
- package/dist/evolution/StatisticalAnalyzer.js +126 -9
- package/dist/evolution/StatisticalAnalyzer.js.map +1 -1
- package/dist/evolution/instrumentation/withEvolutionTracking.d.ts.map +1 -1
- package/dist/evolution/instrumentation/withEvolutionTracking.js +0 -2
- package/dist/evolution/instrumentation/withEvolutionTracking.js.map +1 -1
- package/dist/evolution/storage/SQLiteStore.d.ts +1 -0
- package/dist/evolution/storage/SQLiteStore.d.ts.map +1 -1
- package/dist/evolution/storage/SQLiteStore.js +59 -12
- package/dist/evolution/storage/SQLiteStore.js.map +1 -1
- package/dist/evolution/storage/validation.d.ts +2 -3
- package/dist/evolution/storage/validation.d.ts.map +1 -1
- package/dist/evolution/storage/validation.js +2 -6
- package/dist/evolution/storage/validation.js.map +1 -1
- package/dist/hooks/a2a-collaboration.d.ts +30 -0
- package/dist/hooks/a2a-collaboration.d.ts.map +1 -0
- package/dist/hooks/a2a-collaboration.js +400 -0
- package/dist/hooks/a2a-collaboration.js.map +1 -0
- package/dist/knowledge-graph/index.d.ts +7 -1
- package/dist/knowledge-graph/index.d.ts.map +1 -1
- package/dist/knowledge-graph/index.js +335 -52
- package/dist/knowledge-graph/index.js.map +1 -1
- package/dist/knowledge-graph/types.d.ts +1 -0
- package/dist/knowledge-graph/types.d.ts.map +1 -1
- package/dist/management/UninstallManager.d.ts.map +1 -1
- package/dist/management/UninstallManager.js.map +1 -1
- package/dist/mcp/BuddyCommands.d.ts +15 -2
- package/dist/mcp/BuddyCommands.d.ts.map +1 -1
- package/dist/mcp/BuddyCommands.js +635 -52
- package/dist/mcp/BuddyCommands.js.map +1 -1
- package/dist/mcp/ServerInitializer.d.ts +7 -1
- package/dist/mcp/ServerInitializer.d.ts.map +1 -1
- package/dist/mcp/ServerInitializer.js +121 -69
- package/dist/mcp/ServerInitializer.js.map +1 -1
- package/dist/mcp/ToolDefinitions.d.ts.map +1 -1
- package/dist/mcp/ToolDefinitions.js +109 -18
- package/dist/mcp/ToolDefinitions.js.map +1 -1
- package/dist/mcp/ToolRouter.d.ts +6 -0
- package/dist/mcp/ToolRouter.d.ts.map +1 -1
- package/dist/mcp/ToolRouter.js +90 -2
- package/dist/mcp/ToolRouter.js.map +1 -1
- package/dist/mcp/daemon/DaemonBootstrap.d.ts +33 -0
- package/dist/mcp/daemon/DaemonBootstrap.d.ts.map +1 -0
- package/dist/mcp/daemon/DaemonBootstrap.js +155 -0
- package/dist/mcp/daemon/DaemonBootstrap.js.map +1 -0
- package/dist/mcp/daemon/DaemonLockManager.d.ts +47 -0
- package/dist/mcp/daemon/DaemonLockManager.d.ts.map +1 -0
- package/dist/mcp/daemon/DaemonLockManager.js +417 -0
- package/dist/mcp/daemon/DaemonLockManager.js.map +1 -0
- package/dist/mcp/daemon/DaemonProtocol.d.ts +127 -0
- package/dist/mcp/daemon/DaemonProtocol.d.ts.map +1 -0
- package/dist/mcp/daemon/DaemonProtocol.js +452 -0
- package/dist/mcp/daemon/DaemonProtocol.js.map +1 -0
- package/dist/mcp/daemon/DaemonSocketServer.d.ts +71 -0
- package/dist/mcp/daemon/DaemonSocketServer.d.ts.map +1 -0
- package/dist/mcp/daemon/DaemonSocketServer.js +384 -0
- package/dist/mcp/daemon/DaemonSocketServer.js.map +1 -0
- package/dist/mcp/daemon/GracefulShutdownCoordinator.d.ts +67 -0
- package/dist/mcp/daemon/GracefulShutdownCoordinator.d.ts.map +1 -0
- package/dist/mcp/daemon/GracefulShutdownCoordinator.js +206 -0
- package/dist/mcp/daemon/GracefulShutdownCoordinator.js.map +1 -0
- package/dist/mcp/daemon/IpcTransport.d.ts +42 -0
- package/dist/mcp/daemon/IpcTransport.d.ts.map +1 -0
- package/dist/mcp/daemon/IpcTransport.js +231 -0
- package/dist/mcp/daemon/IpcTransport.js.map +1 -0
- package/dist/mcp/daemon/StdioProxyClient.d.ts +84 -0
- package/dist/mcp/daemon/StdioProxyClient.d.ts.map +1 -0
- package/dist/mcp/daemon/StdioProxyClient.js +560 -0
- package/dist/mcp/daemon/StdioProxyClient.js.map +1 -0
- package/dist/mcp/daemon/VersionManager.d.ts +35 -0
- package/dist/mcp/daemon/VersionManager.d.ts.map +1 -0
- package/dist/mcp/daemon/VersionManager.js +169 -0
- package/dist/mcp/daemon/VersionManager.js.map +1 -0
- package/dist/mcp/daemon/index.d.ts +9 -0
- package/dist/mcp/daemon/index.d.ts.map +1 -0
- package/dist/mcp/daemon/index.js +9 -0
- package/dist/mcp/daemon/index.js.map +1 -0
- package/dist/mcp/handlers/A2AToolHandlers.d.ts.map +1 -1
- package/dist/mcp/handlers/A2AToolHandlers.js +24 -4
- package/dist/mcp/handlers/A2AToolHandlers.js.map +1 -1
- package/dist/mcp/handlers/ToolHandlers.d.ts.map +1 -1
- package/dist/mcp/handlers/ToolHandlers.js.map +1 -1
- package/dist/mcp/resources/best-practices.md +1 -1
- package/dist/mcp/resources/buddy-do-skill.md +1 -1
- package/dist/mcp/resources/examples.md +1 -1
- package/dist/mcp/resources/quick-reference.md +1 -1
- package/dist/mcp/resources/usage-guide.md +2 -2
- package/dist/mcp/schemas/OutputSchemas.d.ts +16 -0
- package/dist/mcp/schemas/OutputSchemas.d.ts.map +1 -1
- package/dist/mcp/schemas/OutputSchemas.js +12 -0
- package/dist/mcp/schemas/OutputSchemas.js.map +1 -1
- package/dist/mcp/server-bootstrap.js +245 -29
- package/dist/mcp/server-bootstrap.js.map +1 -1
- package/dist/mcp/server.d.ts +11 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +196 -9
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tools/a2a-list-tasks.d.ts +13 -0
- package/dist/mcp/tools/a2a-list-tasks.d.ts.map +1 -0
- package/dist/mcp/tools/a2a-list-tasks.js +24 -0
- package/dist/mcp/tools/a2a-list-tasks.js.map +1 -0
- package/dist/mcp/tools/a2a-report-result.d.ts +35 -0
- package/dist/mcp/tools/a2a-report-result.d.ts.map +1 -0
- package/dist/mcp/tools/a2a-report-result.js +73 -0
- package/dist/mcp/tools/a2a-report-result.js.map +1 -0
- package/dist/mcp/tools/buddy-do.d.ts.map +1 -1
- package/dist/mcp/tools/buddy-do.js +10 -2
- package/dist/mcp/tools/buddy-do.js.map +1 -1
- package/dist/mcp/tools/buddy-help.d.ts.map +1 -1
- package/dist/mcp/tools/buddy-help.js +6 -14
- package/dist/mcp/tools/buddy-help.js.map +1 -1
- package/dist/mcp/validation.d.ts +1 -1
- package/dist/memory/AutoMemoryRecorder.d.ts +35 -0
- package/dist/memory/AutoMemoryRecorder.d.ts.map +1 -0
- package/dist/memory/AutoMemoryRecorder.js +164 -0
- package/dist/memory/AutoMemoryRecorder.js.map +1 -0
- package/dist/memory/AutoTagger.d.ts +9 -0
- package/dist/memory/AutoTagger.d.ts.map +1 -0
- package/dist/memory/AutoTagger.js +149 -0
- package/dist/memory/AutoTagger.js.map +1 -0
- package/dist/memory/MistakePatternEngine.d.ts.map +1 -1
- package/dist/memory/MistakePatternEngine.js.map +1 -1
- package/dist/memory/ProjectMemoryCleanup.js +1 -1
- package/dist/memory/SecretManager.d.ts.map +1 -1
- package/dist/memory/SecretManager.js +48 -15
- package/dist/memory/SecretManager.js.map +1 -1
- package/dist/memory/SmartMemoryQuery.d.ts +9 -0
- package/dist/memory/SmartMemoryQuery.d.ts.map +1 -0
- package/dist/memory/SmartMemoryQuery.js +65 -0
- package/dist/memory/SmartMemoryQuery.js.map +1 -0
- package/dist/memory/UnifiedMemoryStore.d.ts +1 -0
- package/dist/memory/UnifiedMemoryStore.d.ts.map +1 -1
- package/dist/memory/UnifiedMemoryStore.js +211 -38
- package/dist/memory/UnifiedMemoryStore.js.map +1 -1
- package/dist/memory/UserPreferenceEngine.d.ts.map +1 -1
- package/dist/memory/UserPreferenceEngine.js +6 -5
- package/dist/memory/UserPreferenceEngine.js.map +1 -1
- package/dist/memory/types/unified-memory.d.ts +2 -0
- package/dist/memory/types/unified-memory.d.ts.map +1 -1
- package/dist/memory/types/unified-memory.js +2 -0
- package/dist/memory/types/unified-memory.js.map +1 -1
- package/dist/orchestrator/AgentRouter.d.ts.map +1 -1
- package/dist/orchestrator/AgentRouter.js +5 -4
- package/dist/orchestrator/AgentRouter.js.map +1 -1
- package/dist/orchestrator/CostTracker.d.ts.map +1 -1
- package/dist/orchestrator/CostTracker.js.map +1 -1
- package/dist/orchestrator/GlobalResourcePool.d.ts.map +1 -1
- package/dist/orchestrator/GlobalResourcePool.js +70 -3
- package/dist/orchestrator/GlobalResourcePool.js.map +1 -1
- package/dist/ui/AsciiProgressBar.d.ts.map +1 -1
- package/dist/ui/AsciiProgressBar.js +0 -1
- package/dist/ui/AsciiProgressBar.js.map +1 -1
- package/dist/ui/AttributionManager.js +2 -2
- package/dist/ui/AttributionManager.js.map +1 -1
- package/dist/ui/Dashboard.d.ts.map +1 -1
- package/dist/ui/Dashboard.js +2 -2
- package/dist/ui/Dashboard.js.map +1 -1
- package/dist/ui/MetricsStore.d.ts.map +1 -1
- package/dist/ui/MetricsStore.js +2 -2
- package/dist/ui/MetricsStore.js.map +1 -1
- package/dist/ui/ProgressIndicator.d.ts +35 -0
- package/dist/ui/ProgressIndicator.d.ts.map +1 -0
- package/dist/ui/ProgressIndicator.js +177 -0
- package/dist/ui/ProgressIndicator.js.map +1 -0
- package/dist/ui/ResponseFormatter.d.ts +8 -0
- package/dist/ui/ResponseFormatter.d.ts.map +1 -1
- package/dist/ui/ResponseFormatter.js +220 -35
- package/dist/ui/ResponseFormatter.js.map +1 -1
- package/dist/ui/design-tokens.d.ts +37 -0
- package/dist/ui/design-tokens.d.ts.map +1 -0
- package/dist/ui/design-tokens.js +105 -0
- package/dist/ui/design-tokens.js.map +1 -0
- package/dist/ui/theme.d.ts +14 -4
- package/dist/ui/theme.d.ts.map +1 -1
- package/dist/ui/theme.js +7 -2
- package/dist/ui/theme.js.map +1 -1
- package/dist/utils/PathResolver.d.ts.map +1 -1
- package/dist/utils/PathResolver.js +3 -2
- package/dist/utils/PathResolver.js.map +1 -1
- package/dist/utils/SystemResources.d.ts.map +1 -1
- package/dist/utils/SystemResources.js +9 -14
- package/dist/utils/SystemResources.js.map +1 -1
- package/dist/utils/errorHandler.d.ts +6 -0
- package/dist/utils/errorHandler.d.ts.map +1 -1
- package/dist/utils/errorHandler.js +50 -1
- package/dist/utils/errorHandler.js.map +1 -1
- package/dist/utils/index.d.ts +19 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +17 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/json.d.ts.map +1 -1
- package/dist/utils/json.js +11 -1
- package/dist/utils/json.js.map +1 -1
- package/dist/utils/logger.d.ts.map +1 -1
- package/dist/utils/logger.js +65 -3
- package/dist/utils/logger.js.map +1 -1
- package/dist/utils/lru-cache.d.ts +7 -0
- package/dist/utils/lru-cache.d.ts.map +1 -1
- package/dist/utils/lru-cache.js +37 -7
- package/dist/utils/lru-cache.js.map +1 -1
- package/dist/utils/safeMath.d.ts +11 -0
- package/dist/utils/safeMath.d.ts.map +1 -0
- package/dist/utils/safeMath.js +92 -0
- package/dist/utils/safeMath.js.map +1 -0
- package/dist/utils/toonify-adapter.d.ts.map +1 -1
- package/dist/utils/toonify-adapter.js.map +1 -1
- package/dist/utils/tracing/TraceContext.d.ts +23 -0
- package/dist/utils/tracing/TraceContext.d.ts.map +1 -0
- package/dist/utils/tracing/TraceContext.js +127 -0
- package/dist/utils/tracing/TraceContext.js.map +1 -0
- package/dist/utils/tracing/index.d.ts +3 -0
- package/dist/utils/tracing/index.d.ts.map +1 -0
- package/dist/utils/tracing/index.js +3 -0
- package/dist/utils/tracing/index.js.map +1 -0
- package/dist/utils/tracing/middleware.d.ts +15 -0
- package/dist/utils/tracing/middleware.d.ts.map +1 -0
- package/dist/utils/tracing/middleware.js +49 -0
- package/dist/utils/tracing/middleware.js.map +1 -0
- package/dist/utils/validation.d.ts +12 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +87 -0
- package/dist/utils/validation.js.map +1 -0
- package/mcp.json +10 -0
- package/package.json +10 -2
- package/plugin.json +2 -12
- package/scripts/postinstall.js +192 -21
- package/README.md.backup +0 -536
- package/README.zh-TW.md.backup +0 -446
package/README.md.backup
DELETED
|
@@ -1,536 +0,0 @@
|
|
|
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>
|