@routerhub/agent-rules 1.5.200 → 1.5.201

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  所有对 @routerhub/agent-rules 的重大更改都会记录在这个文件中。
4
4
 
5
+ ## [1.5.201] - 2026-09-08
6
+
7
+ ### Fixed
8
+
9
+ - **清理 `agent-browser-cleanup auto` 的并发退出噪声**:当 Chrome 主进程退出时,部分 Helper 进程可能已经自行结束,脚本不再把这类正常竞态打印成 `kill: No such process`,自动收尾输出更干净。
10
+
5
11
  ## [1.5.200] - 2026-09-08
6
12
 
7
13
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@routerhub/agent-rules",
3
- "version": "1.5.200",
3
+ "version": "1.5.201",
4
4
  "description": "Shared Copilot agent rules and guidelines for RouterHub projects",
5
5
  "main": "AGENTS.base.md",
6
6
  "bin": {
@@ -98,7 +98,7 @@ closeChromeByPort() {
98
98
  fi
99
99
 
100
100
  echo "port ${portNumber}: graceful quit"
101
- printf '%s\n' "$processIds" | xargs -n1 /bin/kill -TERM
101
+ printf '%s\n' "$processIds" | xargs -n1 /bin/kill -TERM 2>/dev/null || true
102
102
  }
103
103
 
104
104
  softCleanup() {