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

security-triage安全分类

Agent Skill

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

总安装

2,376

周安装

95

GitHub Stars

366,393

下载量

832
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/steipete/clawdis --skill security-triage

简介

用于安全事件的初步分类与优先级排序。

  • 适合快速筛选高风险警报和异常行为。
  • 可辅助制定后续处置流程和责任分配。
  • 需配合人工判断避免误判正常操作。security-triage 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 应建立标准化分类规则以提高效率。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Security Triage

Use when reviewing OpenClaw security advisories, drafts, or GHSA reports.

Goal: high-confidence maintainers' triage without over-closing real issues or shipping unnecessary regressions.

Close Bar

Close only if one of these is true:

  • duplicate of an existing advisory or fixed issue
  • invalid against shipped behavior
  • out of scope under SECURITY.md
  • fixed before any affected release/tag

Do not close only because main is fixed. If latest shipped tag or npm release is affected, keep it open until released or published with the right status.

Required Reads

Before answering:

  1. Read SECURITY.md.
  2. Read the GHSA body with gh api /repos/openclaw/openclaw/security-advisories/<GHSA>.
  3. Inspect the exact implicated code paths.
  4. Verify shipped state:

- git tag --sort=-creatordate | head - npm view openclaw version --userconfig "$(mktemp)" - git tag --contains <fix-commit> - if needed: git show <tag>:path/to/file

  1. Search for canonical overlap:

- existing published GHSAs - older fixed bugs - same trust-model class already covered in SECURITY.md

Review Method

For each advisory, decide:

  • close
  • keep open
  • keep open but narrow

Default to one advisory at a time when comments/closures are involved:

  1. Review exactly one GHSA.
  2. Print the GHSA URL first.
  3. Summarize the decision and evidence for discussion.
  4. Draft one maintainer-ready comment.
  5. Copy only that one comment to the clipboard.
  6. Stop and wait for Peter to post/discuss before moving to the next GHSA.

Do not batch multiple close comments unless Peter explicitly asks for a batch.

Check in this order:

  1. Trust model

- Is the prerequisite already inside trusted host/local/plugin/operator state? - Does SECURITY.md explicitly call this class out as out of scope or hardening-only?

  1. Shipped behavior

- Is the bug present in the latest shipped tag or npm release? - Was it fixed before release?

  1. Exploit path

- Does the report show a real boundary bypass, not just prompt injection, local same-user control, or helper-level semantics? - If data only moves between trusted workspace-memory files called out in SECURITY.md, do not treat "injection markers" alone as a security bug. - In that case, frame sanitization as optional hardening only if it preserves expected memory workflows.

  1. Functional tradeoff

- If a hardening change would reduce intended user functionality, call that out before proposing it. - Prefer fixes that preserve user workflows over deny-by-default regressions unless the boundary demands it.

  1. Hardening follow-up

- Even when the GHSA should close, ask whether a narrow hardening change would reduce footguns without changing the documented trust boundary. - Separate hardening from vulnerability status. Phrase it as "not required for GHSA closure, but worth considering". - Bring up hardening only if it is concrete, low-risk, and preserves intended maintainer/operator workflows. - If hardening would require a product/security model change, say that explicitly and do not imply it is a required fix for closure.

Response Format

When preparing a maintainer-ready close reply:

  1. Print the GHSA URL first.
  2. Then draft a detailed response the maintainer can post.
  3. Include:

- exact reason for close - exact code refs - exact shipped tag / release facts - exact fix commit or canonical duplicate GHSA when applicable - optional hardening note only if worthwhile and functionality-preserving

Keep tone firm, specific, non-defensive.

Discussion Mode

When Peter is manually posting GHSA comments, use this flow:

  1. Show the URL.
  2. Give a terse verdict (close, keep open, or keep open but narrow).
  3. List the strongest evidence bullets.
  4. State any optional hardening follow-up separately from the close reason.
  5. Copy the proposed comment body with pbcopy.
  6. End the reply after the one advisory. Do not continue to the next advisory until Peter says to continue.

If the GitHub API cannot post comments for private advisories, say so once and keep using clipboard/UI paste.

Clipboard Step

After drafting the final post body for the current advisory, copy it:

pbcopy <<'EOF'
<final response>
EOF

Tell the user that the clipboard now contains the proposed response for that advisory.

Useful Commands

gh api /repos/openclaw/openclaw/security-advisories/<GHSA>
gh api /repos/openclaw/openclaw/security-advisories --paginate
git tag --sort=-creatordate | head -n 20
npm view openclaw version --userconfig "$(mktemp)"
git tag --contains <commit>
git show <tag>:<path>
gh search issues --repo openclaw/openclaw --match title,body,comments -- "<terms>"
gh search prs --repo openclaw/openclaw --match title,body,comments -- "<terms>"

Decision Notes

  • “fixed on main, unreleased” is usually not a close.
  • “needs attacker-controlled trusted local state first” is usually out of scope.
  • “same-host same-user process can already read/write local state” is usually out of scope.
  • “trusted workspace memory promotes/reindexes trusted workspace memory” is usually out of scope unless it crosses a documented boundary.
  • “helper function behaves differently than documented config semantics” is usually invalid.
  • If only the severity is wrong but the bug is real, keep it open and narrow the impact in the reply.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.27%
按下载量换算302

Claude

28.06%
按下载量换算233

Cursor

18.36%
按下载量换算153

Gemini CLI

8.51%
按下载量换算71

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills