Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
A mandatory security audit skill for validating new code, skills, and MCP servers against the SEP-2026 Zero Trust protocol.
A mandatory security audit skill for validating new code, skills, and MCP servers against the SEP-2026 Zero Trust protocol.
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.
This skill enforces the SEP-2026 Security Protocol. It provides tools to audit source code for malicious patterns, obfuscation, and unauthorized network capability. It is the Gatekeeper; no external code (Skills, MCP Servers, Python scripts) should be integrated without passing this audit.
Use this skill whenever you need to: Audit a new Python file, Skill, or MCP Server before using or installing it. Verify the safety of a downloaded script. Check for supply chain attacks (typosquatting).
Run the Shield Pro 2.0 static analyzer on a target directory or file. python3 skills/openclawSecurity/scripts/shield_pro.py --target <path_to_scan> --format json Output: A JSON report containing CRITICAL, HIGH, and MEDIUM findings. Action: If CRITICAL or HIGH > 0: REJECT the code. If MEDIUM > 0: HALT and ask User for manual review.
Check requirements.txt or package.json for typosquatting and version pinning issues. python3 skills/openclawSecurity/scripts/shield_pro.py --target <path_to_requirements> --mode supply-chain
If available in the environment, the Agent MUST run these SOTA tools to augment Shield Pro's findings: ToolPurposeCommandBanditPython Static Analysis (Common Vulnerabilities)bandit -r <target_dir> -f jsonSafetyPython Dependency Check (Known CVEs)safety check -r requirements.txt --jsonNPM AuditNode.js Dependency Checknpm audit --json (in package dir)TrivyFilesystem/Container Scan (Secrets/Vulns)trivy fs <target_dir> --format jsonGarakLLM/Prompt Injection Testinggarak --model_type <type> --model_name <name> Note: If a tool is missing, log a warning in the final report but proceed with shield_pro findings.
Acquire: Download or locate the target code. Isolate: ensure the code is not executed. Scan: Run shield_pro.py on the target. Evaluate: Pass: No Critical/High issues. Fail: Any Critical/High issue found. Reporting potential Line of Code (LOC) and threat type. Report: Present the findings to the user.
Zero Trust: treat all input as malicious. No Execution: Never run the target code during the audit. Paranoia: False positives are better than missed malware.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.