@grec0/memory-bank-mcp 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1034,17 +1034,23 @@ ${techContext ? `TECHNICAL CONTEXT:\n${techContext.content}` : ''}
1034
1034
  Extract the following information in JSON format:
1035
1035
  {
1036
1036
  "description": "A concise 1-2 sentence description of what this project does",
1037
- "responsibilities": ["List of 3-5 specific things this project is responsible for"],
1038
- "owns": ["File patterns or types this project owns, e.g., '*DTO.ts', 'services/', 'controllers/'"],
1037
+ "responsibilities": ["List ALL functional responsibilities - what this project DOES as capabilities/features"],
1038
+ "owns": ["File patterns or directories this project owns, e.g., 'src/services/', '*DTO.ts', 'controllers/'"],
1039
1039
  "projectType": "One of: api, library, frontend, backend, cli, service, monorepo, fullstack",
1040
1040
  "exports": "Package name if it's a library (e.g., '@company/lib-dtos'), or null if not applicable",
1041
- "keywords": ["5-8 keywords describing this project"]
1041
+ "keywords": ["Relevant keywords describing this project"]
1042
1042
  }
1043
1043
 
1044
- IMPORTANT:
1045
- - Be specific about responsibilities - they help the orchestrator decide where code belongs
1046
- - For "owns", think about what file patterns ONLY this project should create
1047
- - If it's a library, identify what it exports/provides to other projects
1044
+ CRITICAL GUIDELINES:
1045
+ - responsibilities: List ALL functional capabilities - what this project DOES, NOT how it does it
1046
+ - GOOD: "Index codebases into vector embeddings", "Provide semantic search over code"
1047
+ - BAD: "Uses tree-sitter for parsing", "Runs Jest tests", "Documents caveats in README"
1048
+ - Focus on FEATURES and CAPABILITIES, not implementation details, configuration, testing, or documentation
1049
+ - owns: List directories/patterns this project creates or modifies (not every file it contains)
1050
+ - ✅ GOOD: "src/tools/", ".memorybank/", "src/services/"
1051
+ - ❌ BAD: "README.md", "package.json", "tsconfig.json" (these are generic project files)
1052
+ - Be thorough on functional responsibilities - missing ones cause incorrect task routing
1053
+ - Ignore implementation details, CI/CD, testing setup, documentation practices
1048
1054
 
1049
1055
  Respond ONLY with the JSON object, no markdown or explanation.`;
1050
1056
  try {
@@ -1,2 +1,2 @@
1
1
  // Version of the MCP Kanban server
2
- export const VERSION = "0.2.1";
2
+ export const VERSION = "0.2.3";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grec0/memory-bank-mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "MCP server for semantic code indexing with Memory Bank - AI-powered codebase understanding",
5
5
  "license": "MIT",
6
6
  "author": "@grec0",