feat: add TaskBoard demo and refactor project structure

This commit is contained in:
ken
2026-02-16 13:36:29 +08:00
parent ca828a6c7f
commit a4a68ec039
24 changed files with 976 additions and 1698 deletions

11
.agent/workflows/push.md Normal file
View File

@@ -0,0 +1,11 @@
---
description: 自动暂存所有更改,生成语义化 Commit Message并推送到远程仓库
---
1. 添加所有变更到暂存区 // turbo Run `git add .`
2. 查看变更文件列表以生成 Commit Message // turbo Run `git status`
3. 生成提交信息并提交分析变更内容,生成符合 Angular Commit Convention 的提交信息(如 `feat: add new workflow`, `fix: style issue`)。 Run `git commit -m "type: subject"`
4. 推送到远程仓库 // turbo Run `git push`