Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Rigorous validation with typing, linting, testing, and security
Rigorous validation with typing, linting, testing, and security
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Automated quality and security checks.
Setup automated checks: cp references/pre-commit-config.yaml ../your-project/.pre-commit-config.yaml cd ../your-project pre-commit install Runs on every commit: Ruff (linting + formatting) MyPy (type checking) Bandit (security)
Shared pytest setup: cp references/conftest.py ../your-project/tests/ Provides fixtures: sample_df - Test dataframe temp_dir - Temporary directory sample_config - Config dict train_test_split - Pre-split data
# Copy pre-commit config cp references/pre-commit-config.yaml ./.pre-commit-config.yaml # Install hooks pre-commit install # Run manually pre-commit run --all-files # Setup test fixtures cp references/conftest.py tests/ # Run tests pytest tests/ -v --cov=src
# Type check mypy src/ # Lint ruff check src/ tests/ # Format ruff format src/ tests/ # Test pytest tests/ --cov=src # Security scan bandit -r src/
Converted from MLOps Coding Course
Initial OpenClaw conversion Added pre-commit config Added test fixtures
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.