@pcircle/memesh 2.8.3 β†’ 2.8.4

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 (39) hide show
  1. package/README.md +60 -491
  2. package/README.zh-TW.md +62 -500
  3. package/dist/cli/credentials.d.ts +12 -0
  4. package/dist/cli/credentials.d.ts.map +1 -0
  5. package/dist/cli/credentials.js +44 -0
  6. package/dist/cli/credentials.js.map +1 -0
  7. package/dist/cli/index.d.ts.map +1 -1
  8. package/dist/cli/index.js +11 -5
  9. package/dist/cli/index.js.map +1 -1
  10. package/dist/cli/login.d.ts +4 -0
  11. package/dist/cli/login.d.ts.map +1 -0
  12. package/dist/cli/login.js +230 -0
  13. package/dist/cli/login.js.map +1 -0
  14. package/dist/cli/logout.d.ts +3 -0
  15. package/dist/cli/logout.d.ts.map +1 -0
  16. package/dist/cli/logout.js +23 -0
  17. package/dist/cli/logout.js.map +1 -0
  18. package/dist/cloud/MeMeshCloudClient.d.ts.map +1 -1
  19. package/dist/cloud/MeMeshCloudClient.js +34 -4
  20. package/dist/cloud/MeMeshCloudClient.js.map +1 -1
  21. package/dist/errors/ErrorClassifier.d.ts.map +1 -1
  22. package/dist/errors/ErrorClassifier.js +0 -1
  23. package/dist/errors/ErrorClassifier.js.map +1 -1
  24. package/dist/integrations/session-memory/SessionMemoryParser.d.ts.map +1 -1
  25. package/dist/integrations/session-memory/SessionMemoryParser.js +1 -1
  26. package/dist/integrations/session-memory/SessionMemoryParser.js.map +1 -1
  27. package/dist/mcp/resources/best-practices.md +2 -2
  28. package/dist/mcp/resources/buddy-do-skill.md +1 -1
  29. package/dist/mcp/resources/ccb-complete-guide.md +6 -6
  30. package/dist/mcp/resources/examples.md +1 -1
  31. package/dist/mcp/resources/quick-reference.md +2 -2
  32. package/dist/mcp/resources/usage-guide.md +2 -2
  33. package/dist/mcp/server.d.ts.map +1 -1
  34. package/dist/mcp/server.js +0 -1
  35. package/dist/mcp/server.js.map +1 -1
  36. package/dist/ui/LoadingIndicator.d.ts.map +1 -1
  37. package/dist/ui/LoadingIndicator.js.map +1 -1
  38. package/package.json +3 -3
  39. package/plugin.json +1 -1
package/README.md CHANGED
@@ -2,98 +2,15 @@
2
2
 
3
3
  # 🧠 MeMesh
4
4
 
5
- > **Note**: Formerly known as "Claude Code Buddy (CCB)". Renamed to MeMesh to avoid potential trademark issues.
5
+ ### **Persistent Memory for Claude Code**
6
6
 
7
- ### **The Only MCP Server That Remembers**
7
+ **Give Claude long-term memory. Remember decisions, context, and code. Build faster.**
8
8
 
9
- **Make Claude Code remember everything. Build faster. Vibe harder.**
10
-
11
- [![GitHub Stars](https://img.shields.io/github/stars/PCIRCLE-AI/claude-code-buddy?style=social)](https://github.com/PCIRCLE-AI/claude-code-buddy)
12
9
  [![npm version](https://img.shields.io/npm/v/@pcircle/memesh)](https://www.npmjs.com/package/@pcircle/memesh)
13
- [![npm publish](https://github.com/PCIRCLE-AI/claude-code-buddy/actions/workflows/publish-npm.yml/badge.svg)](https://github.com/PCIRCLE-AI/claude-code-buddy/actions/workflows/publish-npm.yml)
14
- [![Installation Tests](https://github.com/PCIRCLE-AI/claude-code-buddy/actions/workflows/installation-test.yml/badge.svg)](https://github.com/PCIRCLE-AI/claude-code-buddy/actions/workflows/installation-test.yml)
15
10
  [![License](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)](LICENSE)
16
11
  [![MCP](https://img.shields.io/badge/MCP-1.25.3-purple.svg)](https://modelcontextprotocol.io)
17
12
 
18
- [πŸš€ Quick Start](#-2-minute-quick-start) β€’ [πŸ“– Docs](docs/) β€’ [🌐 GitHub](https://github.com/PCIRCLE-AI/claude-code-buddy) β€’ [πŸ’¬ Discussions](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
19
-
20
- ---
21
-
22
- ### πŸŽ₯ **See It In Action**
23
-
24
- <table>
25
- <tr>
26
- <td width="50%" valign="top">
27
-
28
- #### πŸ”΄ **Without MeMesh**
29
-
30
- ```bash
31
- # Session 1 (Monday)
32
- You: "We use JWT for auth because..."
33
- Claude: "Got it! βœ…"
34
-
35
- # Session 2 (Tuesday)
36
- You: "Remember our auth approach?"
37
- Claude: "Sorry, I don't have context..."
38
- You: *explains everything again* 😀
39
-
40
- # Session 3 (Wednesday)
41
- You: "Our JWT implementation..."
42
- Claude: "What JWT implementation?"
43
- You: *RAGE QUITS* πŸ’’
44
- ```
45
-
46
- </td>
47
- <td width="50%" valign="top">
48
-
49
- #### βœ… **With MeMesh**
50
-
51
- ```bash
52
- # Session 1 (Monday)
53
- You: buddy-do "setup JWT auth"
54
- MeMesh: βœ… Implemented + Saved to memory
55
-
56
- # Session 2 (Tuesday)
57
- You: buddy-remember "auth"
58
- MeMesh: πŸ“š "JWT auth implemented on 2024-01-15
59
- ↳ Access tokens: 15min
60
- ↳ Refresh tokens: 7 days
61
- ↳ Secret rotation: monthly"
62
-
63
- # Session 3 (Any day, across sessions)
64
- You: buddy-do "add OAuth"
65
- MeMesh: 🧠 "I see you have JWT. Let's
66
- integrate OAuth alongside it..."
67
- ```
68
-
69
- </td>
70
- </tr>
71
- </table>
72
-
73
- ---
74
-
75
- <div align="center">
76
-
77
- https://github.com/user-attachments/assets/a389bcd2-1563-4d91-b363-44cdba5f4e44
78
-
79
- </div>
80
-
81
- ---
82
-
83
- <div align="center">
84
-
85
- **πŸ’‘ Try it yourself:**
86
-
87
- ```bash
88
- # In Claude Code
89
- buddy-help # See all commands
90
- buddy-do "explain how MeMesh works" # Watch it intelligently respond
91
- buddy-remember "project decisions" # Query your project memory
92
- ```
93
-
94
- **πŸ“– [Read User Guide](docs/USER_GUIDE.md)** β€’ **πŸ”§ [API Reference](docs/api/API_REFERENCE.md)**
95
-
96
- </div>
13
+ [πŸš€ Quick Install](#-quick-install) β€’ [πŸ’¬ Commands](#-3-commands-to-rule-them-all) β€’ [πŸ“– Docs](docs/) β€’ [繁體中文](README.zh-TW.md)
97
14
 
98
15
  </div>
99
16
 
@@ -101,479 +18,131 @@ buddy-remember "project decisions" # Query your project memory
101
18
 
102
19
  ## πŸ€” The Problem
103
20
 
104
- You know this pain:
21
+ Every new Claude Code session:
105
22
 
106
23
  ```
107
- Session 1: "Let me explain our architecture..."
108
- Session 2: "As I mentioned before, our architecture..."
109
- Session 3: "Like I said earlier, our architecture..."
110
- Session 4: 😀
24
+ You: "Remember our auth setup?"
25
+ Claude: "I don't have that context..."
26
+ You: *explains for the 47th time* 😀
111
27
  ```
112
28
 
113
- **Every. Single. Session.**
29
+ **Claude has amnesia. Your productivity dies.**
114
30
 
115
31
  ---
116
32
 
117
33
  ## ✨ The Solution
118
34
 
119
- <table>
120
- <tr>
121
- <td width="50%" valign="top">
122
-
123
- ### ❌ **Before MeMesh**
124
-
125
- - Re-explain architecture every session
126
- - Answer same questions repeatedly
127
- - Forget design decisions overnight
128
- - Write similar prompts over and over
129
- - Claude has amnesia πŸ€•
130
-
131
- </td>
132
- <td width="50%" valign="top">
133
-
134
- ### βœ… **After MeMesh**
135
-
136
- - **Remembers** project architecture
137
- - **Recalls** past decisions instantly
138
- - **Organizes** knowledge automatically
139
- - **Routes** tasks intelligently
140
- - Claude becomes your AI teammate 🀝
141
-
142
- </td>
143
- </tr>
144
- </table>
145
-
146
- ---
147
-
148
- ## 🎯 Core Features
149
-
150
- ### 1. 🧠 **Project Memory That Actually Works**
151
-
152
- ```bash
153
- # Session 1 (Last week)
154
- You: "We chose PostgreSQL for JSONB support"
155
-
156
- # Session 42 (Today)
157
- You: buddy-remember "why PostgreSQL?"
158
- MeMesh: "Based on your decision from 2024-01-15: PostgreSQL was
159
- chosen for JSONB support and advanced query capabilities..."
160
- ```
161
-
162
- **Claude remembers across sessions.** *(Session memories: 30 days, project memories: 90 days)*
163
-
164
- ### 2. 🎯 **Smart Task Routing (Autopilot Mode)**
165
-
166
35
  ```bash
167
- You: "Review this code"
168
- MeMesh: *Detects task type*
169
- *Activates code review mode*
170
- *Applies best practices*
171
- *Delivers structured review*
172
- ```
173
-
174
- **No more "how should I do this?" Just do it.**
175
-
176
- ### 3. πŸ’¬ **Dead Simple Commands**
36
+ # Session 1 (Monday)
37
+ You: buddy-do "setup JWT auth"
38
+ MeMesh: βœ… Done + saved to memory
177
39
 
178
- ```bash
179
- buddy-do "setup authentication" # Execute any dev task
180
- buddy-remember "API design" # Query project memory
181
- buddy-help # When stuck
40
+ # Session 50 (Friday)
41
+ You: buddy-remember "auth"
42
+ MeMesh: πŸ“š JWT auth from Jan 15
43
+ β†’ Access tokens: 15min
44
+ β†’ Refresh tokens: 7 days
182
45
  ```
183
46
 
184
- **Three commands. Infinite possibilities.**
47
+ **MeMesh = Claude with working memory.**
185
48
 
186
49
  ---
187
50
 
188
- ## πŸš€ Installation Options
189
-
190
- Choose your preferred installation method:
51
+ ## πŸš€ Quick Install
191
52
 
192
- ### ⚑ npm Global Install (Easiest) ⭐ RECOMMENDED
193
53
  ```bash
194
54
  npm install -g @pcircle/memesh
195
- # Auto-configures everything! Just restart Claude Code.
196
55
  ```
197
56
 
198
- ### πŸ“¦ Quick Install Script (For Local Dev)
199
- ```bash
200
- git clone https://github.com/PCIRCLE-AI/claude-code-buddy.git
201
- cd claude-code-buddy
202
- ./scripts/quick-install.sh
203
- ```
204
-
205
- ### πŸ† Claude Code Plugin
206
- ```bash
207
- claude --plugin-dir /path/to/claude-code-buddy/.claude-plugin/memesh
208
- ```
209
-
210
- ---
211
-
212
- ## πŸš€ 2-Minute Quick Start
213
-
214
- ### Step 1: Quick Install
57
+ Restart Claude Code. **Done.**
215
58
 
216
59
  <details>
217
- <summary><strong>⚑ Claude Code Users</strong> (Click to expand) ⭐ RECOMMENDED</summary>
218
-
219
- **Three simple commands:**
60
+ <summary>πŸ“¦ Alternative: Install from source</summary>
220
61
 
221
62
  ```bash
222
63
  git clone https://github.com/PCIRCLE-AI/claude-code-buddy.git
223
64
  cd claude-code-buddy
224
- ./scripts/quick-install.sh
65
+ npm install && npm run build
66
+ npm link # or use ./scripts/quick-install.sh
225
67
  ```
226
68
 
227
- The script will:
228
- - βœ… Check prerequisites (Node.js 20+)
229
- - βœ… Install dependencies
230
- - βœ… Build MeMesh
231
- - βœ… **Auto-configure** `~/.claude/mcp_settings.json`
232
-
233
- **Then restart Claude Code completely (quit and reopen).**
234
-
235
- **Done!** MeMesh is now available and ready to use.
236
-
237
- > **Note**: The installer automatically configures your MCP settings. No manual configuration needed!
238
-
239
- <Note>
240
- 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.
241
- </Note>
242
-
243
69
  </details>
244
70
 
245
- ### Step 2: Test It
246
-
247
- ```bash
248
- # In Claude Code, type:
249
- buddy-help
250
-
251
- # You should see MeMesh's command list
252
- # Now try:
253
- buddy-do "explain MeMesh features"
254
-
255
- # Watch the magic happen ✨
256
- ```
257
-
258
- **πŸŽ‰ That's it! You're vibing now.**
259
-
260
- πŸ“– **Need help?** [Detailed installation guide](docs/QUICK_INSTALL.md) | [Troubleshooting](docs/TROUBLESHOOTING.md)
261
-
262
71
  ---
263
72
 
264
- ## πŸ’‘ Real-World Usage
265
-
266
- ### Scenario 1: **Smart Task Execution**
73
+ ## πŸ’¬ 3 Commands to Rule Them All
267
74
 
268
75
  ```bash
269
- You: buddy-do "review the authentication module"
270
-
271
- MeMesh routes your task...
272
- πŸ” Detected task type: Code Review
273
- 🧠 Recalled: Your auth decisions from previous sessions
274
- πŸ“‹ Providing: Structured analysis with context
275
-
276
- βœ… Result:
277
- β€’ Analyzed auth module against stored best practices
278
- β€’ Referenced your JWT decision from last month
279
- β€’ Suggested improvements based on project patterns
280
-
281
- πŸ’Ύ Saved to memory: "Auth review findings - 2024-01-20"
76
+ buddy-do "any dev task" # Execute + remember
77
+ buddy-remember "topic" # Instant recall
78
+ buddy-help # When stuck
282
79
  ```
283
80
 
284
- ### Scenario 2: **"Wait, Why Did We Do That?"**
81
+ **Examples:**
285
82
 
286
83
  ```bash
287
- You: buddy-remember "authentication approach"
288
-
289
- MeMesh searches knowledge graph...
290
-
291
- πŸ“š Found 3 related memories:
292
-
293
- β”Œβ”€ 2024-01-15: Initial Auth Decision
294
- β”‚ πŸ’¬ "JWT chosen over sessions for stateless API"
295
- β”‚ ⚑ Reasoning: Mobile app compatibility
296
- β”‚
297
- β”œβ”€ 2024-01-18: Token Expiry Implementation
298
- β”‚ πŸ’» Code: auth/middleware.ts:42-67
299
- β”‚ πŸ”§ Access: 15min | Refresh: 7 days
300
- β”‚
301
- └─ 2024-01-22: Security Enhancement
302
- πŸ›‘οΈ Added: Rate limiting + Token rotation
303
- πŸ“ Prevented: Token reuse vulnerability
304
- ```
84
+ buddy-do "explain this codebase"
85
+ buddy-do "add user authentication"
86
+ buddy-do "fix the build error"
305
87
 
306
- ### Scenario 3: **Continuous Development Flow**
88
+ buddy-remember "API design decisions"
89
+ buddy-remember "why we chose PostgreSQL"
307
90
 
91
+ buddy-help # Shows all available commands
308
92
  ```
309
- Day 1 β”‚ You: "Implement user login"
310
- β”‚ MeMesh: βœ… Created + πŸ’Ύ Remembered
311
- β”‚
312
- Day 5 β”‚ You: "Add password reset"
313
- β”‚ MeMesh: 🧠 "I see you use JWT tokens..."
314
- β”‚ βœ… Integrated seamlessly
315
- β”‚
316
- Day 10β”‚ You: "Add OAuth support"
317
- β”‚ MeMesh: 🧠 "Based on your JWT + password reset..."
318
- β”‚ βœ… Consistent with existing auth
319
- β”‚
320
- Week 8β”‚ You: "Why did we choose JWT again?"
321
- β”‚ MeMesh: πŸ“š *Instant recall from Day 1*
322
- ```
323
-
324
- **No context re-explanation. Ever again.**
325
93
 
326
94
  ---
327
95
 
328
- ## πŸ“Š Why MeMesh vs. Others?
329
-
330
- | Feature | Plain Claude Code | Other MCP Tools | MeMesh |
331
- |---------|-------------------|-----------------|-----|
332
- | **Persistent Memory** | ❌ | ⚠️ Basic | βœ… **Full Knowledge Graph** |
333
- | **Smart Routing** | ❌ | ❌ | βœ… **Auto-detects task type** |
334
- | **Vibe Coding Optimized** | ⚠️ | ❌ | βœ… **Built for it** |
335
- | **Zero Setup** | βœ… | ⚠️ Complex | βœ… **2 minutes** |
336
- | **Free & Open Source** | βœ… | ⚠️ Varies | βœ… **AGPL-3.0** |
337
-
338
- ---
339
-
340
- ## πŸ› οΈ Advanced Features
341
-
342
- <details>
343
- <summary><strong>Auto-Memory Hooks</strong></summary>
344
-
345
- **What is it?** MeMesh remembers what you did in your last coding session and shows you a summary when you start a new one.
346
-
347
- ### How It Works (Simple Version)
348
-
349
- 1. **When you open Claude Code** β†’ MeMesh shows what you did last time
350
- 2. **While you work** β†’ MeMesh quietly tracks your progress
351
- 3. **When you close Claude Code** β†’ MeMesh saves a summary for next time
352
-
353
- ### What You'll See
354
-
355
- When you start a new session, you'll see something like:
356
-
357
- ```
358
- 🧠 MeMesh Memory Recall
359
-
360
- πŸ• Last session: 2 hours ago (45 minutes)
361
-
362
- πŸ“‹ What you did:
363
- πŸ“ Changed 5 files in src/auth/
364
- βœ… Made 3 git commits
365
- πŸ’‘ Implemented JWT refresh tokens
366
- ```
367
-
368
- **That's it!** No setup needed. MeMesh handles everything automatically.
369
-
370
- ### What Gets Saved
371
-
372
- | Icon | What | Example |
373
- |------|------|---------|
374
- | πŸ“ | Files you changed | `src/auth/login.ts` |
375
- | βœ… | Commits you made | `feat: add login` |
376
- | πŸ’‘ | Things you learned | `Use async/await here` |
377
- | ⚠️ | Problems you hit | `API timeout issue` |
378
-
379
- ### Good to Know
380
-
381
- - Saves automatically every 250K tokens (about 1-2 hours of work)
382
- - Session memories kept for **30 days**, then auto-cleaned
383
- - Project memories (code changes, test results) kept for **90 days**
384
- - Currently available in Claude Code only
385
-
386
- </details>
387
-
388
- <details>
389
- <summary><strong>Multi-Project Support</strong></summary>
390
-
391
- Each project gets its own isolated memory space.
392
-
393
- ```bash
394
- cd ~/project-A
395
- buddy-remember "auth" # Returns project-A's auth decisions
396
-
397
- cd ~/project-B
398
- buddy-remember "auth" # Returns project-B's auth decisions
399
- ```
400
-
401
- **No cross-contamination. Ever.**
402
-
403
- </details>
404
-
405
- <details>
406
- <summary><strong>Smart Memory Query</strong></summary>
407
-
408
- Context-aware memory retrieval with intelligent ranking:
409
- - 🎯 Semantic search across your knowledge base
410
- - 🏷️ Auto-tagging for better organization
411
- - πŸ“Š Relevance scoring based on context
412
-
413
- </details>
414
-
415
- <details>
416
- <summary><strong>Persistent Memory</strong></summary>
417
-
418
- Local-first architecture with persistent knowledge graph:
419
- - πŸ’Ύ SQLite-based storage with semantic search
420
- - πŸ” Vector embeddings for intelligent recall
421
- - πŸ“‘ Knowledge persists across all sessions
422
-
423
- </details>
424
-
425
- <details>
426
- <summary><strong>8 MCP Standard Tools</strong></summary>
96
+ ## 🎯 Core Features
427
97
 
428
- Full integration with Model Context Protocol for seamless Claude Code experience. See [QUICK_INSTALL.md](docs/QUICK_INSTALL.md#-what-you-get) for the complete tool list.
98
+ ### 🧠 **Persistent Memory**
99
+ - Remembers project decisions (90 days)
100
+ - Recalls session context (30 days)
101
+ - Semantic search across all memories
429
102
 
430
- Use `buddy-help` to see all available commands.
103
+ ### πŸ” **Knowledge Graph**
104
+ - Automatically organizes your knowledge
105
+ - Links related concepts
106
+ - FTS5 + vector search
431
107
 
432
- </details>
108
+ ### ⚑ **Zero Config**
109
+ - Auto-tracks project changes
110
+ - Auto-tags memories
111
+ - Just install and use
433
112
 
434
113
  ---
435
114
 
436
- ## πŸ§ͺ Technical Details
437
-
438
- <table>
439
- <tr>
440
- <td width="50%">
441
-
442
- ### Requirements
443
- - Node.js 20+
444
- - Claude Code
445
- - 2 minutes of your time
446
-
447
- </td>
448
- <td width="50%">
449
-
450
- ### Platform Support
451
- - βœ… **Claude 4.5** (Haiku/Sonnet/Opus)
452
- - βœ… **MCP SDK 1.25.3**
453
- - βœ… Windows, macOS, Linux
115
+ ## πŸ“š Learn More
454
116
 
455
- </td>
456
- </tr>
457
- </table>
117
+ **Core Documentation**:
118
+ - **[User Guide](docs/USER_GUIDE.md)** - Complete usage guide
119
+ - **[Commands Reference](docs/COMMANDS.md)** - All available commands and tools
120
+ - **[Getting Started](docs/GETTING_STARTED.md)** - Installation guide
121
+ - **[Troubleshooting](docs/TROUBLESHOOTING.md)** - Common issues
458
122
 
459
- ### πŸ”’ Security First
460
-
461
- - βœ… **Local-First Processing** - All data stored locally by default
462
- - βœ… **Optional Cloud Sync** - `memesh-cloud-sync` available for cross-device memory (opt-in only)
463
- - βœ… **npm audit: 0 vulnerabilities**
464
- - βœ… **Open Source** - Audit the code yourself
123
+ **Advanced Documentation**:
124
+ - **[Architecture](docs/ARCHITECTURE.md)** - System architecture and design
125
+ - **[Best Practices](docs/BEST_PRACTICES.md)** - Usage tips and recommendations
126
+ - **[API Reference](docs/api/API_REFERENCE.md)** - Complete API documentation
465
127
 
466
128
  ---
467
129
 
468
130
  ## 🀝 Contributing
469
131
 
470
- We'd love your help making MeMesh better!
471
-
472
- - πŸ› **Found a bug?** [Open an issue](https://github.com/PCIRCLE-AI/claude-code-buddy/issues/new)
473
- - πŸ’‘ **Have an idea?** [Start a discussion](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
474
- - πŸ› οΈ **Want to code?** Check [Good First Issues](https://github.com/PCIRCLE-AI/claude-code-buddy/labels/good%20first%20issue)
475
-
476
- **Contributing Guide**: [CONTRIBUTING.md](docs/CONTRIBUTING.md)
477
-
478
- ---
479
-
480
- ## πŸ“š Documentation
481
-
482
- - πŸ“– [Full Documentation](docs/)
483
- - πŸš€ [Quick Install Guide](docs/QUICK_INSTALL.md)
484
- - πŸ“˜ [User Guide](docs/USER_GUIDE.md)
485
- - πŸ› οΈ [API Reference](docs/api/API_REFERENCE.md)
486
- - ❓ [Troubleshooting](docs/TROUBLESHOOTING.md)
487
-
488
- ---
489
-
490
- ## ❓ FAQ
491
-
492
- <details>
493
- <summary><strong>Q: Does it cost money?</strong></summary>
494
-
495
- **A:** Nope. 100% free and open source (AGPL-3.0). Uses your existing Claude Code subscription.
496
-
497
- </details>
498
-
499
- <details>
500
- <summary><strong>Q: Is my data safe?</strong></summary>
501
-
502
- **A:** Yes. All data stored and processed locally by default. Cloud sync (`memesh-cloud-sync`) is available but opt-in only β€” nothing is uploaded without your explicit action.
503
-
504
- </details>
505
-
506
- <details>
507
- <summary><strong>Q: How is this different from plain Claude Code?</strong></summary>
508
-
509
- **A:** MeMesh adds two superpowers:
510
- 1. **Persistent Memory** - Claude remembers your project across sessions
511
- 2. **Smart Routing** - Automatically detects and handles different task types
512
-
513
- Think of it as Claude Code + a really good memory + autopilot mode.
514
-
515
- </details>
516
-
517
- <details>
518
- <summary><strong>Q: Can I customize it?</strong></summary>
519
-
520
- **A:** Absolutely! MeMesh plugin is fully open source.
521
-
522
- Want deeper customization? Check our [Contributing Guide](docs/CONTRIBUTING.md) or fork the repo and make it yours.
523
-
524
- </details>
525
-
526
- <details>
527
- <summary><strong>Q: Does it work with Cursor?</strong></summary>
528
-
529
- **A:** Yes! Cursor has native MCP support. Configure the MCP server path in Cursor's settings.
530
-
531
- </details>
532
-
533
- ---
534
-
535
- ## πŸ™ Acknowledgments
536
-
537
- Built on the shoulders of giants:
538
-
539
- - [Model Context Protocol (MCP)](https://github.com/anthropics/mcp) - The foundation
540
- - [Claude Code](https://claude.com/claude-code) - The platform
541
- - All our amazing [contributors](https://github.com/PCIRCLE-AI/claude-code-buddy/graphs/contributors) and early testers
132
+ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
542
133
 
543
134
  ---
544
135
 
545
136
  ## πŸ“„ License
546
137
 
547
- **AGPL-3.0** - See [LICENSE](LICENSE)
548
-
549
- *This means: Use it, modify it, share it. But keep it open source.*
550
-
551
- ---
552
-
553
- ## 🌟 Star History
554
-
555
- [![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)
138
+ AGPL-3.0 - See [LICENSE](LICENSE)
556
139
 
557
140
  ---
558
141
 
559
142
  <div align="center">
560
143
 
561
- ### **Built by developers, for developers**
562
-
563
- **Stop repeating yourself. Start vibing.**
564
-
565
- [πŸš€ Get Started](#-2-minute-quick-start) β€’ [πŸ“– Read the Docs](docs/) β€’ [πŸ’¬ Join the Discussion](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
566
-
567
- ---
568
-
569
- ### ⭐ **If MeMesh saved you time today, give it a star!**
570
-
571
- It helps others discover this tool.
572
-
573
- ---
574
-
575
- **Not affiliated with Anthropic PBC** β€’ Independent open-source project
144
+ **Built by vibe coders, for vibe coders** πŸš€
576
145
 
577
- **Languages:** [English](README.md) β€’ [繁體中文](README.zh-TW.md)
146
+ [Report Bug](https://github.com/PCIRCLE-AI/claude-code-buddy/issues) β€’ [Request Feature](https://github.com/PCIRCLE-AI/claude-code-buddy/discussions)
578
147
 
579
148
  </div>