Files
memind/docs/BASELINE.md
T
john 9b4a25799f Add smart ACK provider for WeChat MP replies
Replace fixed ackText with a rule-based AckProvider that picks
response templates by message type and intent (translate, summary,
rewrite, poster, ppt, mindmap, code, search, schedule). Pure sync,
zero I/O, auto-falls back to config.ackText on any error.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-26 15:19:03 +08:00

61 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Memind 开发基线 v0.1.0
> **生效日期:** 2026-06-16
> **基线 Tag** `v0.1.0-baseline`
> **基线 Commit** `25d9c8c364e556985183a3fad074a62bc74578d1`
自本基线起,**所有新功能开发、修复与提交均以此版本为起点**。请勿从更早的 commit 或未经同步的本地分支继续开发。
## 基线包含的能力
| 模块 | 说明 |
|------|------|
| H5 门户 | MindSpace、Plaza 发现广场、Agent Jobs |
| 认证 | 微信登录绑定门控、PC 扫码、移动端引导 |
| MindSpace | 页面实时编辑、Chat Skills、可视化 HTML 编辑器(预览内编辑 + undo/redo |
| Plaza | 本机 Mac 为主服务,Cloudflare Tunnel 公网回源 |
| 部署 | H5 / Plaza 本机与脚本化部署工具链 |
## 团队成员操作指南
### 1. 同步基线
```bash
git fetch origin --tags
git checkout v0.1.0-baseline # 只读查看基线代码
# 或
git checkout -b feature/xxx v0.1.0-baseline # 从基线开新分支
```
### 2. 已在 main 上工作的同事
```bash
git fetch origin --tags
git rebase v0.1.0-baseline # 或将 main 重置/合并到基线之后
```
若本地有未推送 commit,请先 `git fetch`,确认基线 tag 存在后再 rebase 或 cherry-pick。
### 3. 新功能分支命名建议
```
feature/<简述>
fix/<简述>
```
分支 **必须**`v0.1.0-baseline`(或其后已合并到 main 的 commit)创建。
## 不在基线内的内容
- 基线 tag 打定之后、尚未合并进 main 的本地未提交改动
- 基线之前的历史 commit 仅作归档参考,不作为新开发起点
## 相关链接
- 仓库:`https://git.tkmind.cn/tkmind/memind`
- Tag`v0.1.0-baseline`
---
如有疑问请联系仓库维护者。