wyrm-mcp 6.16.0 → 6.17.0

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/index.js CHANGED
@@ -5095,6 +5095,17 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
5095
5095
  }
5096
5096
  sections.push(questsBlock.slice(0, 800));
5097
5097
  }
5098
+ // Section 5 — Credential vault advisory (global; only when actionable, so it
5099
+ // self-resolves once `wyrm vault setup` has been run). Lets Wyrm AUTOMATICALLY
5100
+ // guide the connecting AI to set credential storage up properly.
5101
+ try {
5102
+ const { vaultAdvisory } = await import('./vault.js');
5103
+ const vaultLines = vaultAdvisory();
5104
+ if (vaultLines.length > 0) {
5105
+ sections.push('### 🔐 Credential Vault\n' + vaultLines.map(l => `- ${l}`).join('\n'));
5106
+ }
5107
+ }
5108
+ catch { /* vault optional */ }
5098
5109
  // Optionally log session
5099
5110
  let sessionNote = '';
5100
5111
  if (spLog) {