e2e-test-specialist

PassAudited by VirusTotal on May 5, 2026.

Overview

Type: OpenClaw Skill Name: ah-e2e-test-specialist Version: 1.0.0 The skill bundle provides a comprehensive set of templates and instructions for an end-to-end testing specialist. The code examples in references/examples.md cover standard industry practices for Playwright, Cypress, API testing, and CI/CD integration without any signs of malicious intent, data exfiltration, or prompt injection.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If copied into a real project without scoping, generated tests could affect live data or run broad database operations.

Why it was flagged

The Cypress example exposes database query and seeding tasks. This is common for E2E test setup, but it can modify or inspect application data if used against the wrong environment.

Skill content
queryDb: (query) => { return queryDatabase(query, config); }, seedDatabase: () => { return seedTestDatabase(config); }
Recommendation

Use these patterns only with isolated test databases, restrict task inputs, and require explicit review before running tests against shared or production environments.

What this means

A broadly privileged token could let tests create or modify account data if run against the wrong service.

Why it was flagged

The examples show authenticated API testing with an API token. This is expected for E2E/API tests, but tokens should be scoped and handled carefully.

Skill content
'Authorization': `Bearer ${Cypress.env('API_TOKEN')}`
Recommendation

Use least-privilege test credentials, keep tokens out of committed files and logs, and separate test/staging credentials from production credentials.