mobbdev 1.0.190 → 1.0.191

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 (2) hide show
  1. package/dist/index.mjs +4 -7
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -14120,7 +14120,6 @@ var McpServer = class {
14120
14120
  SIGQUIT: "MCP server quit signal received",
14121
14121
  SIGABRT: "MCP server abort signal received",
14122
14122
  SIGPIPE: "MCP server broken pipe signal received",
14123
- SIGCHLD: "MCP server child process signal received",
14124
14123
  SIGTSTP: "MCP server terminal stop signal received",
14125
14124
  exit: "MCP server exiting",
14126
14125
  uncaughtException: "Uncaught exception in MCP server",
@@ -14152,9 +14151,6 @@ var McpServer = class {
14152
14151
  } else {
14153
14152
  logDebug(message, { signal });
14154
14153
  }
14155
- if (signal === "SIGCHLD") {
14156
- return;
14157
- }
14158
14154
  if (signal === "SIGINT" || signal === "SIGTERM" || signal === "SIGHUP" || signal === "SIGQUIT" || signal === "SIGABRT" || signal === "SIGPIPE" || signal === "SIGTSTP") {
14159
14155
  await this.trackServerUsage("stop", signal);
14160
14156
  process.exit(0);
@@ -14244,7 +14240,6 @@ var McpServer = class {
14244
14240
  "SIGQUIT",
14245
14241
  "SIGABRT",
14246
14242
  "SIGPIPE",
14247
- "SIGCHLD",
14248
14243
  "SIGTSTP",
14249
14244
  "exit",
14250
14245
  "uncaughtException",
@@ -14791,10 +14786,12 @@ You have viewed ${shownCount} out of ${totalCount} available fixes.
14791
14786
 
14792
14787
  ### \u26A0\uFE0F CRITICAL INSTRUCTION FOR AI AGENTS \u26A0\uFE0F
14793
14788
 
14794
- **DO NOT AUTOMATICALLY FETCH ADDITIONAL FIXES WITHOUT EXPLICIT USER REQUEST**
14789
+ **YOU MUST INFORM THE USER, BUT DO NOT AUTOMATICALLY FETCH ADDITIONAL FIXES**
14795
14790
 
14791
+ - **YOU MUST** tell the user that there are ${totalCount - nextOffset} additional fixes available
14792
+ - **YOU MUST** inform the user they can request more fixes if they want to see them
14796
14793
  - **DO NOT** run the \`${currentTool}\` tool again on your own
14797
- - **DO NOT** automatically retrieve more fixes
14794
+ - **DO NOT** automatically retrieve more fixes without explicit user request
14798
14795
  - **ONLY** fetch additional fixes if the user explicitly asks for them
14799
14796
  - **WAIT** for the user to specifically request more fixes before proceeding
14800
14797
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.190",
3
+ "version": "1.0.191",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.mjs",