# Send ztp to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ztp",
    "name": "ztp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/thomastrumpp/ztp",
    "canonicalUrl": "https://clawhub.ai/thomastrumpp/ztp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ztp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ztp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "tests/test_utils.py",
      "tests/test_shield.py",
      "tests/test_integration.py",
      "scripts/audit_utils.py",
      "scripts/shield_pro.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ztp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T23:55:21.980Z",
      "expiresAt": "2026-05-19T23:55:21.980Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ztp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ztp",
        "contentDisposition": "attachment; filename=\"ztp-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ztp"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ztp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ztp",
    "downloadUrl": "https://openagent3.xyz/downloads/ztp",
    "agentUrl": "https://openagent3.xyz/skills/ztp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ztp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ztp/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: thomastrumpp
- Version: 2.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T23:55:21.980Z
- Expires at: 2026-05-19T23:55:21.980Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ztp)
- [Send to Agent page](https://openagent3.xyz/skills/ztp/agent)
- [JSON manifest](https://openagent3.xyz/skills/ztp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ztp/agent.md)
- [Download page](https://openagent3.xyz/downloads/ztp)