โ† All skills
Tencent SkillHub ยท Developer Tools

ztp

A mandatory security audit skill for validating new code, skills, and MCP servers against the SEP-2026 Zero Trust protocol.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

A mandatory security audit skill for validating new code, skills, and MCP servers against the SEP-2026 Zero Trust protocol.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, tests/test_utils.py, tests/test_shield.py, tests/test_integration.py, scripts/audit_utils.py, scripts/shield_pro.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Description

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.

Usage

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).

1. Deep Audit (Source Code)

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.

2. Supply Chain Check

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

3. Layer 2: External Defense Arsenal (Recommended)

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.

Workflow: The SEP-2026 Gatekeeper Process

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.

Principles

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/audit_utils.py Scripts
  • scripts/shield_pro.py Scripts
  • tests/test_integration.py Scripts
  • tests/test_shield.py Scripts
  • tests/test_utils.py Scripts