ai-consultation-mcp 1.0.0 → 1.0.1
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/config/prompts.js +1 -1
- package/dist/ui/index.html +4 -4
- package/package.json +1 -1
package/dist/config/prompts.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Base context that explains the consultation purpose
|
|
3
3
|
* This ensures the AI understands its role as a "second opinion" provider
|
|
4
4
|
*/
|
|
5
|
-
const CONSULTATION_CONTEXT = `You are being consulted by another AI agent
|
|
5
|
+
const CONSULTATION_CONTEXT = `You are being consulted by another AI coding agent to provide a SECOND OPINION.
|
|
6
6
|
|
|
7
7
|
Your role is to ENRICH PERSPECTIVES by:
|
|
8
8
|
- Challenging assumptions and identifying blind spots
|
package/dist/ui/index.html
CHANGED
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
</svg>
|
|
491
491
|
</div>
|
|
492
492
|
<h3 class="text-lg font-semibold text-neutral-300 mb-2">No Active Conversations</h3>
|
|
493
|
-
<p class="text-neutral-500 text-sm">
|
|
493
|
+
<p class="text-neutral-500 text-sm">AI consultation conversations will appear here.</p>
|
|
494
494
|
</div>
|
|
495
495
|
</template>
|
|
496
496
|
|
|
@@ -628,7 +628,7 @@
|
|
|
628
628
|
<h3 class="text-xl font-semibold text-neutral-100 mb-2">Purpose</h3>
|
|
629
629
|
<p class="text-neutral-400 leading-relaxed">
|
|
630
630
|
When AI agents work on complex tasks, having a single perspective can lead to blind spots or suboptimal solutions.
|
|
631
|
-
This MCP server enables
|
|
631
|
+
This MCP server enables AI coding agents to consult with other AI models (DeepSeek, ChatGPT, Gemini)
|
|
632
632
|
to get alternative viewpoints, validate approaches, or explore different problem-solving strategies.
|
|
633
633
|
</p>
|
|
634
634
|
</div>
|
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
<div class="space-y-3 text-neutral-400">
|
|
649
649
|
<div class="flex items-start gap-3">
|
|
650
650
|
<span class="w-6 h-6 bg-accent-500/20 text-accent-400 rounded-full flex items-center justify-center text-sm font-semibold shrink-0">1</span>
|
|
651
|
-
<p>An AI agent
|
|
651
|
+
<p>An AI coding agent encounters a complex problem or wants to validate an approach.</p>
|
|
652
652
|
</div>
|
|
653
653
|
<div class="flex items-start gap-3">
|
|
654
654
|
<span class="w-6 h-6 bg-accent-500/20 text-accent-400 rounded-full flex items-center justify-center text-sm font-semibold shrink-0">2</span>
|
|
@@ -931,7 +931,7 @@
|
|
|
931
931
|
</svg>
|
|
932
932
|
</template>
|
|
933
933
|
</div>
|
|
934
|
-
<span class="text-xs font-semibold" :class="msg.role === 'user' ? 'text-accent-400' : 'text-emerald-400'" x-text="msg.role === 'user' ? '
|
|
934
|
+
<span class="text-xs font-semibold" :class="msg.role === 'user' ? 'text-accent-400' : 'text-emerald-400'" x-text="msg.role === 'user' ? 'Agent' : selectedConversation?.model || 'AI'"></span>
|
|
935
935
|
</div>
|
|
936
936
|
<div class="text-sm whitespace-pre-wrap break-words leading-relaxed" x-text="msg.content"></div>
|
|
937
937
|
</div>
|
package/package.json
CHANGED