mta-mcp 2.6.0 → 2.7.1
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/flutter.agent.md +6 -7
- package/agents/i18n.agent.md +1 -0
- package/agents/logicflow.agent.md +1 -0
- package/agents/vue3.agent.md +1 -0
- package/dist/index.js +941 -764
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
- package/standards/frameworks/flutter-ui-system.md +1 -2
- package/standards/workflows/large-project-split.md +1 -1
- package/templates/README.md +144 -0
- package/templates/common/types/_CONFIG.md +12 -0
- package/templates/common/types/api.ts +39 -0
- package/templates/common/types/common.ts +70 -0
- package/templates/copilot-instructions-mcp-optimized.md +158 -0
- package/templates/vue/api-layer/_CONFIG.md +145 -0
- package/templates/vue/api-layer/index.ts +58 -0
- package/templates/vue/api-layer/mock/index.ts +122 -0
- package/templates/vue/api-layer/modules/_template.ts +109 -0
- package/templates/vue/api-layer/modules/index.ts +16 -0
- package/templates/vue/api-layer/request.ts +279 -0
- package/templates/vue/api-layer/types.ts +80 -0
- package/agents/vue3.agent.md.bak +0 -132
package/agents/flutter.agent.md
CHANGED
|
@@ -109,9 +109,9 @@ get_relevant_standards({
|
|
|
109
109
|
})
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
#### 🎨 UI
|
|
112
|
+
#### 🎨 UI 开发时
|
|
113
113
|
|
|
114
|
-
> ⚠️ **强制要求**:
|
|
114
|
+
> ⚠️ **强制要求**: 在进行任何 Flutter UI 开发前,必须加载 UI 系统规范!
|
|
115
115
|
|
|
116
116
|
```
|
|
117
117
|
# 加载 UI 系统规范
|
|
@@ -1222,12 +1222,11 @@ void fetchData() async {
|
|
|
1222
1222
|
- [Flutter Style Guide](https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md)
|
|
1223
1223
|
- [Flutter Performance Best Practices](https://flutter.dev/docs/perf/best-practices)
|
|
1224
1224
|
|
|
1225
|
-
###
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
- `docs/还原样式总结/登录页输入框新拟态阴影修复.md` - 阴影透出问题
|
|
1229
|
-
- `docs/还原样式总结/首页选项卡新拟态还原.md` - 内阴影裁剪问题
|
|
1225
|
+
### 项目文档参考
|
|
1226
|
+
> 以下为项目特定文档,实际路径以项目结构为准
|
|
1227
|
+
|
|
1230
1228
|
- `docs/UI_RESTORATION_GUIDE.md` - 响应式 UI 还原指南
|
|
1229
|
+
- `docs/STYLE_GUIDE.md` - 样式规范文档
|
|
1231
1230
|
|
|
1232
1231
|
### 学习资源
|
|
1233
1232
|
- [Flutter YouTube Channel](https://www.youtube.com/c/flutterdev)
|
package/agents/i18n.agent.md
CHANGED
package/agents/vue3.agent.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
````chatagent
|
|
2
2
|
---
|
|
3
3
|
description: 'Vue 3 + TypeScript 通用开发代理'
|
|
4
|
+
tags: ['vue', 'vue3', 'typescript', 'vite', 'element-plus', 'state-management', 'routing', 'i18n']
|
|
4
5
|
tools: ['edit', 'runNotebooks', 'search', 'new', 'runCommands', 'runTasks', 'usages', 'vscodeAPI', 'problems', 'changes', 'testFailure', 'githubRepo', 'extensions', 'todos', 'runSubagent']
|
|
5
6
|
---
|
|
6
7
|
|