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

skill-auditor-plus技能审核员加

Agent Skill

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

总安装

2,352

周安装

120

GitHub Stars

公开资料未说明

下载量

824
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-auditor-plus

简介

用于辅助安全审计和凭据风险排查,适合让 Agent 检查依赖风险和认证流程。

  • 适用于 AgentSkills 的安全、性能和质量全面审核。
  • 支持安装前检查、开发过程审核和设备状态监控。
  • 使用时不能将工具输出直接作为最终结论,需人工确认权限边界。
  • skill-auditor-plus 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skill-auditor-plus
description
Security, performance, and quality auditing for AgentSkills. Use when reviewing skills before installation, auditing during development, checking installed skills for risks, optimizing performance, or ensuring best practices compliance. Automated scanning for dangerous operations, credential leaks, token bloat, and quality issues.

Skill Auditor Plus

Transform skill development from "hope it works" to "confidently secure and optimized". This skill provides automated auditing for AgentSkills across three dimensions: security, performance, and quality.

Why Skill Auditing Matters

  • Security: Skills run with Codex's permissions - a vulnerable skill can delete files, leak credentials, or execute arbitrary commands
  • Performance: Large skills consume context window, reducing Codex's effectiveness for the actual task
  • Quality: Well-structured skills are easier to maintain, more reliable, and provide better user experience

Core Capabilities

1. Security Audit

Automatically scans for:

  • Dangerous operations: File deletion (rm -rf), system commands (eval, exec), code execution
  • Credential leaks: Hardcoded API keys, secrets, tokens, passwords
  • Network requests: External API calls that may be unsafe
  • Suspicious patterns: Pastebin links, URL shorteners, risky file paths
  • Injection vulnerabilities: Unsafe user input handling

Severity levels:

  • 🔴 High: File deletion, credential leaks, system command execution
  • 🟡 Medium: Network requests, code execution, risky file paths
  • 🟢 Low: Suspicious URLs, file writes

2. Performance Audit

Analyzes skill efficiency:

  • Token usage: Frontmatter (<100 tokens), body (<5000 tokens), line count (<500 lines)
  • Context optimization: Duplicate content, unreferenced files, large reference files
  • Script efficiency: Execute permissions, code duplication
  • Recommendations: Split into references/, use scripts for repeated code

Key metrics:

  • Frontmatter token count (target: <100)
  • Body token count (target: <5000)
  • Line count (target: <500)
  • Reference file sizes (target: <10k tokens each)

3. Quality Audit

Checks best practices compliance:

  • SKILL.md structure: Proper frontmatter, complete description
  • File organization: No unnecessary files (README.md, INSTALLATION_GUIDE.md, etc.)
  • Documentation: Clear usage instructions, examples, error handling
  • Progressive disclosure: Efficient context loading with references/

Quick Start

Audit a skill before installation

# Clone or download the skill
cd skill-auditor-plus

# Run security audit
python3 scripts/security_audit.py /path/to/skill-to-audit

# Run performance audit
python3 scripts/performance_audit.py /path/to/skill-to-audit

During skill development

# After making changes, audit your skill
python3 scripts/security_audit.py /path/to/your-skill
python3 scripts/performance_audit.py /path/to/your-skill

# Fix issues, then re-audit
# Iterate until no high/medium severity issues remain

Batch audit installed skills

# Audit all skills in a directory
for skill in /path/to/skills/*; do
    echo "Auditing $skill"
    python3 scripts/security_audit.py "$skill"
    python3 scripts/performance_audit.py "$skill"
done

Understanding Audit Reports

Security Audit Report

{
  "total_issues": 5,
  "high_severity": 1,
  "medium_severity": 2,
  "low_severity": 2,
  "issues": [
    {
      "category": "credential_leaks",
      "severity": "high",
      "file": "scripts/api_client.py",
      "line": 15,
      "pattern": "api_key\\s*=\\s*[\"'][\\w-]+[\"']",
      "matched_text": "api_key = \"sk-1234567890\"",
      "context": "api_key = \"sk-1234567890\""
    }
  ]
}

What to do:

  1. Review each issue by severity (high → medium → low)
  2. For credential leaks: Use environment variables
  3. For dangerous operations: Add warnings or safety checks
  4. For network requests: Document purpose and add error handling

Performance Audit Report

{
  "skill_md_stats": {
    "frontmatter_tokens": 85,
    "body_tokens": 7500,
    "total_tokens": 7585,
    "line_count": 520
  },
  "issues": [
    {
      "severity": "high",
      "category": "body_too_long",
      "message": "Body is too long (7500 tokens, should be < 5000)",
      "suggestion": "Split content into references/ files and link from SKILL.md"
    }
  ]
}

What to do:

  1. Frontmatter too long: Move detailed descriptions to body
  2. Body too long: Split into references/ files, link from SKILL.md
  3. Too many lines: Break into smaller sections, use references/
  4. Large reference files: Split further or add grep patterns for searching

Best Practices

See best-practices.md for comprehensive guidelines on:

  • Security best practices (credential management, input validation, safe operations)
  • Performance optimization (token efficiency, progressive disclosure, script usage)
  • Quality standards (documentation, file organization, structure)

Advanced Usage

Custom Security Patterns

Edit scripts/security_audit.py to add custom patterns:

DANGEROUS_PATTERNS = {
    'custom_risk': [
        r'your_custom_regex_pattern',
    ],
}

Performance Thresholds

Edit scripts/performance_audit.py to adjust thresholds:

if stats['body_tokens'] > 5000:  # Change this value
    issues.append({...})

Integration with CI/CD

Add to your CI pipeline:

# .github/workflows/skill-audit.yml
name: Skill Audit
on: [push, pull_request]
jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Security Audit
        run: |
          python3 skill-auditor-plus/scripts/security_audit.py .
      - name: Performance Audit
        run: |
          python3 skill-auditor-plus/scripts/performance_audit.py .

Resources

scripts/

  • security_audit.py: Automated security scanning for dangerous operations, credential leaks, and suspicious patterns
  • performance_audit.py: Performance analysis for token usage, context optimization, and best practices compliance

references/

  • best-practices.md: Comprehensive guide to AgentSkill development best practices, including security, performance, and quality standards

Troubleshooting

"Module not found" errors

Install required dependencies:

pip install pyyaml  # if needed

False positives in security audit

If the scanner flags safe code:

  1. Review the pattern match
  2. Add comments explaining why it's safe
  3. Consider refactoring to avoid the pattern

Performance audit shows large body

This is normal for complex skills. Split content into references/:

  1. Move detailed sections to references/feature-name.md
  2. In SKILL.md, add: "See FEATURE for details"
  3. Keep only overview and navigation in SKILL.md

Contributing

Found a bug or want to add features? This skill is open source. Contributions welcome!

License

MIT License - See LICENSE file for details

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.55%
按下载量换算672

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills