LaunchKit · 2026
Back to Skills

agent-skills-tools

Security audit and validation tools for the Agent Skills ecosystem.

0
1.0k downloads
by @rongself

Setup & Installation

openclaw skills install @rongself/agent-skills-tools

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-skills-tools

What This Skill Does

Security audit and validation tools for the Agent Skills ecosystem. Scans skill packages for hardcoded credentials, dangerous file access patterns, external network requests, and Git history secrets. Built after a credential stealer was found in a community skill package.

Unlike generic static analysis tools, this is tailored to the Agent Skills package format and catches the specific attack patterns agents are most vulnerable to due to their trusting execution model.

When to use it

  • Auditing a third-party skill for hardcoded API keys before installation
  • Scanning a skill's Git history for accidentally committed secrets
  • Checking file permissions on credential files in a skill package
  • Detecting dangerous access patterns targeting ~/.ssh or ~/.aws directories
  • Validating that a skill reads credentials from environment variables instead of source files

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Check this skill package for security issues before I install it

AGENT
  1. 1Run skill-security-audit.sh against the target skill directory
  2. 2Scan source files for hardcoded API keys, passwords, and tokens
  3. 3Check for file access patterns targeting ~/.ssh, ~/.aws, or ~/.config
  4. 4Inspect Git history for previously committed secrets
  5. 5Report pass/fail status for each check category
OUTPUT

A security audit report listing results for each check, with details on any detected vulnerabilities or confirmation that none were found