Skip to content

Commit 00c66a7

Browse files
committed
docs: Remove QA notes file
1 parent 514e4d9 commit 00c66a7

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

Pitfalls.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 开发注意事项
2+
3+
## MCP 规范
4+
- 执行代码中不能打印日志
5+
- 可以 catch 异常或抛出异常
6+
- 只能返回结果
7+
8+
## npm audit 优化
9+
使用 npm-registry-fetch 远程调用 npm audit api,替代本地 npm audit 执行
10+
11+
## npm 包发布
12+
- 使用 GitHub Actions 自动发布 npm 包
13+
- 参考文档:https://juejin.cn/post/7457070778098892840
14+
15+
## npm scripts 注意事项
16+
- 使用 `--ignore-scripts` 禁用 npm 生命周期脚本的自动执行
17+
- 在 Docker 多阶段构建中尤其重要,避免生产环境重复执行编译
18+
19+
## 接口规范
20+
返回格式固定为:
21+
```json
22+
{
23+
"content": [{
24+
// ... 数据结构
25+
}]
26+
}
27+
```

qa.md

-7
This file was deleted.

0 commit comments

Comments
 (0)