principles-disciple 1.142.0 → 1.143.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.
@@ -2,7 +2,7 @@
2
2
  "id": "principles-disciple",
3
3
  "name": "Principles Disciple",
4
4
  "description": "Evolutionary programming agent framework with strategic guardrails and reflection loops.",
5
- "version": "1.142.0",
5
+ "version": "1.143.0",
6
6
  "activation": {
7
7
  "onCapabilities": [
8
8
  "hook"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "principles-disciple",
3
- "version": "1.142.0",
3
+ "version": "1.143.0",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/bundle.js",
@@ -1083,7 +1083,7 @@ function restartGatewayWindows() {
1083
1083
  execSync(`wmic process where "ProcessId=${pidTrim}" call terminate`, { stdio: 'ignore' });
1084
1084
  } catch { /* ignore individual failures */ }
1085
1085
  }
1086
- execSync('timeout /t 3 /nobreak > nul', { shell: true, stdio: 'ignore' });
1086
+ execSync('timeout /t 3 /nobreak', { shell: true, stdio: 'ignore' });
1087
1087
  }
1088
1088
  } catch { /* no existing processes */ }
1089
1089
 
@@ -1147,7 +1147,7 @@ function restartGatewayWindows() {
1147
1147
  }
1148
1148
  } catch { /* port not listening yet */ }
1149
1149
  try {
1150
- execSync('timeout /t 1 /nobreak > nul', { shell: true, stdio: 'ignore' });
1150
+ execSync('timeout /t 1 /nobreak', { shell: true, stdio: 'ignore' });
1151
1151
  } catch { /* ignore */ }
1152
1152
  }
1153
1153