Generate Playwright integration tests for Vaadin 25 views using the DramaFinder library. Use when the user wants to write IT tests for a Vaadin view, mentions DramaFinder, or asks about Playwright testing in a Vaadin project.
73
92%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
This devcontainer is purpose-built for use with AI agents (such as Claude Code). It provides a sandboxed environment with read-only GitHub access — it does not have git write access. Any pushes to remote repositories must be performed from your local environment.
A GitHub PAT with read access is required for the devcontainer to authenticate with GitHub (e.g. to clone private repositories or read repository data).
dramafinder-devcontainer-read)Set the token as DRAMAFINDER_PAT in your local environment so it is passed into the devcontainer automatically.
Add the following line to your shell profile (~/.bashrc, ~/.zshrc, ~/.bash_profile, etc.):
export DRAMAFINDER_PAT="ghp_your_token_here"Then reload your shell:
source ~/.bashrc # or ~/.zshrc, depending on your shellTo verify:
echo $DRAMAFINDER_PATOption A - System Environment Variables:
DRAMAFINDER_PATghp_your_token_hereOption B - PowerShell (persistent, current user):
[System.Environment]::SetEnvironmentVariable("DRAMAFINDER_PAT", "ghp_your_token_here", "User")Security note: Never commit your PAT to source control. Treat it like a password.