@routerhub/agent-rules 1.5.32 → 1.5.33

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
@@ -12,6 +12,7 @@
12
12
  ## Git 规范
13
13
 
14
14
  - 分支用 Git Flow(`feature/`、`bugfix/`、`hotfix/`、`refactor/`、`chore/`、`docs/`、`test/`),英文小写中划线分隔。
15
+ - `test` 分支为测试环境专用分支,禁止直接在 `test` 分支上提交代码;所有代码必须在功能分支上开发完成后,通过 PR 合入 `test` 分支。合入后部署 `test` 分支到测试环境,实现单一测试环境共用。
15
16
  - commit 信息必须中文,禁止 `git push --force`。
16
17
 
17
18
  ## PR 提交、评审与合入规范
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@routerhub/agent-rules",
3
- "version": "1.5.32",
3
+ "version": "1.5.33",
4
4
  "description": "Shared Copilot agent rules and guidelines for RouterHub projects",
5
5
  "main": "AGENTS.base.md",
6
6
  "bin": {
package/rules/global.md CHANGED
@@ -12,6 +12,7 @@ name: "通用规则"
12
12
  ## Git 规范
13
13
 
14
14
  - 分支用 Git Flow(`feature/`、`bugfix/`、`hotfix/`、`refactor/`、`chore/`、`docs/`、`test/`),英文小写中划线分隔。
15
+ - `test` 分支为测试环境专用分支,禁止直接在 `test` 分支上提交代码;所有代码必须在功能分支上开发完成后,通过 PR 合入 `test` 分支。合入后部署 `test` 分支到测试环境,实现单一测试环境共用。
15
16
  - commit 信息必须中文,禁止 `git push --force`。
16
17
 
17
18
  ## PR 提交、评审与合入规范