Test Ark Dashboard with Playwright and create PRs with screenshots. Use when testing dashboard UI, taking screenshots for PRs, or reviewing dashboard changes.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: ark-dashboard-testing description: Test Ark Dashboard with Playwright and create PRs with screenshots. Use when testing dashboard UI, taking screenshots for PRs, or reviewing dashboard changes.
Ark Dashboard Testing
Test Ark Dashboard UI with Playwright and create PRs with embedded screenshots.
Setup
kubectl port-forward svc/ark-dashboard 3000:3000 -n default &
curl http://localhost:3000 # warm up
Test with Playwright
Use Playwright MCP tools: browser_navigate, browser_wait_for, browser_click, browser_take_screenshot.
Screenshots save to .playwright-mcp/screenshots/ - move to ./screenshots/.
PR Screenshots
Check if user has a scratch repo:
gh repo view <USERNAME>/scratch
If not, suggest creating one with structure: scratch/pull-request-attachments/<org>_<repo>/
Upload:
cd /tmp && git clone git@github.com:<USERNAME>/scratch.git
mkdir -p scratch/pull-request-attachments/<org>_<repo>
cp ./screenshots/*.png scratch/pull-request-attachments/<org>_<repo>/
cd scratch && git add . && git commit -m "chore: screenshots for <org>/<repo> PR #XXX" && git push
Reference in PR:

Update PR via API:
gh api repos/<org>/<repo>/pulls/XXX -X PATCH -f body="..."
More by dwmkerr
View allAnalyze the Ark codebase by cloning the repository to a temporary location. Use this skill when the user asks questions about how Ark works, wants to understand Ark's implementation, or needs to examine Ark source code.
Test the Ark Dashboard UI with Playwright
Create a Kind cluster in Docker-in-Docker environment
Install Ark on a Kuberenetes Cluster