testdino-audit
bởi anthropic
Chỉ sử dụng khi người dùng yêu cầu rõ ràng kiểm tra TestDino đối với mã kiểm thử tự động Playwright. Định tuyến qua các công cụ kiểm tra mà máy chủ TestDino MCP cung cấp…
npx skills add https://github.com/anthropics/claude-plugins-community --skill testdino-auditTestDino Audit
Use the TestDino audit flow only when the user explicitly asks for a TestDino audit.
Rules:
- If the user asks for a generic review or audit, do a normal review in chat.
- If the user explicitly asks for a TestDino audit and the target is Playwright code, use the audit tools below.
- If the user names TestDino but the target is not Playwright code, explain that the TestDino audit flow is for Playwright automated tests and offer a normal review instead.
Tool selection — use whichever audit tools the TestDino MCP server exposes:
- If
get_audit_reportandsubmit_audit_reportare available, prefer those (the current split tools). - If only the legacy
test_audittool is available, use it instead (it takes anactionparameter). - Do not invent a tool that is not in the available tool list.
Preferred flow:
- Call
healthifprojectIdis not known. - Fetch the audit context (read-only). Do not write findings, score, or headings before this returns.
- New tools:
get_audit_reportwithaction: "context". - Legacy:
test_auditwithaction: "analyze"and noscore.
- New tools:
- Review the local Playwright target using the returned context and write findings to a local markdown file (e.g.
TEST-AUDIT.md). - Submit the completed report (score + markdown report).
- New tools:
submit_audit_report. - Legacy:
test_auditwithaction: "analyze"plusscoreandmarkdownReport.
- New tools:
- Browse or retrieve previously submitted audits.
- New tools:
get_audit_reportwithaction: "list"oraction: "get". - Legacy:
test_auditwithaction: "list"oraction: "get".
- New tools:
Important:
- keep generic reviews as normal chat reviews
- use the TestDino audit flow only for explicit TestDino audit requests
- keep this flow centered on Playwright automated test code