Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add gohypergiant/agent-skills --skill accelint-ac-to-playwrightgit clone --depth 1 https://github.com/gohypergiant/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gohypergiant/agent-skills/accelint-ac-to-playwright)<a href="https://agentmods.dev/skills/gohypergiant/agent-skills/accelint-ac-to-playwright"><img src="https://agentmods.dev/badge/skills/gohypergiant/agent-skills/accelint-ac-to-playwright/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gohypergiant/agent-skills/accelint-ac-to-playwright"><img src="https://agentmods.dev/badge/skills/gohypergiant/agent-skills/accelint-ac-to-playwright.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 4 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high System Prompt Leakage · line 151 Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
- medium MCP Rug Pull · line 176 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 181 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 222 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00123 | $0.04284 |
| Opus 5 | $0.00062 | $0.02142 |
| Sonnet 5 | $0.00025 | $0.00857 |
| Haiku 4.5 | $0.00012 | $0.00428 |
Grade A, and why
accelint-ac-to-playwright scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 279 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AC To Playwright
MANDATORY - READ ENTIRE FILE: Before processing ANY acceptance criteria, you MUST read references/acceptance-criteria.md (~175 lines) completely from start to finish. NEVER set any range limits when reading this file. It is the authoritative source for AC writing rules and mappings.
Note on test-hooks.md: Load references/test-hooks.md when converting AC → JSON plans or when running Assessment mode — it contains the controlled vocabulary for area/component/intent target naming patterns. Do NOT load when converting plans → tests (translation script handles this automatically).
Intent Detection
The skill supports two modes based on user phrasing:
Assessment mode (triggers on):
- "review these AC"
- "evaluate these AC"
- "check if these AC are ready"
- "can these AC be converted as-is"
- "are these AC automation-ready"
- "assess these acceptance criteria"
Full conversion mode (triggers on):
- "convert these AC"
- "generate tests from AC"
- "turn AC into Playwright tests"
- "create test automation"
Assessment mode analyzes AC text only (no artifact generation). Full conversion mode generates plans and tests.
Assessment Workflow
- Detect intent: User asks to review/evaluate/assess/check AC readiness.
- Prepare for the task:
- Read
references/acceptance-criteria.mdandreferences/test-hooks.md. - Work one input file at a time.
- Analyze AC text against all conversion requirements:
- Structure & Format:
- Bullet format: proper
-markers for each AC - Gherkin format: valid Feature/Scenario/Examples/Given/When/Then/tags structure
- Step ordering: all Givens → all Whens → all Thens (no mixing within a scenario)
- Bullet format: proper
- Targets (semantic validation):
- Every action specifies a target
- Target meets the area/component/intent pattern (all three parts present)
- Area matches controlled vocabulary from
test-hooks.md(nav, header, footer, form, drawer, card, toast, modal, table, page, area) - Component matches controlled vocabulary (button, link, input, dropdown, checkbox, radio, text, div, component)
- Intent is present
- Actions:
- Verbs are recognized and mappable to Playwright actions (click, fill, select, drag)
- No vague verbs (interact, use, hover without x/y coordinates)
- Fill/select actions have quoted literal values (not "a valid email" or "any value")
- Expected Outcomes:
- Explicitly stated (not implied or inferred)
- Measurable (specific text content, element, or state)
- Visibility changes use trigger words (appears, shows, hides, visible, see)
- Structure & Format:
- Report results:
- If issues found: Report "❌ AC are not conversion-ready" with detailed issue list (see output format below)
- If no issues: Report "✓ AC are conversion-ready" with validated checklist
- Do NOT generate any files (no JSON plans, no test files)
- Report results for all input files - do not stop Assessment mode after a single failure to ensure all issues are surfaced to the user at once.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/evals/BAD-AC.feature 436 B
- assets/evals/expected/BAD-AC.assessment.yaml 1.8 KB
- assets/evals/expected/MIXED-AC.assessment.yaml 1.5 KB
- assets/evals/expected/PERFECT-AC.assertions.yaml 663 B
- assets/evals/expected/PERFECT-AC.plan.json 6.2 KB
- assets/evals/MIXED-AC-1.feature 2.0 KB
- assets/evals/PERFECT-AC.feature 2.9 KB
- assets/fixtures/console-tracking.ts 991 B runs code
- assets/fixtures/error-handling.ts 1016 B runs code
- assets/templates/playwright.config.ts 2.0 KB runs code
- CHANGELOG.md 7.6 KB
- evals/_noise_filter.py 2.6 KB runs code
- evals/_reporter.py 16 KB runs code
- evals/.env.example 647 B
- evals/.gitignore 214 B
- evals/conftest.py 7.2 KB runs code
- evals/DESIGN.md 25 KB
- evals/litellm_judge.py 2.9 KB runs code
- evals/metrics/_json_extraction.py 3.7 KB runs code
- evals/metrics/assessment_quality.py 4.0 KB runs code
- evals/metrics/assumptions.py 4.7 KB runs code
- evals/metrics/blatant_errors.py 3.5 KB runs code
- evals/metrics/clarification_needed.py 4.4 KB runs code
- evals/metrics/goal_accuracy.py 5.3 KB runs code
- evals/metrics/hallucinated_assertions.py 7.2 KB runs code
- evals/metrics/json_completeness.py 6.6 KB runs code
- evals/metrics/permission_compliance.py 2.8 KB runs code
- evals/metrics/plan_adherence.py 5.3 KB runs code
- evals/metrics/plan_semantic.py 4.7 KB runs code
- evals/metrics/plan_structural.py 3.5 KB runs code
- evals/metrics/step_efficiency.py 4.6 KB runs code
- evals/metrics/target_coverage.py 3.8 KB runs code
- evals/metrics/task_completion.py 3.6 KB runs code
- evals/pyproject.toml 1.5 KB
- evals/README.md 13 KB
- evals/runner.py 8.3 KB runs code
- evals/tests/test_assessment_mode.py 5.9 KB runs code
- evals/tests/test_compare_outputs.py 1.1 KB runs code
- evals/tests/test_conversion_mode.py 6.9 KB runs code
- evals/tests/test_correctness_metrics_regressions.py 2.7 KB runs code
- evals/tests/test_efficiency_metrics_regressions.py 2.8 KB runs code
- evals/tests/test_engineer_not_ready_conversion.py 5.4 KB runs code
- evals/tests/test_metrics_catch_regressions.py 9.1 KB runs code
- evals/tests/test_pitfalls_metrics_regressions.py 3.6 KB runs code
- evals/tests/test_pm_perfect_assessment.py 5.8 KB runs code
- evals/tests/test_rubric_hashes.py 1.4 KB runs code
- evals/uv.lock 440 KB
- package-lock.json 60 KB
- package.json 810 B
- README.md 4.1 KB
- references/acceptance-criteria.md 11 KB
- references/target-vocabulary.ts 580 B runs code
- references/test-hooks.md 1.2 KB
- scripts/cli/append-json-summary-entry.ts 8.7 KB runs code
- scripts/cli/create-markdown-summary.ts 8.6 KB runs code
- scripts/cli/generate-tests.ts 11 KB runs code
- scripts/cli/validate-plan.ts 1.2 KB runs code
- scripts/keyboard-key-validator.ts 2.9 KB runs code
- scripts/mouse-validator.ts 506 B runs code
- scripts/plan-schema.ts 12 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 279 lines · 123 tokens per session scan A 4ee2fadaa619
accelint-ac-to-playwright is a skill published in the GitHub repository gohypergiant/agent-skills (24 stars, last pushed today), licensed Apache-2.0. It adds 123 tokens to every session and 4,284 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
dogfood
Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.
test-warp-ui
Guides testing Warp UI features and changes using the computer use tool. Use this skill only when computer-use testing was requested (explicit request or accepted offer) and the computeruse tool is available to the agent. Covers launching Warp and verifying UI behavior.
test-electron-app
Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…
pyats-dynamic-test
Generate and execute deterministic pyATS aetest validation scripts - interface state, OSPF neighbors, BGP paths, ping matrices, and custom compliance tests. Use when writing a network test, validating post-change state, running pass/fail checks, or building automated regression tests.
test-loop
Plan, generate, and heal an executable E2E test suite from approved acceptance criteria (web and mobile).
playwright-cli
Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…