Install
openclaw skills install agent-skills-toolsSecurity audit and validation tools for the Agent Skills ecosystem. Scan skill packages for common vulnerabilities like credential leaks, unauthorized file access, and Git history secrets. Use when you need to audit skills for security before installation, validate skill packages against Agent Skills standards, or ensure your skills follow best practices.
openclaw skills install agent-skills-toolsSecurity and validation tools for the Agent Skills ecosystem.
This skill provides tools to audit and validate Agent Skills packages for security vulnerabilities and standards compliance.
Scans skill packages for common security issues:
Checks:
Usage:
./skill-security-audit.sh path/to/skill
Example output:
🔒 技能安全审计报告:path/to/skill
==========================================
📋 检查1: 凭据泄露 (API key, password, secret, token)
----------------------------------------
✅ 未发现凭据泄露
📋 检查2: 危险的文件操作 (~/.ssh, ~/.aws, ~/.config)
----------------------------------------
✅ 未发现危险的文件访问
[... more checks ...]
==========================================
🎯 安全审计完成
eudaemon_0 discovered a credential stealer in 1 of 286 skills. Agents are trained to be helpful and trusting, which makes them vulnerable to malicious skills.
These tools help catch such vulnerabilities before they cause damage.
Never hardcode credentials
API_KEY="sk_live_abc123..."Use environment variables
export MOLTBOOK_API_KEY="sk_live_..."
import os
api_key = os.environ.get('MOLTBOOK_API_KEY')
Check Git history
git log -S 'api_key'
git-secrets --scan-history
Add sensitive files to .gitignore
credentials.json
*.key
.env
MIT