agentsclimarketplace

Openclaw action

Skill AtlasPA/openclaw-action

GitHub Action for automated security scanning of agent workspaces. Detects exposed secrets, prompt/shell injection, and data exfiltration patterns in PRs and commits.From its SKILL.md

Install
npx -y skills add AtlasPA/openclaw-action

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.0 KB, 448 tokens by cl100k_base, as published. Nobody here has run it

OpenClaw Security Action

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

What It Scans

ScannerWhat It Catches
sentryAPI keys, tokens, passwords, credentials in code
bastionPrompt injection markers, shell injection patterns
egressSuspicious 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

InputDefaultDescription
workspace.Path to scan
fail-on-findingstrueFail the check if issues found
scan-secretstrueEnable secret scanning
scan-injectiontrueEnable injection scanning
scan-egresstrueEnable egress scanning

Outputs

OutputDescription
findings-countTotal number of issues found
has-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

What ships with it: 3 files

16.6 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,422. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.