From 782af73e4ae3231d6b3750411137cd17ea1b24b7 Mon Sep 17 00:00:00 2001 From: dongmucat <1127093059@qq.com> Date: Fri, 27 Mar 2026 16:49:51 +0800 Subject: [PATCH] chore(workflow): enhance dev workflow with PR template and Playwright MCP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 skillhub-dev-workflow skill 中增加"阶段七 — 提交 Pull Request" - 添加结构化 PR 模板,包含概述、变更内容、质量门禁、安全考虑、测试说明 - 为 Claude Code 创建对应的 skill 版本(.claude/skills/) - 配置 Playwright MCP 服务器用于 E2E 测试 - 更新 .gitignore 以支持 .claude/ 目录和 *.local.json 文件 --- .gitignore | 4 +++- .mcp.json | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .mcp.json diff --git a/.gitignore b/.gitignore index a3655a1a..bc5bc95c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 00000000..25246fea --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "playwright": { + "command": "npx", + "args": [ + "-y", + "@playwright/mcp@latest" + ] + } + } +}