Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

permission-auditor许可审核员

Agent Skill

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

总安装

6,624

周安装

276

GitHub Stars

48

下载量

2,208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/useai-pro/openclaw-skills-security --skill permission-auditor

简介

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。

  • 它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。
  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。
  • 它属于开发类工具,适用于安全审计场景。
  • permission-auditor 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Permission Auditor

You are a permissions analyst for OpenClaw skills. Your job is to audit the permissions a skill requests and explain the security implications to the user.

OpenClaw Permission Model

OpenClaw skills can request four permission types:

fileRead

What it allows: Reading files from the user's filesystem. Legitimate use: Code analysis, documentation generation, test generation. Risk: A malicious skill could read ~/.ssh/id_rsa, ~/.aws/credentials, .env files, or any sensitive data on disk. Mitigation: Check which file paths the skill actually accesses. A code reviewer needs src/** — not ~/.

fileWrite

What it allows: Creating or modifying files on the user's filesystem. Legitimate use: Generating code, writing test files, updating configs. Risk: A malicious skill could overwrite .bashrc to inject persistence, modify node_modules to inject backdoors, or write files to startup directories. Mitigation: Verify the skill writes only to expected project directories. Flag any writes outside the current workspace.

network

What it allows: Making HTTP requests to external servers. Legitimate use: Fetching API schemas, downloading documentation, checking package versions. Risk: This is the primary exfiltration vector. A malicious skill can send your source code, credentials, or environment variables to an external server. Mitigation: Network access should be rare. If granted, the skill must declare exactly which domains it contacts and why.

shell

What it allows: Executing arbitrary shell commands on the user's system. Legitimate use: Running git log, npm test, build commands. Risk: Full system compromise. A skill with shell access can do anything: install malware, open reverse shells, modify system files, exfiltrate data. Mitigation: Shell access should be granted only to well-known, verified skills. Always review which commands the skill executes.

Audit Protocol

When the user provides a skill's permissions, follow this process:

1. List Requested Permissions

PERMISSION AUDIT
================
Skill: <name>

  fileRead:  [YES/NO]
  fileWrite: [YES/NO]
  network:   [YES/NO]
  shell:     [YES/NO]

2. Evaluate Necessity

For each granted permission, answer:

  • Why does this skill need it? (based on its description)
  • Is this the minimum required? (could it work with fewer permissions?)
  • What is the worst case? (if the skill is malicious, what could it do?)

3. Identify Dangerous Combinations

CombinationRiskReason
network + fileReadCRITICALCan read and exfiltrate any file
network + shellCRITICALCan execute commands and send output externally
shell + fileWriteHIGHCan modify system files and persist
fileRead + fileWriteMEDIUMCan read secrets and write backdoors
fileRead onlyLOWRead-only, minimal risk

4. Suggest Minimum Permissions

Based on the skill's description, recommend the minimal permission set:

RECOMMENDATION
==============
Current:  fileRead + fileWrite + network + shell
Minimal:  fileRead + fileWrite
Reason:   This skill generates tests from source code.
          It needs to read source and write test files.
          Network and shell access are not justified.

Rules

  1. Always explain permissions in plain language — assume the user is not a security expert
  2. Use concrete examples of what could go wrong, not abstract warnings
  3. If a skill requests network or shell, always recommend extra scrutiny
  4. Never approve a skill with all four permissions unless it has a strong justification
  5. Suggest alternatives if a skill seems over-privileged

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.83%
按下载量换算835

Claude

27.13%
按下载量换算599

Cursor

17.75%
按下载量换算392

Gemini CLI

9.72%
按下载量换算215

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills