@routerhub/agent-rules 1.5.56 → 1.5.57

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/AGENTS.base.md CHANGED
@@ -241,6 +241,7 @@ Closes #456
241
241
 
242
242
  - 用 `console.error` 记录错误(含函数名/模块名上下文),禁止 `console.log` 输出错误。
243
243
  - 提交前移除调试日志和临时代码。
244
+ - 调试过程中产生的中间产物(临时文件、测试脚本、调试截图、dump 文件、临时注释、`console.log` 等)禁止加入 Git 提交,`.gitignore` 中应配置忽略常见中间产物。
244
245
 
245
246
  ## Modal 内 Tooltip 规范
246
247
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@routerhub/agent-rules",
3
- "version": "1.5.56",
3
+ "version": "1.5.57",
4
4
  "description": "Shared Copilot agent rules and guidelines for RouterHub projects",
5
5
  "main": "AGENTS.base.md",
6
6
  "bin": {
package/rules/frontend.md CHANGED
@@ -65,6 +65,7 @@ outputName: "frontend"
65
65
 
66
66
  - 用 `console.error` 记录错误(含函数名/模块名上下文),禁止 `console.log` 输出错误。
67
67
  - 提交前移除调试日志和临时代码。
68
+ - 调试过程中产生的中间产物(临时文件、测试脚本、调试截图、dump 文件、临时注释、`console.log` 等)禁止加入 Git 提交,`.gitignore` 中应配置忽略常见中间产物。
68
69
 
69
70
  ## Modal 内 Tooltip 规范
70
71