# Send Openclaw Action 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-action",
    "name": "Openclaw Action",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/AtlasPA/openclaw-action",
    "canonicalUrl": "https://clawhub.ai/AtlasPA/openclaw-action",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-action",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-action",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "action.yml",
      "README.md",
      "scripts/scan.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-action",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T17:15:27.191Z",
      "expiresAt": "2026-05-07T17:15:27.191Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-action",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-action",
        "contentDisposition": "attachment; filename=\"openclaw-action-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-action"
      },
      "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/openclaw-action"
    },
    "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/openclaw-action",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-action",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-action/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-action/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-action/agent.md"
  }
}
```
## Documentation

### OpenClaw Security Action

GitHub Action that scans agent skills for security issues on every PR.

### What It Scans

ScannerWhat It CatchessentryAPI keys, tokens, passwords, credentials in codebastionPrompt injection markers, shell injection patternsegressSuspicious network calls, data exfiltration patterns

### Quick Start

Add to .github/workflows/security.yml:

name: Security Scan
on:
  pull_request:
    paths:
      - 'skills/**'
      - '.openclaw/**'
  push:
    branches: [main]

jobs:
  scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: AtlasPA/openclaw-action@v1
        with:
          workspace: '.'
          fail-on-findings: 'true'

### Inputs

InputDefaultDescriptionworkspace.Path to scanfail-on-findingstrueFail the check if issues foundscan-secretstrueEnable secret scanningscan-injectiontrueEnable injection scanningscan-egresstrueEnable egress scanning

### Outputs

OutputDescriptionfindings-countTotal number of issues foundhas-criticaltrue if critical/high severity issues

### Philosophy

This action detects and alerts only. It will:

Flag security issues in PR checks
Annotate specific lines with findings
Generate a summary report

It will NOT:

Automatically modify your code
Quarantine or delete files
Make any changes to your repository

For automated remediation, see OpenClaw Pro.

### Requirements

Python 3.8+ (auto-installed by action)
No external dependencies
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AtlasPA
- Version: 1.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-04-30T17:15:27.191Z
- Expires at: 2026-05-07T17:15:27.191Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-action)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-action/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-action/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-action/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-action)