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

skill-review-audit技能审核审核

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

47

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/okwinds/miscellany --skill skill-review-audit

简介

用于辅助安全审计、权限检查和常见漏洞排查。skill-review-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合梳理敏感配置、分析鉴权逻辑或生成复核清单。
  • 通过 GitHub 仓库安装,支持多宿主环境下的安全分析。
  • 不能将工具输出直接当作最终结论,需人工复核。
  • 涉及密钥或用户数据时应启用最小权限原则和脱敏机制。

SKILL.md

Skill Review & Audit

Produce a systematic, multi-dimensional review of any skill directory (a SKILL.md plus optional scripts/, references/, assets/, and install metadata).

Non-Mutating Constraint (Default)

  • Default is read-only: do not create, delete, or modify any files (including apply_patch, sed -i, overwriting configs, auto-fixes, git commit, etc.).
  • If the user wants changes applied, ask for explicit human authorization first and wait for a clear “yes, apply these edits” (or equivalent) before touching the filesystem.
  • You may still propose fixes as text (recommendations or patch snippets), but do not apply them without authorization.

Outcomes

  • A clear description of what the skill teaches and *what it does not*.
  • A map of tooling + side effects the skill may cause when followed (commands, network, file writes, permissions).
  • A risk assessment (security, privacy, safety, supply chain) with mitigations.
  • A quality assessment (correctness, completeness, maintainability, UX) with prioritized improvements.
  • Optional scoring using references/scoring-rubric.md.
  • A report formatted using references/report-template.md.

Inputs To Request (If Missing)

  • Skill identifier: name and/or filesystem path to the skill directory.
  • Target agent environment (e.g. Codex CLI / Claude Code / other) and any constraints (offline, no web, sandboxed, etc.).
  • Intended usage context (what kinds of user prompts should trigger it; what “done” looks like).

Workflow (Do In Order)

0) Scope The Review

  • Confirm whether the review is (a) informational only (read-only) or (b) includes proposing patches (still read-only unless explicitly authorized to apply).
  • Define what “safe enough” means for the target environment (network allowed? can write files? secrets present?).
  • Restate the Non-Mutating Constraint and ask for authorization if the user requests edits to be applied.

1) Inventory & Provenance

  1. List the full directory tree and file sizes.
  2. Identify install/provenance files (common: .openskills.json, package.json, pyproject.toml, git submodule markers).
  3. Record:

- Skill root path - Total file count - Presence of scripts/, references/, assets/ - Any external source URL + install timestamp (if present)

  1. Flag anything unexpected (executables, binaries, obfuscated blobs, huge files, symlinks pointing elsewhere).

Optional helper: run scripts/scan_skill.sh (read it first; it is intended to be read-only). Note: scan_skill.sh may surface sensitive strings (e.g., tokens, private keys) depending on the target directory. Treat its output as sensitive; redact before sharing.

2) Trigger Contract (Frontmatter Audit)

Read SKILL.md YAML frontmatter and assess:

  • Name: unique, stable, correctly scoped (not overly broad).
  • Description (primary trigger): includes concrete triggers/symptoms; avoids vague “does everything”.
  • False positives/negatives: prompts it might match incorrectly vs fail to match.
  • Overlap risk: collisions with other skills (same domain, similar trigger phrases).

Output: “Trigger Strength” rating + rewrite suggestions.

3) Capability Model (What It Teaches)

Extract and summarize:

  • Core tasks it claims to support.
  • Preconditions and assumptions (tech stack, tools installed, access levels).
  • Deliverables (expected outputs, formats, artifacts).
  • Anti-scope (“When NOT to use”) and limitations (explicit or missing).
  • Degree-of-freedom: where it’s prescriptive vs heuristic.

If the skill includes references, don’t assume the main SKILL.md is complete—sample or selectively read reference files to confirm scope.

4) Tooling & Side-Effects Map

Build a table of *everything the skill instructs the agent to do*:

  • Shell commands (including examples).
  • Network access (curl/wget, HTTP clients, package installs, API calls).
  • File system writes (what paths, destructive operations, deletes).
  • Privilege/permissions (sudo, elevated access, credential usage).
  • External dependencies (libraries, CLIs, SaaS).

For each, record: intent, required permissions, risk, and safe alternatives (sandbox, dry-run, allowlists).

5) Security / Privacy / Safety Risk Assessment

Use references/risk-taxonomy.md to assess:

  • Prompt injection exposure (especially if the skill fetches external content).
  • Command injection risks (string interpolation into shell; unsafe copy/paste patterns).
  • Destructive operations (rm -rf, overwriting, migrations, irreversible actions).
  • Secrets handling (API keys, env vars, logs, redaction).
  • Supply-chain risks (install scripts, unpinned deps, untrusted sources).
  • Data exfiltration (uploading files, telemetry, “paste logs here” patterns).

Output: severity × likelihood per risk + mitigations + “safe-by-default” recommendations.

6) Quality & Correctness Review

  • Verify examples for internal consistency (missing imports, wrong prop precedence, mismatched ARIA ids, etc.).
  • Check for missing edge cases (cancellation, cleanup, concurrency, accessibility, i18n).
  • Check “progressive disclosure” quality: is SKILL.md lean and navigational, with details in references/?
  • Check for outdated or unstable advice (versions, APIs likely to change); suggest pinning and dates.

7) Maintainability & Operational Fit

  • Structure: clear headings, searchable keywords, minimal duplication.
  • Update strategy: versioning, ownership, changelog expectations (even if no file).
  • Testability: are scripts tested? is there a validation workflow?
  • Portability: OS assumptions, shell assumptions, tool availability.

8) Improvement Plan (Prioritized)

Provide:

  • Quick wins (low effort / high impact).
  • Structural changes (refactor into references, add scripts, add checklists).
  • Safety hardening (guardrails, confirmations, allowlists).
  • “Definition of Done” for the next iteration.

9) Produce The Report

Use references/report-template.md and keep:

  • Facts separated from recommendations
  • Explicit uncertainty markers when you did not verify something
  • Concrete examples (commands, paths, prompts) where useful

Red Flags — Stop And Re-check

  • Only read SKILL.md and ignored scripts/ / references/.
  • Listed risks without mapping concrete commands/side effects.
  • No provenance/supply-chain notes.
  • No severity/likelihood distinction (everything “risky”).
  • Suggested running scripts you did not read.
  • Gave recommendations without tying them to a specific observed gap.

Deep Checklist (Optional)

If you need a more exhaustive pass, use references/review-checklist.md and score with references/scoring-rubric.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.5%
按下载量换算22

Claude

28.83%
按下载量换算18

Cursor

19.57%
按下载量换算12

Gemini CLI

10.15%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/okwinds/miscellany --skill skill-review-audit 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills