You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolves intermittent connection failures where stdio sessions overwrote
each other's tool handlers. Each session now registers tools in
isolation using mcp-go's SessionWithTools interface.
Copy file name to clipboardExpand all lines: CLAUDE.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -300,6 +300,20 @@ The animated logo creates a face-like character:
300
300
- Assume developer audience
301
301
- Keep it concise but complete
302
302
303
+
### Pull Request Guidelines
304
+
305
+
**PR Titles**: Use clear, descriptive titles focused on the change impact, not just restating commit messages. Examples:
306
+
- ❌ "feat: add message endpoint support for SSE MCP servers"
307
+
- ✅ "Add SSE message endpoint support"
308
+
- ❌ "fix: implement session-specific tool registration for stdio clients"
309
+
- ✅ "Fix stdio session tool handler conflicts"
310
+
311
+
**PR Descriptions**: Write terse prose for humans, not documentation. Avoid bullet lists unless they add genuine value. Focus on the problem solved and solution approach:
312
+
- Explain what was broken and how it's fixed
313
+
- Use conversational, developer-to-developer tone
314
+
- Skip implementation details unless critical for review
0 commit comments