polydev-ai 1.2.11 → 1.2.12

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.
@@ -861,7 +861,7 @@ class StdioMCPWrapper {
861
861
  }
862
862
 
863
863
  async start() {
864
- console.log('Starting Polydev Stdio MCP Wrapper...');
864
+ console.error('[Stdio Wrapper] Starting Polydev Stdio MCP Wrapper...');
865
865
 
866
866
  // Only run initial CLI detection if we have a token
867
867
  if (this.userToken && this.cliManager) {
@@ -902,25 +902,25 @@ class StdioMCPWrapper {
902
902
  });
903
903
 
904
904
  process.stdin.on('end', () => {
905
- console.log('Stdio MCP Wrapper shutting down...');
905
+ console.error('[Stdio Wrapper] Shutting down...');
906
906
  this.stopSmartRefreshScheduler();
907
907
  process.exit(0);
908
908
  });
909
909
 
910
910
  // Handle process signals
911
911
  process.on('SIGINT', () => {
912
- console.log('Received SIGINT, shutting down...');
912
+ console.error('[Stdio Wrapper] Received SIGINT, shutting down...');
913
913
  this.stopSmartRefreshScheduler();
914
914
  process.exit(0);
915
915
  });
916
916
 
917
917
  process.on('SIGTERM', () => {
918
- console.log('Received SIGTERM, shutting down...');
918
+ console.error('[Stdio Wrapper] Received SIGTERM, shutting down...');
919
919
  this.stopSmartRefreshScheduler();
920
920
  process.exit(0);
921
921
  });
922
922
 
923
- console.log('Stdio MCP Wrapper ready and listening on stdin...');
923
+ console.error('[Stdio Wrapper] Ready and listening on stdin...');
924
924
  }
925
925
  }
926
926
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "description": "Agentic workflow assistant with CLI integration - get diverse perspectives from multiple LLMs when stuck or need enhanced reasoning",
5
5
  "keywords": [
6
6
  "mcp",