chore(workflow): enhance dev workflow with PR template and Playwright MCP

- 在 skillhub-dev-workflow skill 中增加"阶段七 — 提交 Pull Request"
- 添加结构化 PR 模板,包含概述、变更内容、质量门禁、安全考虑、测试说明
- 为 Claude Code 创建对应的 skill 版本(.claude/skills/)
- 配置 Playwright MCP 服务器用于 E2E 测试
- 更新 .gitignore 以支持 .claude/ 目录和 *.local.json 文件
This commit is contained in:
dongmucat 2026-03-27 16:49:51 +08:00 committed by Xudong Sun
parent 1237d42119
commit 782af73e4a
2 changed files with 14 additions and 1 deletions

4
.gitignore vendored
View file

@ -5,7 +5,6 @@ Thumbs.db
# Editors / IDEs
.idea/
.vscode/
.claude/
*.iml
*.swp
*.swo
@ -74,3 +73,6 @@ docs/prds/
# oh-my-claudecode
.omc
#local
*.local.json

11
.mcp.json Normal file
View file

@ -0,0 +1,11 @@
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp@latest"
]
}
}
}