chore: seal Design Vision v1 and monorepo scaffold

Archive the differentiated YuXinGu product docs, AI engineering system,
design contract, and Go/Vue scaffold. Next execution prioritizes Cece-parity
over early innovation (see .ai/product/STRATEGY.md).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
jackyu66git
2026-08-02 16:00:44 +08:00
co-authored by Cursor
parent 2686866376
commit 2fb1dfee14
193 changed files with 8854 additions and 1851 deletions
+37
View File
@@ -0,0 +1,37 @@
# 01 Git 规范
## 策略
Trunk-Based Development
- 默认分支:`main`(可发布)。
- 功能分支:`feature/<short-name>`,生命周期尽量 < 2 天。
- 修复:`fix/<short-name>`
- 不设长期 `develop`
## Commit
Conventional Commits
```
<type>(<scope>): <subject>
[optional body]
```
常用 type`feat` `fix` `refactor` `perf` `style` `docs` `test` `chore`
scope 示例:`auth` `report` `sdk` `user-h5` `api`
subject 用英文或中文均可,但同一仓库保持一种;推荐英文短句,说明意图。
## Release
- 打 tag`v0.1.0`semver)。
- Changelog 记录在 `apps/docs/CHANGELOG.md`(有正式发布时更新)。
## 禁止
- `git commit --no-verify`(除非负责人明确批准)。
- 强制推送 `main`
- 提交密钥、`.env`、本地数据库文件。