@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.
Files changed (430) hide show
  1. package/README.md +116 -54
  2. package/README.zh-TW.md +198 -33
  3. package/dist/a2a/client/A2AClient.d.ts +7 -1
  4. package/dist/a2a/client/A2AClient.d.ts.map +1 -1
  5. package/dist/a2a/client/A2AClient.js +197 -61
  6. package/dist/a2a/client/A2AClient.js.map +1 -1
  7. package/dist/a2a/constants.d.ts +34 -0
  8. package/dist/a2a/constants.d.ts.map +1 -0
  9. package/dist/a2a/constants.js +34 -0
  10. package/dist/a2a/constants.js.map +1 -0
  11. package/dist/a2a/delegator/MCPTaskDelegator.d.ts +19 -0
  12. package/dist/a2a/delegator/MCPTaskDelegator.d.ts.map +1 -0
  13. package/dist/a2a/delegator/MCPTaskDelegator.js +184 -0
  14. package/dist/a2a/delegator/MCPTaskDelegator.js.map +1 -0
  15. package/dist/a2a/delegator/index.d.ts +3 -0
  16. package/dist/a2a/delegator/index.d.ts.map +1 -0
  17. package/dist/a2a/delegator/index.js +2 -0
  18. package/dist/a2a/delegator/index.js.map +1 -0
  19. package/dist/a2a/delegator/types.d.ts +9 -0
  20. package/dist/a2a/delegator/types.d.ts.map +1 -0
  21. package/dist/a2a/delegator/types.js +2 -0
  22. package/dist/a2a/delegator/types.js.map +1 -0
  23. package/dist/a2a/errors/ErrorCodes.d.ts +26 -0
  24. package/dist/a2a/errors/ErrorCodes.d.ts.map +1 -0
  25. package/dist/a2a/errors/ErrorCodes.js +25 -0
  26. package/dist/a2a/errors/ErrorCodes.js.map +1 -0
  27. package/dist/a2a/errors/ErrorMessages.d.ts +28 -0
  28. package/dist/a2a/errors/ErrorMessages.d.ts.map +1 -0
  29. package/dist/a2a/errors/ErrorMessages.js +51 -0
  30. package/dist/a2a/errors/ErrorMessages.js.map +1 -0
  31. package/dist/a2a/errors/index.d.ts +3 -0
  32. package/dist/a2a/errors/index.d.ts.map +1 -0
  33. package/dist/a2a/errors/index.js +3 -0
  34. package/dist/a2a/errors/index.js.map +1 -0
  35. package/dist/a2a/executor/TaskExecutor.d.ts +6 -4
  36. package/dist/a2a/executor/TaskExecutor.d.ts.map +1 -1
  37. package/dist/a2a/executor/TaskExecutor.js +8 -47
  38. package/dist/a2a/executor/TaskExecutor.js.map +1 -1
  39. package/dist/a2a/jobs/TimeoutChecker.d.ts +49 -0
  40. package/dist/a2a/jobs/TimeoutChecker.d.ts.map +1 -0
  41. package/dist/a2a/jobs/TimeoutChecker.js +176 -0
  42. package/dist/a2a/jobs/TimeoutChecker.js.map +1 -0
  43. package/dist/a2a/metrics/A2AMetrics.d.ts +38 -0
  44. package/dist/a2a/metrics/A2AMetrics.d.ts.map +1 -0
  45. package/dist/a2a/metrics/A2AMetrics.js +142 -0
  46. package/dist/a2a/metrics/A2AMetrics.js.map +1 -0
  47. package/dist/a2a/metrics/index.d.ts +3 -0
  48. package/dist/a2a/metrics/index.d.ts.map +1 -0
  49. package/dist/a2a/metrics/index.js +2 -0
  50. package/dist/a2a/metrics/index.js.map +1 -0
  51. package/dist/a2a/server/A2AServer.d.ts +2 -0
  52. package/dist/a2a/server/A2AServer.d.ts.map +1 -1
  53. package/dist/a2a/server/A2AServer.js +48 -8
  54. package/dist/a2a/server/A2AServer.js.map +1 -1
  55. package/dist/a2a/server/middleware/auth.d.ts +6 -0
  56. package/dist/a2a/server/middleware/auth.d.ts.map +1 -0
  57. package/dist/a2a/server/middleware/auth.js +64 -0
  58. package/dist/a2a/server/middleware/auth.js.map +1 -0
  59. package/dist/a2a/server/middleware/csrf.d.ts +7 -0
  60. package/dist/a2a/server/middleware/csrf.d.ts.map +1 -0
  61. package/dist/a2a/server/middleware/csrf.js +169 -0
  62. package/dist/a2a/server/middleware/csrf.js.map +1 -0
  63. package/dist/a2a/server/middleware/rateLimit.d.ts +9 -0
  64. package/dist/a2a/server/middleware/rateLimit.d.ts.map +1 -0
  65. package/dist/a2a/server/middleware/rateLimit.js +192 -0
  66. package/dist/a2a/server/middleware/rateLimit.js.map +1 -0
  67. package/dist/a2a/server/middleware/resourceProtection.d.ts +17 -0
  68. package/dist/a2a/server/middleware/resourceProtection.d.ts.map +1 -0
  69. package/dist/a2a/server/middleware/resourceProtection.js +258 -0
  70. package/dist/a2a/server/middleware/resourceProtection.js.map +1 -0
  71. package/dist/a2a/server/middleware/timeout.d.ts +4 -0
  72. package/dist/a2a/server/middleware/timeout.d.ts.map +1 -0
  73. package/dist/a2a/server/middleware/timeout.js +56 -0
  74. package/dist/a2a/server/middleware/timeout.js.map +1 -0
  75. package/dist/a2a/server/middleware.d.ts.map +1 -1
  76. package/dist/a2a/server/middleware.js +9 -6
  77. package/dist/a2a/server/middleware.js.map +1 -1
  78. package/dist/a2a/server/routes.d.ts +3 -0
  79. package/dist/a2a/server/routes.d.ts.map +1 -1
  80. package/dist/a2a/server/routes.js +24 -7
  81. package/dist/a2a/server/routes.js.map +1 -1
  82. package/dist/a2a/server/validation/index.d.ts +2 -0
  83. package/dist/a2a/server/validation/index.d.ts.map +1 -0
  84. package/dist/a2a/server/validation/index.js +2 -0
  85. package/dist/a2a/server/validation/index.js.map +1 -0
  86. package/dist/a2a/server/validation/sendMessageSchema.d.ts +112 -0
  87. package/dist/a2a/server/validation/sendMessageSchema.d.ts.map +1 -0
  88. package/dist/a2a/server/validation/sendMessageSchema.js +143 -0
  89. package/dist/a2a/server/validation/sendMessageSchema.js.map +1 -0
  90. package/dist/a2a/storage/AgentRegistry.d.ts +7 -0
  91. package/dist/a2a/storage/AgentRegistry.d.ts.map +1 -1
  92. package/dist/a2a/storage/AgentRegistry.js +95 -38
  93. package/dist/a2a/storage/AgentRegistry.js.map +1 -1
  94. package/dist/a2a/storage/TaskQueue.d.ts +3 -0
  95. package/dist/a2a/storage/TaskQueue.d.ts.map +1 -1
  96. package/dist/a2a/storage/TaskQueue.js +80 -18
  97. package/dist/a2a/storage/TaskQueue.js.map +1 -1
  98. package/dist/a2a/storage/inputValidation.d.ts +18 -0
  99. package/dist/a2a/storage/inputValidation.d.ts.map +1 -0
  100. package/dist/a2a/storage/inputValidation.js +101 -0
  101. package/dist/a2a/storage/inputValidation.js.map +1 -0
  102. package/dist/a2a/storage/schemas.sql +11 -1
  103. package/dist/a2a/types/index.d.ts +1 -0
  104. package/dist/a2a/types/index.d.ts.map +1 -1
  105. package/dist/a2a/types/rateLimit.d.ts +26 -0
  106. package/dist/a2a/types/rateLimit.d.ts.map +1 -0
  107. package/dist/a2a/types/rateLimit.js +2 -0
  108. package/dist/a2a/types/rateLimit.js.map +1 -0
  109. package/dist/a2a/types/task.d.ts +1 -1
  110. package/dist/a2a/types/task.d.ts.map +1 -1
  111. package/dist/agents/E2EHealingAgent.js +1 -1
  112. package/dist/agents/E2EHealingAgent.js.map +1 -1
  113. package/dist/agents/knowledge/storage/KnowledgeGraphStore.d.ts.map +1 -1
  114. package/dist/agents/knowledge/storage/KnowledgeGraphStore.js +5 -3
  115. package/dist/agents/knowledge/storage/KnowledgeGraphStore.js.map +1 -1
  116. package/dist/cli/config.d.ts +36 -0
  117. package/dist/cli/config.d.ts.map +1 -0
  118. package/dist/cli/config.js +398 -0
  119. package/dist/cli/config.js.map +1 -0
  120. package/dist/cli/daemon.d.ts +3 -0
  121. package/dist/cli/daemon.d.ts.map +1 -0
  122. package/dist/cli/daemon.js +413 -0
  123. package/dist/cli/daemon.js.map +1 -0
  124. package/dist/cli/dashboard.d.ts +2 -0
  125. package/dist/cli/dashboard.d.ts.map +1 -0
  126. package/dist/cli/dashboard.js +300 -0
  127. package/dist/cli/dashboard.js.map +1 -0
  128. package/dist/cli/index.d.ts +3 -0
  129. package/dist/cli/index.d.ts.map +1 -0
  130. package/dist/cli/index.js +182 -0
  131. package/dist/cli/index.js.map +1 -0
  132. package/dist/cli/setup-wizard.d.ts +18 -0
  133. package/dist/cli/setup-wizard.d.ts.map +1 -0
  134. package/dist/cli/setup-wizard.js +308 -0
  135. package/dist/cli/setup-wizard.js.map +1 -0
  136. package/dist/cli/stats.d.ts +34 -0
  137. package/dist/cli/stats.d.ts.map +1 -0
  138. package/dist/cli/stats.js +479 -0
  139. package/dist/cli/stats.js.map +1 -0
  140. package/dist/cli/tutorial.d.ts +27 -0
  141. package/dist/cli/tutorial.d.ts.map +1 -0
  142. package/dist/cli/tutorial.js +430 -0
  143. package/dist/cli/tutorial.js.map +1 -0
  144. package/dist/config/index.d.ts.map +1 -1
  145. package/dist/config/index.js +8 -7
  146. package/dist/config/index.js.map +1 -1
  147. package/dist/config/simple-config.js.map +1 -1
  148. package/dist/core/BackgroundExecutor.d.ts +6 -0
  149. package/dist/core/BackgroundExecutor.d.ts.map +1 -1
  150. package/dist/core/BackgroundExecutor.js +152 -44
  151. package/dist/core/BackgroundExecutor.js.map +1 -1
  152. package/dist/core/ClaudeMdRuleExtractor.d.ts.map +1 -1
  153. package/dist/core/ClaudeMdRuleExtractor.js +9 -14
  154. package/dist/core/ClaudeMdRuleExtractor.js.map +1 -1
  155. package/dist/core/MistakePatternManager.d.ts.map +1 -1
  156. package/dist/core/MistakePatternManager.js +29 -3
  157. package/dist/core/MistakePatternManager.js.map +1 -1
  158. package/dist/core/ResourceMonitor.d.ts.map +1 -1
  159. package/dist/core/ResourceMonitor.js +64 -2
  160. package/dist/core/ResourceMonitor.js.map +1 -1
  161. package/dist/core/ResultHandler.d.ts.map +1 -1
  162. package/dist/core/ResultHandler.js +12 -0
  163. package/dist/core/ResultHandler.js.map +1 -1
  164. package/dist/core/SessionContextMonitor.d.ts.map +1 -1
  165. package/dist/core/SessionContextMonitor.js +4 -1
  166. package/dist/core/SessionContextMonitor.js.map +1 -1
  167. package/dist/core/SessionTokenTracker.d.ts.map +1 -1
  168. package/dist/core/SessionTokenTracker.js +58 -2
  169. package/dist/core/SessionTokenTracker.js.map +1 -1
  170. package/dist/db/ConnectionPool.d.ts.map +1 -1
  171. package/dist/db/ConnectionPool.js +111 -37
  172. package/dist/db/ConnectionPool.js.map +1 -1
  173. package/dist/db/QueryCache.d.ts.map +1 -1
  174. package/dist/db/QueryCache.js +8 -5
  175. package/dist/db/QueryCache.js.map +1 -1
  176. package/dist/errors/ErrorClassifier.d.ts +60 -0
  177. package/dist/errors/ErrorClassifier.d.ts.map +1 -0
  178. package/dist/errors/ErrorClassifier.js +443 -0
  179. package/dist/errors/ErrorClassifier.js.map +1 -0
  180. package/dist/errors/index.d.ts +1 -0
  181. package/dist/errors/index.d.ts.map +1 -1
  182. package/dist/errors/index.js +3 -0
  183. package/dist/errors/index.js.map +1 -1
  184. package/dist/evolution/ABTestManager.d.ts.map +1 -1
  185. package/dist/evolution/ABTestManager.js +80 -1
  186. package/dist/evolution/ABTestManager.js.map +1 -1
  187. package/dist/evolution/EvolutionBootstrap.d.ts.map +1 -1
  188. package/dist/evolution/EvolutionBootstrap.js +4 -4
  189. package/dist/evolution/EvolutionBootstrap.js.map +1 -1
  190. package/dist/evolution/FeedbackCollector.d.ts.map +1 -1
  191. package/dist/evolution/FeedbackCollector.js +6 -0
  192. package/dist/evolution/FeedbackCollector.js.map +1 -1
  193. package/dist/evolution/LearningManager.d.ts.map +1 -1
  194. package/dist/evolution/LearningManager.js +16 -0
  195. package/dist/evolution/LearningManager.js.map +1 -1
  196. package/dist/evolution/MultiObjectiveOptimizer.d.ts.map +1 -1
  197. package/dist/evolution/MultiObjectiveOptimizer.js +18 -3
  198. package/dist/evolution/MultiObjectiveOptimizer.js.map +1 -1
  199. package/dist/evolution/PerformanceTracker.d.ts.map +1 -1
  200. package/dist/evolution/PerformanceTracker.js +83 -13
  201. package/dist/evolution/PerformanceTracker.js.map +1 -1
  202. package/dist/evolution/StatisticalAnalyzer.d.ts +1 -0
  203. package/dist/evolution/StatisticalAnalyzer.d.ts.map +1 -1
  204. package/dist/evolution/StatisticalAnalyzer.js +126 -9
  205. package/dist/evolution/StatisticalAnalyzer.js.map +1 -1
  206. package/dist/evolution/instrumentation/withEvolutionTracking.d.ts.map +1 -1
  207. package/dist/evolution/instrumentation/withEvolutionTracking.js +0 -2
  208. package/dist/evolution/instrumentation/withEvolutionTracking.js.map +1 -1
  209. package/dist/evolution/storage/SQLiteStore.d.ts +1 -0
  210. package/dist/evolution/storage/SQLiteStore.d.ts.map +1 -1
  211. package/dist/evolution/storage/SQLiteStore.js +59 -12
  212. package/dist/evolution/storage/SQLiteStore.js.map +1 -1
  213. package/dist/evolution/storage/validation.d.ts +2 -3
  214. package/dist/evolution/storage/validation.d.ts.map +1 -1
  215. package/dist/evolution/storage/validation.js +2 -6
  216. package/dist/evolution/storage/validation.js.map +1 -1
  217. package/dist/hooks/a2a-collaboration.d.ts +30 -0
  218. package/dist/hooks/a2a-collaboration.d.ts.map +1 -0
  219. package/dist/hooks/a2a-collaboration.js +400 -0
  220. package/dist/hooks/a2a-collaboration.js.map +1 -0
  221. package/dist/knowledge-graph/index.d.ts +7 -1
  222. package/dist/knowledge-graph/index.d.ts.map +1 -1
  223. package/dist/knowledge-graph/index.js +335 -52
  224. package/dist/knowledge-graph/index.js.map +1 -1
  225. package/dist/knowledge-graph/types.d.ts +1 -0
  226. package/dist/knowledge-graph/types.d.ts.map +1 -1
  227. package/dist/management/UninstallManager.d.ts.map +1 -1
  228. package/dist/management/UninstallManager.js.map +1 -1
  229. package/dist/mcp/BuddyCommands.d.ts +15 -2
  230. package/dist/mcp/BuddyCommands.d.ts.map +1 -1
  231. package/dist/mcp/BuddyCommands.js +635 -52
  232. package/dist/mcp/BuddyCommands.js.map +1 -1
  233. package/dist/mcp/ServerInitializer.d.ts +7 -1
  234. package/dist/mcp/ServerInitializer.d.ts.map +1 -1
  235. package/dist/mcp/ServerInitializer.js +121 -69
  236. package/dist/mcp/ServerInitializer.js.map +1 -1
  237. package/dist/mcp/ToolDefinitions.d.ts.map +1 -1
  238. package/dist/mcp/ToolDefinitions.js +109 -18
  239. package/dist/mcp/ToolDefinitions.js.map +1 -1
  240. package/dist/mcp/ToolRouter.d.ts +6 -0
  241. package/dist/mcp/ToolRouter.d.ts.map +1 -1
  242. package/dist/mcp/ToolRouter.js +90 -2
  243. package/dist/mcp/ToolRouter.js.map +1 -1
  244. package/dist/mcp/daemon/DaemonBootstrap.d.ts +33 -0
  245. package/dist/mcp/daemon/DaemonBootstrap.d.ts.map +1 -0
  246. package/dist/mcp/daemon/DaemonBootstrap.js +155 -0
  247. package/dist/mcp/daemon/DaemonBootstrap.js.map +1 -0
  248. package/dist/mcp/daemon/DaemonLockManager.d.ts +47 -0
  249. package/dist/mcp/daemon/DaemonLockManager.d.ts.map +1 -0
  250. package/dist/mcp/daemon/DaemonLockManager.js +417 -0
  251. package/dist/mcp/daemon/DaemonLockManager.js.map +1 -0
  252. package/dist/mcp/daemon/DaemonProtocol.d.ts +127 -0
  253. package/dist/mcp/daemon/DaemonProtocol.d.ts.map +1 -0
  254. package/dist/mcp/daemon/DaemonProtocol.js +452 -0
  255. package/dist/mcp/daemon/DaemonProtocol.js.map +1 -0
  256. package/dist/mcp/daemon/DaemonSocketServer.d.ts +71 -0
  257. package/dist/mcp/daemon/DaemonSocketServer.d.ts.map +1 -0
  258. package/dist/mcp/daemon/DaemonSocketServer.js +384 -0
  259. package/dist/mcp/daemon/DaemonSocketServer.js.map +1 -0
  260. package/dist/mcp/daemon/GracefulShutdownCoordinator.d.ts +67 -0
  261. package/dist/mcp/daemon/GracefulShutdownCoordinator.d.ts.map +1 -0
  262. package/dist/mcp/daemon/GracefulShutdownCoordinator.js +206 -0
  263. package/dist/mcp/daemon/GracefulShutdownCoordinator.js.map +1 -0
  264. package/dist/mcp/daemon/IpcTransport.d.ts +42 -0
  265. package/dist/mcp/daemon/IpcTransport.d.ts.map +1 -0
  266. package/dist/mcp/daemon/IpcTransport.js +231 -0
  267. package/dist/mcp/daemon/IpcTransport.js.map +1 -0
  268. package/dist/mcp/daemon/StdioProxyClient.d.ts +84 -0
  269. package/dist/mcp/daemon/StdioProxyClient.d.ts.map +1 -0
  270. package/dist/mcp/daemon/StdioProxyClient.js +560 -0
  271. package/dist/mcp/daemon/StdioProxyClient.js.map +1 -0
  272. package/dist/mcp/daemon/VersionManager.d.ts +35 -0
  273. package/dist/mcp/daemon/VersionManager.d.ts.map +1 -0
  274. package/dist/mcp/daemon/VersionManager.js +169 -0
  275. package/dist/mcp/daemon/VersionManager.js.map +1 -0
  276. package/dist/mcp/daemon/index.d.ts +9 -0
  277. package/dist/mcp/daemon/index.d.ts.map +1 -0
  278. package/dist/mcp/daemon/index.js +9 -0
  279. package/dist/mcp/daemon/index.js.map +1 -0
  280. package/dist/mcp/handlers/A2AToolHandlers.d.ts.map +1 -1
  281. package/dist/mcp/handlers/A2AToolHandlers.js +24 -4
  282. package/dist/mcp/handlers/A2AToolHandlers.js.map +1 -1
  283. package/dist/mcp/handlers/ToolHandlers.d.ts.map +1 -1
  284. package/dist/mcp/handlers/ToolHandlers.js.map +1 -1
  285. package/dist/mcp/resources/best-practices.md +1 -1
  286. package/dist/mcp/resources/buddy-do-skill.md +1 -1
  287. package/dist/mcp/resources/examples.md +1 -1
  288. package/dist/mcp/resources/quick-reference.md +1 -1
  289. package/dist/mcp/resources/usage-guide.md +2 -2
  290. package/dist/mcp/schemas/OutputSchemas.d.ts +16 -0
  291. package/dist/mcp/schemas/OutputSchemas.d.ts.map +1 -1
  292. package/dist/mcp/schemas/OutputSchemas.js +12 -0
  293. package/dist/mcp/schemas/OutputSchemas.js.map +1 -1
  294. package/dist/mcp/server-bootstrap.js +245 -29
  295. package/dist/mcp/server-bootstrap.js.map +1 -1
  296. package/dist/mcp/server.d.ts +11 -1
  297. package/dist/mcp/server.d.ts.map +1 -1
  298. package/dist/mcp/server.js +196 -9
  299. package/dist/mcp/server.js.map +1 -1
  300. package/dist/mcp/tools/a2a-list-tasks.d.ts +13 -0
  301. package/dist/mcp/tools/a2a-list-tasks.d.ts.map +1 -0
  302. package/dist/mcp/tools/a2a-list-tasks.js +24 -0
  303. package/dist/mcp/tools/a2a-list-tasks.js.map +1 -0
  304. package/dist/mcp/tools/a2a-report-result.d.ts +35 -0
  305. package/dist/mcp/tools/a2a-report-result.d.ts.map +1 -0
  306. package/dist/mcp/tools/a2a-report-result.js +73 -0
  307. package/dist/mcp/tools/a2a-report-result.js.map +1 -0
  308. package/dist/mcp/tools/buddy-do.d.ts.map +1 -1
  309. package/dist/mcp/tools/buddy-do.js +10 -2
  310. package/dist/mcp/tools/buddy-do.js.map +1 -1
  311. package/dist/mcp/tools/buddy-help.d.ts.map +1 -1
  312. package/dist/mcp/tools/buddy-help.js +6 -14
  313. package/dist/mcp/tools/buddy-help.js.map +1 -1
  314. package/dist/mcp/validation.d.ts +1 -1
  315. package/dist/memory/AutoMemoryRecorder.d.ts +35 -0
  316. package/dist/memory/AutoMemoryRecorder.d.ts.map +1 -0
  317. package/dist/memory/AutoMemoryRecorder.js +164 -0
  318. package/dist/memory/AutoMemoryRecorder.js.map +1 -0
  319. package/dist/memory/AutoTagger.d.ts +9 -0
  320. package/dist/memory/AutoTagger.d.ts.map +1 -0
  321. package/dist/memory/AutoTagger.js +149 -0
  322. package/dist/memory/AutoTagger.js.map +1 -0
  323. package/dist/memory/MistakePatternEngine.d.ts.map +1 -1
  324. package/dist/memory/MistakePatternEngine.js.map +1 -1
  325. package/dist/memory/ProjectMemoryCleanup.js +1 -1
  326. package/dist/memory/SecretManager.d.ts.map +1 -1
  327. package/dist/memory/SecretManager.js +48 -15
  328. package/dist/memory/SecretManager.js.map +1 -1
  329. package/dist/memory/SmartMemoryQuery.d.ts +9 -0
  330. package/dist/memory/SmartMemoryQuery.d.ts.map +1 -0
  331. package/dist/memory/SmartMemoryQuery.js +65 -0
  332. package/dist/memory/SmartMemoryQuery.js.map +1 -0
  333. package/dist/memory/UnifiedMemoryStore.d.ts +1 -0
  334. package/dist/memory/UnifiedMemoryStore.d.ts.map +1 -1
  335. package/dist/memory/UnifiedMemoryStore.js +211 -38
  336. package/dist/memory/UnifiedMemoryStore.js.map +1 -1
  337. package/dist/memory/UserPreferenceEngine.d.ts.map +1 -1
  338. package/dist/memory/UserPreferenceEngine.js +6 -5
  339. package/dist/memory/UserPreferenceEngine.js.map +1 -1
  340. package/dist/memory/types/unified-memory.d.ts +2 -0
  341. package/dist/memory/types/unified-memory.d.ts.map +1 -1
  342. package/dist/memory/types/unified-memory.js +2 -0
  343. package/dist/memory/types/unified-memory.js.map +1 -1
  344. package/dist/orchestrator/AgentRouter.d.ts.map +1 -1
  345. package/dist/orchestrator/AgentRouter.js +5 -4
  346. package/dist/orchestrator/AgentRouter.js.map +1 -1
  347. package/dist/orchestrator/CostTracker.d.ts.map +1 -1
  348. package/dist/orchestrator/CostTracker.js.map +1 -1
  349. package/dist/orchestrator/GlobalResourcePool.d.ts.map +1 -1
  350. package/dist/orchestrator/GlobalResourcePool.js +70 -3
  351. package/dist/orchestrator/GlobalResourcePool.js.map +1 -1
  352. package/dist/ui/AsciiProgressBar.d.ts.map +1 -1
  353. package/dist/ui/AsciiProgressBar.js +0 -1
  354. package/dist/ui/AsciiProgressBar.js.map +1 -1
  355. package/dist/ui/AttributionManager.js +2 -2
  356. package/dist/ui/AttributionManager.js.map +1 -1
  357. package/dist/ui/Dashboard.d.ts.map +1 -1
  358. package/dist/ui/Dashboard.js +2 -2
  359. package/dist/ui/Dashboard.js.map +1 -1
  360. package/dist/ui/MetricsStore.d.ts.map +1 -1
  361. package/dist/ui/MetricsStore.js +2 -2
  362. package/dist/ui/MetricsStore.js.map +1 -1
  363. package/dist/ui/ProgressIndicator.d.ts +35 -0
  364. package/dist/ui/ProgressIndicator.d.ts.map +1 -0
  365. package/dist/ui/ProgressIndicator.js +177 -0
  366. package/dist/ui/ProgressIndicator.js.map +1 -0
  367. package/dist/ui/ResponseFormatter.d.ts +8 -0
  368. package/dist/ui/ResponseFormatter.d.ts.map +1 -1
  369. package/dist/ui/ResponseFormatter.js +220 -35
  370. package/dist/ui/ResponseFormatter.js.map +1 -1
  371. package/dist/ui/design-tokens.d.ts +37 -0
  372. package/dist/ui/design-tokens.d.ts.map +1 -0
  373. package/dist/ui/design-tokens.js +105 -0
  374. package/dist/ui/design-tokens.js.map +1 -0
  375. package/dist/ui/theme.d.ts +14 -4
  376. package/dist/ui/theme.d.ts.map +1 -1
  377. package/dist/ui/theme.js +7 -2
  378. package/dist/ui/theme.js.map +1 -1
  379. package/dist/utils/PathResolver.d.ts.map +1 -1
  380. package/dist/utils/PathResolver.js +3 -2
  381. package/dist/utils/PathResolver.js.map +1 -1
  382. package/dist/utils/SystemResources.d.ts.map +1 -1
  383. package/dist/utils/SystemResources.js +9 -14
  384. package/dist/utils/SystemResources.js.map +1 -1
  385. package/dist/utils/errorHandler.d.ts +6 -0
  386. package/dist/utils/errorHandler.d.ts.map +1 -1
  387. package/dist/utils/errorHandler.js +50 -1
  388. package/dist/utils/errorHandler.js.map +1 -1
  389. package/dist/utils/index.d.ts +19 -0
  390. package/dist/utils/index.d.ts.map +1 -0
  391. package/dist/utils/index.js +17 -0
  392. package/dist/utils/index.js.map +1 -0
  393. package/dist/utils/json.d.ts.map +1 -1
  394. package/dist/utils/json.js +11 -1
  395. package/dist/utils/json.js.map +1 -1
  396. package/dist/utils/logger.d.ts.map +1 -1
  397. package/dist/utils/logger.js +65 -3
  398. package/dist/utils/logger.js.map +1 -1
  399. package/dist/utils/lru-cache.d.ts +7 -0
  400. package/dist/utils/lru-cache.d.ts.map +1 -1
  401. package/dist/utils/lru-cache.js +37 -7
  402. package/dist/utils/lru-cache.js.map +1 -1
  403. package/dist/utils/safeMath.d.ts +11 -0
  404. package/dist/utils/safeMath.d.ts.map +1 -0
  405. package/dist/utils/safeMath.js +92 -0
  406. package/dist/utils/safeMath.js.map +1 -0
  407. package/dist/utils/toonify-adapter.d.ts.map +1 -1
  408. package/dist/utils/toonify-adapter.js.map +1 -1
  409. package/dist/utils/tracing/TraceContext.d.ts +23 -0
  410. package/dist/utils/tracing/TraceContext.d.ts.map +1 -0
  411. package/dist/utils/tracing/TraceContext.js +127 -0
  412. package/dist/utils/tracing/TraceContext.js.map +1 -0
  413. package/dist/utils/tracing/index.d.ts +3 -0
  414. package/dist/utils/tracing/index.d.ts.map +1 -0
  415. package/dist/utils/tracing/index.js +3 -0
  416. package/dist/utils/tracing/index.js.map +1 -0
  417. package/dist/utils/tracing/middleware.d.ts +15 -0
  418. package/dist/utils/tracing/middleware.d.ts.map +1 -0
  419. package/dist/utils/tracing/middleware.js +49 -0
  420. package/dist/utils/tracing/middleware.js.map +1 -0
  421. package/dist/utils/validation.d.ts +12 -0
  422. package/dist/utils/validation.d.ts.map +1 -0
  423. package/dist/utils/validation.js +87 -0
  424. package/dist/utils/validation.js.map +1 -0
  425. package/mcp.json +10 -0
  426. package/package.json +10 -2
  427. package/plugin.json +2 -12
  428. package/scripts/postinstall.js +192 -21
  429. package/README.md.backup +0 -536
  430. 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
- [![GitHub Stars](https://img.shields.io/github/stars/PCIRCLE-AI/claude-code-buddy?style=social)](https://github.com/PCIRCLE-AI/claude-code-buddy)
10
- [![npm version](https://img.shields.io/npm/v/@pcircle/claude-code-buddy-mcp)](https://www.npmjs.com/package/@pcircle/claude-code-buddy-mcp)
11
- [![License](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)](LICENSE)
12
- [![MCP](https://img.shields.io/badge/MCP-1.25.3-purple.svg)](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
- [![Star History Chart](https://api.star-history.com/svg?repos=PCIRCLE-AI/claude-code-buddy&type=Date)](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>