Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

skills-security-audit技能安全审核

Agent Skill

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

总安装

703

周安装

29

GitHub Stars

公开资料未说明

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agentnode-dev/skills-security-audit --skill skills-security-audit

简介

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

  • 适合梳理敏感配置、检查依赖风险或分析鉴权逻辑。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • skills-security-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skill Security Audit

Overview

Scan and audit AI agent skills, plugins, and tool definitions for security vulnerabilities across nine risk categories aligned with the OWASP Agentic AI Top 10 (ASI01 through ASI10). This skill works cross-platform with Claude Code, OpenClaw, and any AI agent platform that uses file-based skill definitions. Rather than relying on brittle regex patterns, it performs AI-powered semantic analysis to detect prompt injection, data exfiltration, obfuscated code, privilege escalation, supply chain attacks, memory poisoning, trust boundary violations, and behavioral manipulation. Each audit produces a structured risk report with severity ratings, evidence citations, and actionable remediation guidance.

When to Use

  • Before installing any third-party skill or plugin from a marketplace
  • When reviewing skills downloaded from OpenClaw, ClawHub, or other registries
  • Periodic audit of all installed skills and plugins
  • When a skill requests unusual permissions or behaves unexpectedly

Security Check Categories

IDCategorySeverityOWASP ASI
PIPrompt InjectionCRITICALASI01
DEData ExfiltrationCRITICALASI02
CEMalicious Command ExecutionCRITICALASI02, ASI05
OBObfuscated/Hidden CodeWARNING
PAPrivilege Over-RequestWARNINGASI03
SCSupply Chain RisksWARNINGASI04
MPMemory/Context PoisoningWARNINGASI06
TEHuman Trust ExploitationWARNINGASI09
BMBehavioral ManipulationINFOASI10
Load references/security-rules.md (relative to this file's directory) for detailed detection patterns, examples, and false positive guidance.

Audit Workflow

Phase 1: Determine Scan Scope

  • If user specifies a directory path, scan all files in that directory recursively.
  • If user says "scan installed", scan platform-specific skill directories:

- Claude Code: ~/.claude/plugins/cache/ - Cursor: ~/.cursor/extensions/ and project .cursorrules - Windsurf: ~/.codeium/windsurf/ - Other platforms: ask user for the directory path.

  • If user provides a GitHub URL, use WebFetch to retrieve the repository content, or clone it locally.
  • Scan these file types: .md, .json, .js, .py, .sh, .ts, .yaml, .yml
  • List all files found and confirm with user before proceeding.
Important: Do NOT dispatch this audit to a subagent (Task tool). Subagents run in a sandboxed environment that cannot read ~/.claude/plugins/cache/ or other system directories. Always run the audit in the main conversation context.

Phase 2: Analyze Each File

  • Load references/security-rules.md (relative to this file's directory) for detailed detection patterns.
  • Read each file using the Read tool.
  • Check file content against all 9 categories (PI, DE, CE, OB, PA, SC, MP, TE, BM).
  • For each finding, record: rule ID (e.g., PI-001), severity, file path and line number, description, and recommended action.
  • Apply context-aware judgment — not every pattern match is a true positive.
  • When a single code block triggers multiple rules, report each applicable rule separately. Cross-category overlap (e.g., OB + CE + PI on the same line) increases confidence that the finding is a true positive.
  • Consider the skill's stated purpose when evaluating findings. A security auditing skill will naturally reference dangerous patterns.

Phase 3: Generate Report

  • Calculate risk score using the scoring formula below.
  • Output the structured report using the template below.
  • For batch scans of multiple skills, output a summary table at the end.

Report Format

Single Skill Report

When auditing one skill, output this full report:

## Skill Security Audit Report

### Target: [skill-name] [version if available]
### Risk Score: X.X/10 ([LEVEL])

---

### CRITICAL

- [PI-001] file.md:42 — Description of finding
  Risk: Why this is dangerous
  Action: Recommended response

### WARNING

- [OB-003] script.js:15 — Description of finding
  Risk: Why this is concerning
  Action: Recommended response

### INFO

- [BM-002] SKILL.md:88 — Description of finding
  Risk: Why this is worth noting
  Action: Recommended response

---

### Summary
- CRITICAL: N | WARNING: N | INFO: N
- Risk Score: X.X/10 — [Overall recommendation]

Batch Scan Report

When scanning multiple skills, use this compact format. Start with the summary dashboard, then show only skills with findings:

## Skill Security Audit — Batch Report

### Dashboard

| # | Skill | Score | Level | C | W | I | Top Finding |
|---|-------|-------|-------|---|---|---|-------------|
| 1 | skill-a | 0.0 | ✅ SAFE | 0 | 0 | 0 | — |
| 2 | skill-b | 2.4 | ⚠️ RISKY | 0 | 3 | 0 | [PA-001] Blanket permission grant |
| 3 | skill-c | 6.0 | 🔴 DANGEROUS | 2 | 1 | 1 | [DE-001] Reads ~/.ssh/id_rsa |
| 4 | skill-d | 8.2 | 🟣 MALICIOUS | 3 | 2 | 0 | [CE-003] curl | sh execution |

**Scanned: 4 skills | Clean: 1 | Needs review: 3**

---

### #3 skill-c — 6.0/10 🔴 DANGEROUS

| Rule | File:Line | Finding | Action |
|------|-----------|---------|--------|
| [DE-001] CRITICAL | lib/init.sh:14 | Reads `~/.ssh/id_rsa` | Remove sensitive file access |
| [DE-004] CRITICAL | lib/init.sh:15 | POSTs to external URL | Remove HTTP exfiltration |
| [OB-007] WARNING | lib/init.sh:13 | Comment says "setup" but code exfiltrates | Rewrite or remove |
| [BM-003] INFO | lib/init.sh:16 | Suppresses stderr output | Review necessity |

### #4 skill-d — 8.2/10 🟣 MALICIOUS
...

Batch format rules:

  • Dashboard table always comes first — gives the user an instant overview.
  • Only expand details for skills scoring above 0.0 (skip SAFE skills).
  • Use a compact table per skill instead of nested bullet lists.
  • Use emoji indicators in the Level column: ✅ SAFE, ⚠️ RISKY, 🔴 DANGEROUS, 🟣 MALICIOUS.
  • Show the single most important finding in the "Top Finding" column of the dashboard.

Scoring

Calculate risk score:

  • Each CRITICAL finding: +2.0 points
  • Each WARNING finding: +0.8 points
  • Each INFO finding: +0.2 points
  • Maximum score: 10.0

Risk levels:

  • 0.0–2.0: SAFE — No significant risks found.
  • 2.1–5.0: RISKY — Manual review recommended before use.
  • 5.1–8.0: DANGEROUS — Do not install.
  • 8.1–10.0: MALICIOUS — Confirmed malicious intent. Report to marketplace.

False Positive Guidance

  • Consider the skill's legitimate purpose before flagging.
  • A security auditing skill will naturally reference dangerous patterns — this is not malicious.
  • Development tools may legitimately need Bash access.
  • Look for intent, not just pattern presence.
  • When uncertain, report the finding with a note explaining the ambiguity.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.57%
按下载量换算84

Claude

28.13%
按下载量换算65

Cursor

18.77%
按下载量换算43

Gemini CLI

9.04%
按下载量换算21

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills