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 CHANGED
@@ -27,7 +27,7 @@ catch (error) {
27
27
  // Create MCP server
28
28
  const server = new index_js_1.Server({
29
29
  name: 'lunaarc-mcp',
30
- version: '1.2.8',
30
+ version: '1.2.9',
31
31
  }, {
32
32
  capabilities: {
33
33
  tools: {},
@@ -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 - Diese Schritte MÜSSEN eingehalten werden:**
383
- 1. Karte nach "In Progress" verschieben BEVOR du anfängst
384
- 2. Task vollständig erledigen und testen
385
- 3. Kommentar mit Zusammenfassung der Änderungen hinzufügen
386
- 4. Erst nach Abschluss nach "Done" verschieben
387
- 5. Dann erneut \`kanban_assigned_get\` aufrufen für die nächste Karte
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 = `# ⚠️ KARTE IN BEARBEITUNG
576
+ output = `# ⚠️ CARD IN PROGRESS
577
577
 
578
- **Du hast bereits eine Karte in "In Progress"!**
579
- **Diese MUSS zuerst abgeschlossen werden, bevor du eine neue Karte beginnen kannst.**
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} weitere Karte${totalCards > 2 ? 'n' : ''} in der Warteschlange)_\n` : ''}
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 = `# 📋 Nächste Karte
589
+ output = `# 📋 Next Card
590
590
 
591
- **Karte 1 von ${totalCards}** - Schließe diese ab, bevor du die nächste holst.
591
+ **Card 1 of ${totalCards}** - Complete this before getting the next one.
592
592
 
593
593
  ---
594
594
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lunaarc-mcp",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "MCP Server for LunaArc - Access Wiki and Kanban from AI assistants",
5
5
  "main": "dist/server.js",
6
6
  "bin": {