@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
|
|
1038
|
-
"owns": ["File patterns or
|
|
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": ["
|
|
1041
|
+
"keywords": ["Relevant keywords describing this project"]
|
|
1042
1042
|
}
|
|
1043
1043
|
|
|
1044
|
-
|
|
1045
|
-
-
|
|
1046
|
-
-
|
|
1047
|
-
-
|
|
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 {
|
package/dist/common/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Version of the MCP Kanban server
|
|
2
|
-
export const VERSION = "0.2.
|
|
2
|
+
export const VERSION = "0.2.3";
|