Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add Sounder25/Google-Antigravity-Skills-Library --skill "Run EELS Test Suite"
Install specific skill from multi-skill repository
# Description
Automates running the Ethereum Execution Layer Specification (EELS) tests against a local EVM implementation. Handles venv setup, execution, and result parsing.
# SKILL.md
name: Run EELS Test Suite
description: Automates running the Ethereum Execution Layer Specification (EELS) tests against a local EVM implementation. Handles venv setup, execution, and result parsing.
version: 1.0.0
author: Antigravity Skills Library
created: 2026-01-15
leverage_score: 5/5
SKILL-001: Run EELS Test Suite
Overview
Automates the execution of EELS compliance tests. This skill handles the complexity of setting up the Python environment, installing dependencies, invoking pytest against a target EVM binary, and parsing the results into standardized reports.
Trigger Phrases
run eels testseels compliance checkverify evm implementationrun execution specs
Inputs
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
--evm-binary |
string | Yes | - | Path to the EVM executable (e.g., ELR.CLI.exe) |
--test-filter |
string | No | - | Optional pytest filter (e.g., -k "add or sub") |
--specs-path |
string | No | Auto-detect | Path to execution-specs repo |
--output-dir |
string | No | ./.forensics |
Directory to save reports |
--json |
switch | No | False | Return raw JSON output only |
Outputs
- Console Output: Real-time test execution progress.
- Report File:
EELS_TEST_RESULTS_<timestamp>.mdwith pass/fail summary and details. - JSON Results:
eels_results.json(if--jsonor requested).
Preconditions
- SKILL-000 must have been run (checked via
WORKSPACE_PROFILE.json). execution-specsrepo must exist (usuallyC:\projects\Scrutor\execution-specsor similar).- Python 3.10+ installed and accessible.
- Target EVM binary must be built and executable.
Safety/QA Checks
- Binary Verification: Checks if
--evm-binaryexists and runs (version check). - Repo State: Checks if
execution-specsis clean/valid. - Venv Isolation: Uses a local
.venvto avoid system pollution.
Implementation
See run_eels_tests.ps1.
Integration
# Example integration
.\skills\01_run_eels_tests\run_eels_tests.ps1 -EvmBinary ".\bin\Debug\net8.0\ELR.CLI.exe" -TestFilter "tests/shanghai/eip3855_push0"
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.