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
+33
View File
@@ -0,0 +1,33 @@
# 06 微信小程序规范
适用:`apps/mini-program`(业务后置,先遵守结构)。
## 目录建议
```
pages/
home/
profile/
login/
setting/
components/
Avatar/
Button/
services/ # 业务请求,内部用 sdk 适配器
user.ts
order.ts
utils/
app.js / app.json / app.wxss
```
## 规则
- **不要在页面里直接写请求**;统一 `services/*`
- 登录、存储通过适配器注入 `packages/sdk``wx.request` / `wx.setStorage`)。
- 组件目录 PascalCase 或微信惯用名,项目内统一一种。
- 与 H5 共享类型:`@yuxingu/types`;不共享 Vue SFC。
## 发布
- 使用独立 appid 配置,密钥不进库。
- 体验版 / 正式版环境变量与 API baseURL 分离。