snow-flow 8.38.3 → 8.39.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.
Files changed (27) hide show
  1. package/dist/documentation/self-documenting-system.js +2 -2
  2. package/dist/documentation/self-documenting-system.js.map +1 -1
  3. package/dist/mcp/base-mcp-server.d.ts.map +1 -1
  4. package/dist/mcp/base-mcp-server.js +1 -2
  5. package/dist/mcp/base-mcp-server.js.map +1 -1
  6. package/dist/mcp/mcp-on-demand-proxy.js +1 -1
  7. package/dist/mcp/mcp-on-demand-proxy.js.map +1 -1
  8. package/dist/mcp/servicenow-deployment-mcp.js +17 -65
  9. package/dist/mcp/servicenow-deployment-mcp.js.map +1 -1
  10. package/dist/mcp/servicenow-development-assistant-mcp.js +2 -2
  11. package/dist/mcp/servicenow-development-assistant-mcp.js.map +1 -1
  12. package/dist/mcp/servicenow-mcp-unified/shared/__tests__/stakeholder-write-protection.test.js +14 -14
  13. package/dist/mcp/servicenow-mcp-unified/shared/__tests__/stakeholder-write-protection.test.js.map +1 -1
  14. package/dist/mcp/shared/base-mcp-server.js +2 -2
  15. package/dist/mcp/shared/base-mcp-server.js.map +1 -1
  16. package/dist/sdk/claude-agent-sdk-integration.js +1 -1
  17. package/dist/templates/agents-md-template.d.ts +1 -1
  18. package/dist/templates/agents-md-template.d.ts.map +1 -1
  19. package/dist/templates/agents-md-template.js +13 -2
  20. package/dist/templates/agents-md-template.js.map +1 -1
  21. package/dist/templates/claude-md-template.d.ts +1 -1
  22. package/dist/templates/claude-md-template.d.ts.map +1 -1
  23. package/dist/templates/claude-md-template.js +16 -4
  24. package/dist/templates/claude-md-template.js.map +1 -1
  25. package/dist/utils/mcp-tool-registry.js +9 -9
  26. package/dist/utils/mcp-tool-registry.js.map +1 -1
  27. package/package.json +1 -1
@@ -1628,7 +1628,7 @@ class ServiceNowDevelopmentAssistantMCP {
1628
1628
  }
1629
1629
  formatResults(results) {
1630
1630
  if (!results || results.length === 0) {
1631
- return 'āŒ No artifacts found matching your search criteria.\n\nšŸ” **Debugging Info:**\n- ServiceNow connection appears to be working\n- Try broader search terms\n- Check if widgets exist in your ServiceNow instance\n- Use snow_deploy_widget to create new widgets first';
1631
+ return 'āŒ No artifacts found matching your search criteria.\n\nšŸ” **Debugging Info:**\n- ServiceNow connection appears to be working\n- Try broader search terms\n- Check if widgets exist in your ServiceNow instance\n- Use snow_create_artifact to create new artifacts first';
1632
1632
  }
1633
1633
  const formattedResults = results.map((result, index) => {
1634
1634
  const name = result.name || result.title || result.display_name || result.sys_id || 'Unknown';
@@ -3282,7 +3282,7 @@ class ServiceNowDevelopmentAssistantMCP {
3282
3282
  'šŸš€ To deploy: Re-run with auto_deploy: true',
3283
3283
  'Execute specific MCP tools manually:',
3284
3284
  ' - snow_create_flow for flow creation',
3285
- ' - snow_deploy_widget for widget deployment',
3285
+ ' - snow_create_artifact for widget/artifact deployment',
3286
3286
  ' - snow_resilient_deployment for batch deployment'
3287
3287
  ];
3288
3288
  }