mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-27 11:14:59 +00:00
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:
parent
1237d42119
commit
782af73e4a
2 changed files with 14 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -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
11
.mcp.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"mcpServers": {
|
||||
"playwright": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@playwright/mcp@latest"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue