polydev-ai 1.2.10 → 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.
- package/mcp/stdio-wrapper.js +5 -5
- package/package.json +4 -4
package/mcp/stdio-wrapper.js
CHANGED
|
@@ -861,7 +861,7 @@ class StdioMCPWrapper {
|
|
|
861
861
|
}
|
|
862
862
|
|
|
863
863
|
async start() {
|
|
864
|
-
console.
|
|
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.
|
|
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.
|
|
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.
|
|
918
|
+
console.error('[Stdio Wrapper] Received SIGTERM, shutting down...');
|
|
919
919
|
this.stopSmartRefreshScheduler();
|
|
920
920
|
process.exit(0);
|
|
921
921
|
});
|
|
922
922
|
|
|
923
|
-
console.
|
|
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.
|
|
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",
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"url": "https://github.com/polydev-ai/perspectives-mcp/issues"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
+
"which": "^5.0.0",
|
|
48
|
+
"shelljs": "^0.8.5",
|
|
47
49
|
"@hello-pangea/dnd": "^18.0.1",
|
|
48
50
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
49
51
|
"@radix-ui/react-progress": "^1.1.7",
|
|
@@ -67,13 +69,11 @@
|
|
|
67
69
|
"react": "^18.3.1",
|
|
68
70
|
"react-dom": "^18.3.1",
|
|
69
71
|
"resend": "^6.0.2",
|
|
70
|
-
"shelljs": "^0.8.5",
|
|
71
72
|
"sonner": "^2.0.7",
|
|
72
73
|
"stripe": "^18.5.0",
|
|
73
74
|
"tailwind-merge": "^3.3.1",
|
|
74
75
|
"ts-node": "^10.9.2",
|
|
75
|
-
"use-debounce": "^10.0.6"
|
|
76
|
-
"which": "^5.0.0"
|
|
76
|
+
"use-debounce": "^10.0.6"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/node": "^20.16.1",
|