lunaarc-mcp 1.2.8 → 1.2.9
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.
- package/dist/server.js +1 -1
- package/dist/tools/kanban.js +12 -12
- package/package.json +1 -1
package/dist/server.js
CHANGED
package/dist/tools/kanban.js
CHANGED
|
@@ -379,12 +379,12 @@ const priorityOrder = {
|
|
|
379
379
|
// Workflow reminder that gets added to every response
|
|
380
380
|
const WORKFLOW_REMINDER = `
|
|
381
381
|
---
|
|
382
|
-
⚠️ **WORKFLOW -
|
|
383
|
-
1.
|
|
384
|
-
2.
|
|
385
|
-
3.
|
|
386
|
-
4.
|
|
387
|
-
5.
|
|
382
|
+
⚠️ **WORKFLOW - You MUST follow these steps:**
|
|
383
|
+
1. Move card to "In Progress" BEFORE starting work
|
|
384
|
+
2. Complete the task fully and test it
|
|
385
|
+
3. Add a comment with a summary of changes
|
|
386
|
+
4. Move to "Done" only when fully completed
|
|
387
|
+
5. Call \`kanban_assigned_get\` again to get the next card
|
|
388
388
|
`;
|
|
389
389
|
// Tool handlers
|
|
390
390
|
async function handleKanbanTool(client, toolName, args) {
|
|
@@ -573,12 +573,12 @@ To get cards assigned to you, a team member needs to assign a card to this AI to
|
|
|
573
573
|
if (inProgressCard) {
|
|
574
574
|
// There's already a card in progress - MUST finish this first
|
|
575
575
|
cardToShow = inProgressCard;
|
|
576
|
-
output = `# ⚠️
|
|
576
|
+
output = `# ⚠️ CARD IN PROGRESS
|
|
577
577
|
|
|
578
|
-
**
|
|
579
|
-
**
|
|
578
|
+
**You already have a card in "In Progress"!**
|
|
579
|
+
**This MUST be completed first before you can start a new card.**
|
|
580
580
|
|
|
581
|
-
${totalCards > 1 ? `_(${totalCards - 1}
|
|
581
|
+
${totalCards > 1 ? `_(${totalCards - 1} more card${totalCards > 2 ? 's' : ''} in queue)_\n` : ''}
|
|
582
582
|
---
|
|
583
583
|
|
|
584
584
|
`;
|
|
@@ -586,9 +586,9 @@ ${totalCards > 1 ? `_(${totalCards - 1} weitere Karte${totalCards > 2 ? 'n' : ''
|
|
|
586
586
|
else {
|
|
587
587
|
// No card in progress - show the next card from the queue
|
|
588
588
|
cardToShow = sortedCards[0];
|
|
589
|
-
output = `# 📋
|
|
589
|
+
output = `# 📋 Next Card
|
|
590
590
|
|
|
591
|
-
**
|
|
591
|
+
**Card 1 of ${totalCards}** - Complete this before getting the next one.
|
|
592
592
|
|
|
593
593
|
---
|
|
594
594
|
|