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

explainexplain 开发

Agent Skill

explain 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

9

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/florianbuetow/claude-code --skill explain

简介

用于查找、检索和筛选相关信息。explain 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库继续核验具体用法。
  • 安装前建议确认权限和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写。

SKILL.md

Security Explainer

Interactive explainer for security frameworks, threat categories, vulnerability findings, and security concepts. Works at multiple levels of depth -- from a broad framework overview down to a single finding ID. Always uses the user's own codebase for concrete examples when possible.

Explanation Levels

Detect what the user is asking about and respond at the appropriate level:

Level 1: Framework

Triggered by framework names: STRIDE, OWASP, PASTA, LINDDUN, MITRE ATT&CK, SANS/CWE Top 25, DREAD.

What to cover:

  1. What the framework is, who created it, and when to use it.
  2. All categories/stages within the framework (e.g., all 6 STRIDE letters, all 10 OWASP categories, all 7 PASTA stages).
  3. For each category: one-sentence description and a real code example from the user's codebase if available.
  4. How the framework relates to other frameworks (cross-mappings).
  5. When to choose this framework over alternatives.

Framework references to read:

Level 2: Category

Triggered by category names: "spoofing", "tampering", "injection", "broken access control", "A01", "A03", "STRIDE-S", "CWE-89", etc.

What to cover:

  1. Full definition of the category and which framework(s) it belongs to.
  2. The security property it protects (e.g., Spoofing protects Authentication).
  3. Common attack techniques in this category (3-5 examples).
  4. Real code patterns from the user's codebase that are relevant. Use Grep and Glob to find concrete examples.
  5. How to detect vulnerabilities in this category.
  6. How to prevent or remediate them.
  7. Related categories in other frameworks (cross-mapping).

Level 3: Finding

Triggered by finding IDs: "INJ-003", "SPOOF-001", "AC-005", "SEC-002", etc. Also triggered by phrases like "explain this finding" or "what does this vulnerability mean" when a finding was recently reported.

What to cover:

  1. What the finding means in plain language.
  2. Why it is dangerous -- concrete attack scenario.
  3. How an attacker would exploit it step by step.
  4. The severity and confidence ratings and why they were assigned.
  5. Framework and CWE cross-references.
  6. Step-by-step remediation with code diff.
  7. How to verify the fix is correct.
  8. Similar vulnerabilities to watch for in the same codebase.

Level 4: Comparison

Triggered by "vs", "versus", "compared to", "difference between", or listing multiple frameworks/categories.

What to cover:

  1. Side-by-side overview of each item being compared.
  2. Key differences in approach, scope, and philosophy.
  3. When to use each one.
  4. Overlap and complementary strengths.
  5. Recommendation for the user's specific use case.

Common comparisons:

  • STRIDE vs PASTA: Categorization vs process-oriented
  • STRIDE vs LINDDUN: Security threats vs privacy threats
  • OWASP Top 10 vs SANS/CWE Top 25: Web app risks vs software weaknesses
  • OWASP Top 10 vs OWASP API Top 10: Web apps vs API-specific risks
  • DREAD vs CVSS: Qualitative vs quantitative risk scoring

Workflow

1. Parse the Query

Determine:

  • Level: Framework, category, finding, or comparison.
  • Subject(s): Which specific framework(s), category(ies), or finding(s).
  • Context: Is there a recent analysis whose findings can be referenced?

2. Load References

Read the relevant framework reference file(s) from shared/frameworks/. For finding explanations, also read the relevant skill's SKILL.md and detection patterns.

3. Search the Codebase

Use Glob and Grep to find real examples from the user's codebase that illustrate the concept. This grounds the explanation in the user's actual code rather than generic examples.

Search strategy by level:

  • Framework: Scan for patterns relevant to each category. Show 1 example per category to make the framework tangible.
  • Category: Deep search for patterns specific to that category. Show 3-5 real examples with file paths and line numbers.
  • Finding: Read the specific file and lines referenced in the finding. Also search for similar patterns elsewhere in the codebase.
  • Comparison: Search for examples that highlight the difference between the compared items.

4. Explain

Present the explanation at the appropriate level. Use clear headings, concrete code examples, and practical language. Avoid jargon without definition. When referencing CWEs or other identifiers, briefly explain what they mean.

5. Offer Follow-Up

Always end with a contextual follow-up offer:

SituationOffer
Explained a framework"Want me to run a full {framework} analysis on your codebase?"
Explained a category"Want me to scan your code specifically for {category} issues?"
Explained a finding"Want me to generate the fix?" or "Want me to check for similar issues?"
Compared frameworks"Want me to run {recommended framework} on your codebase?"
Generic concept"Want me to check your code for related vulnerabilities?"

Presentation Guidelines

  • Start with a one-sentence plain-language summary before diving into detail.
  • Use tables for structured comparisons and cross-references.
  • Show code snippets from the user's codebase when available, with file paths.
  • For findings, always include the attack scenario as a numbered step list.
  • Keep explanations practical. Developers want to know "what do I do about this?" not just "what is this?".
  • When explaining severity, connect it to real-world impact: "critical means an attacker can do X without authentication."

Edge Cases

  • Unknown term: If the user asks about something not in the loaded frameworks, provide the best explanation possible from general security knowledge and note which frameworks/CWEs are related.
  • Ambiguous query: If "explain injection" could mean SQL injection, command injection, or the OWASP A03 category, briefly cover all and ask which the user wants to dive deeper into.
  • Finding not in context: If the user references a finding ID that was not part of a recent analysis, explain what findings with that prefix typically represent (e.g., "INJ findings are injection vulnerabilities detected by the injection skill") and offer to run the relevant scan.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.88%
按下载量换算26

Claude

31.48%
按下载量换算25

Cursor

20.53%
按下载量换算16

Gemini CLI

9.48%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills