Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

skill-safety-auditor技能安全审核员

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

8,739

周安装

357

GitHub Stars

公开资料未说明

下载量

2,799
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-safety-auditor(技能安全审核员)
来源仓库:https://github.com/harrylabsj/skill-safety-auditor
安装命令:
openclaw skills install skill-safety-auditor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-safety-auditor

简介

对技能进行全面安全审核识别漏洞和不安全模式。

  • 适用于安全相关技能的深度合规检查。skill-safety-auditor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,支持多维度威胁建模。
  • 建议结合渗透测试等实际验证手段交叉确认。
  • 注意部分高危模式可能被标记为误报需人工判断。

SKILL.md

name
skill-safety-auditor
description
Perform comprehensive security audits on skills to identify vulnerabilities, unsafe patterns, and compliance issues. Use when auditing skills for security, checking for hardcoded secrets, injection risks, or before releasing skills.

Skill Safety Auditor

Overview

The skill-safety-auditor skill performs comprehensive security audits on skills to identify vulnerabilities, unsafe code patterns, permission issues, and compliance violations. It helps ensure skills meet security standards before release or deployment.

When to Use

  • During skill development for early issue detection
  • Before releasing a new skill to production
  • As part of the release approval process
  • When the user asks to "audit" or "security check" a skill
  • During periodic security reviews
  • When reviewing third-party skills

Core Concepts

Audit Types

TypeDescriptionSpeed
quick-scanFast surface-level check~1s
auditComprehensive analysis~5-10s
reportFull audit with JSON output~10s

Vulnerability Categories

CategoryChecks ForSeverity
secretsHardcoded API keys, passwords, tokensCritical
injectionCommand injection, path traversalHigh
permissionsUnsafe file permissionsMedium
dependenciesKnown vulnerable dependenciesHigh
networkInsecure HTTP connectionsLow

Severity Levels

  • Critical: Immediate security risk, must fix before release
  • High: Significant risk, strongly recommended to fix
  • Medium: Moderate risk, should address
  • Low: Minor issue, consider fixing
  • Info: Informational, optional to address

Input

Accepts:

  • Path to skill directory
  • Audit type specification
  • Output format preference
  • Vulnerability type filters

Output

Produces:

  • Console output with findings
  • JSON audit reports
  • Summary statistics
  • Pass/fail status

Workflow

Quick Security Check

  1. Run quick-scan on target skill
  2. Review any immediate issues
  3. Address critical/high findings

Comprehensive Audit

  1. Run full audit with verbose output
  2. Review all findings by severity
  3. Generate JSON report for records
  4. Address findings in priority order
  5. Re-run audit to verify fixes

Pre-Release Audit

  1. Audit skill with all checks enabled
  2. Generate formal report
  3. Review with team
  4. Fix all critical/high issues
  5. Document accepted low-risk items

Commands

Quick Scan

./scripts/quick-scan.sh /path/to/skill

Full Audit

./scripts/audit-skill.sh /path/to/skill --verbose

Generate Report

./scripts/audit-skill.sh /path/to/skill --output report.json

Filter by Type

./scripts/audit-skill.sh /path/to/skill --types secrets,injection

List Past Audits

./scripts/list-audits.sh [--skill <name>] [--since 2024-01-01]

Output Format

Console Output

🔍 Starting security audit: my-skill
================================
✅ SKILL.md exists
Scanning for secrets...
Scanning for injection vulnerabilities...
[high] injection: eval() detected
  File: src/utils.js:15
  Recommendation: Avoid eval(), use safer alternatives

================================
Validation complete:
  Errors: 0
  Warnings: 1
❌ Validation FAILED

JSON Report

{
  "audit_id": "AUDIT-20240313-001",
  "skill": "my-skill",
  "timestamp": "2024-03-13T10:30:00Z",
  "summary": {
    "critical": 0,
    "high": 1,
    "medium": 2,
    "low": 3,
    "info": 1
  },
  "findings": [
    {
      "id": "SEC-001",
      "severity": "high",
      "type": "injection",
      "file": "src/utils.js",
      "line": 15,
      "description": "eval() detected - potential code injection",
      "recommendation": "Avoid eval(), use safer alternatives"
    }
  ],
  "passed": false,
  "recommendations": [
    "Remove eval() from src/utils.js:15",
    "Add input validation to all user inputs"
  ]
}

Audit Checks

Secrets Detection

  • API keys and tokens
  • Database passwords
  • Private keys
  • Access credentials
  • Environment variable patterns

Code Safety

  • eval() usage
  • Function constructor
  • setTimeout/setInterval with strings
  • Child process execution
  • Dynamic code execution

File Permissions

  • World-writable files
  • Executable permissions on data files
  • Sensitive file accessibility

Dependencies

  • Known CVE vulnerabilities
  • Deprecated packages
  • Potentially dangerous packages

Network Security

  • HTTP vs HTTPS URLs
  • Insecure API endpoints
  • Missing certificate validation

Quality Rules

  • Always run before releasing skills
  • Fix all critical/high findings
  • Document accepted risks
  • Re-audit after fixes
  • Keep audit history

Good Trigger Examples

  • "Audit this skill for security issues"
  • "Security check before release"
  • "Scan for hardcoded secrets"
  • "Check for injection vulnerabilities"
  • "Run security audit on skill X"

Limitations

  • Static analysis only; cannot detect runtime vulnerabilities
  • May produce false positives for legitimate patterns
  • Cannot verify external service security
  • Does not test actual runtime behavior
  • Limited to known vulnerability patterns

Resources

scripts/

  • audit-skill.sh - Full security audit
  • quick-scan.sh - Fast security check
  • list-audits.sh - View audit history
  • test.sh - Test skill functionality

references/

  • Security best practices
  • Common vulnerability patterns
  • OWASP guidelines reference

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.14%
按下载量换算2,299

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills