Why Use This This skill provides specialized capabilities for dwmkerr's codebase.
Use Cases Developing new features in the dwmkerr repository Refactoring existing code to follow dwmkerr standards Understanding and working with dwmkerr's codebase structure
Install Guide 2 steps 1 2 Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/dwmkerr/dotfiles/tree/main/claude/skills/ark-dashboard-testing Skill Snapshot Auto scan of skill assets. Informational only.
Valid SKILL.md Checks against SKILL.md specification
Source & Community
Updated At Jan 9, 2026, 08:32 AM
Skill Stats
SKILL.md 52 Lines
Total Files 1
Total Size 0 B
License NOASSERTION
---
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
```bash
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:
```bash
gh repo view <USERNAME>/scratch
```
If not, suggest creating one with structure: `scratch/pull-request-attachments/<org>_<repo>/`
Upload:
```bash
cd /tmp && git clone [email protected] :<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:
```markdown

```
Update PR via API:
```bash
gh api repos/<org>/<repo>/pulls/XXX -X PATCH -f body="..."
```
---
[Claude Code Skills Documentation](https://docs.anthropic.com/en/docs/claude-code/skills)