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
? `⚠️ RECOMMENDATION: Review ${activeCount} active related entries before creating new work. Consider updating existing entries or coordinating efforts.`
401
+
: relatedEntries.length>0
402
+
? `✅ RECOMMENDATION: Related entries are completed. Safe to create new devlog entry, but review completed work for insights and patterns.`
403
+
: `✅ RECOMMENDATION: No related work found. Safe to create new devlog entry.`;
Copy file name to clipboardExpand all lines: packages/mcp/src/index.ts
+14-38Lines changed: 14 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -94,55 +94,31 @@ const tools: Tool[] = [
94
94
},
95
95
},
96
96
{
97
-
name: "find_or_create_devlog",
98
-
description: "Find an existing devlog entry by title and type or create a new one if it doesn't exist",
97
+
name: "discover_related_devlogs",
98
+
description: "Comprehensively search for existing devlog entries related to planned work before creating new entries. Returns detailed analysis of relevant historical context to prevent duplicate work.",
99
99
inputSchema: {
100
100
type: "object",
101
101
properties: {
102
-
title: {
102
+
workDescription: {
103
103
type: "string",
104
-
description: "Title of the task/feature/bugfix",
104
+
description: "Detailed description of the work you plan to do",
0 commit comments