
Security Triage
FreeEfficiently manage OpenClaw security advisories.
Free · Opens the source repo
What Security Triage does
Security Triage is a specialized skill designed for maintainers of OpenClaw, focusing on the efficient review and management of security advisories, drafts, and GHSA reports. This skill aims to enhance the confidence of maintainers during the triage process, ensuring that genuine security issues are not prematurely closed while avoiding unnecessary regressions in the software. By adhering to a structured approach, this skill helps maintainers navigate the complexities of security advisories with clarity and precision.
The skill operates on a clear set of guidelines that dictate when to close an advisory, emphasizing the importance of verifying the status of issues against the latest shipped behavior and existing advisories. It provides a systematic method for reviewing each advisory, requiring maintainers to assess the trust model, shipped behavior, exploit paths, and functional tradeoffs before making a decision. This methodical approach ensures that maintainers can make informed choices, reducing the likelihood of overlooking real vulnerabilities.
Users of this skill should familiarize themselves with the relevant documentation, including the SECURITY.md file and the GHSA reports, to effectively utilize the triage process. The skill emphasizes a one-at-a-time review strategy, promoting thoroughness and careful consideration of each advisory. This is particularly useful in environments where security is paramount, and maintainers need to balance responsiveness with caution.
Security Triage is ideal for developers and maintainers working within the OpenClaw ecosystem who are responsible for managing security advisories. It streamlines the review process, providing a clear framework that helps maintainers uphold the integrity of their projects while addressing security concerns effectively.
When to use it
Use this skill when reviewing OpenClaw security advisories to maintain high confidence in triage decisions.
When not to use it
This skill may not be suitable for projects outside of OpenClaw or for maintainers unfamiliar with the specific security protocols outlined in the documentation.
What you can build with it
Reviewing a New GHSA Report
Use the skill to assess a newly published GHSA report, ensuring a thorough evaluation of its implications on your project.
Triage Existing Security Advisories
Apply the skill to triage existing advisories, determining which can be closed based on established criteria.
Documenting Security Decisions
Utilize the skill to draft clear and concise comments for maintainers, documenting the rationale behind each triage decision.
How to install Security Triage
View source1. Install with the skills CLI
npx skills add openclaw/openclaw/security-triage --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by openclawSecurity 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:
- Read
SECURITY.md. - Read the GHSA body with
gh api /repos/openclaw/openclaw/security-advisories/<GHSA>. - Inspect the exact implicated code paths.
- Verify shipped state:
git tag --sort=-creatordate | headnpm view openclaw version --userconfig "$(mktemp)"git tag --contains <fix-commit>- if needed:
git show <tag>:path/to/file
- 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:
closekeep openkeep open but narrow
Default to one advisory at a time when comments/closures are involved:
- Review exactly one GHSA.
- Print the GHSA URL first.
- Summarize the decision and evidence for discussion.
- Draft one maintainer-ready comment.
- Copy only that one comment to the clipboard.
- 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:
- Trust model
- Is the prerequisite already inside trusted host/local/plugin/operator state?
- Does
SECURITY.mdexplicitly call this class out as out of scope or hardening-only?
- Shipped behavior
- Is the bug present in the latest shipped tag or npm release?
- Was it fixed before release?
- 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.
- 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.
- 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:
- Print the GHSA URL first.
- Then draft a detailed response the maintainer can post.
- Include:
- exact reason for close
- exact code refs
- exact shipped tag / release facts
- fix provenance or canonical duplicate GHSA when applicable
- optional hardening note only if worthwhile and functionality-preserving
Keep tone firm, specific, non-defensive.
Public Wording Hygiene
- Keep raw commit hashes, PR titles/numbers, and fix-mechanism summaries out of public advisory text. Use the patched release/version field only.
- Keep exact commit SHAs, PRs, and implementation notes in internal notes and verification files.
- For hardening/no-publish outcomes, do not add exploit-heavy details, "Fixed by" text, or a "Fix Commit(s)" section. Thank reporters, preserve credit, state the
SECURITY.mdboundary, and say clearly that the GHSA will close without publication. - For published CVE/GHSA text, prefer
### Patched Versionswith the fixed release. Do not explain how the patch works unless Peter explicitly asks for that public detail. - Keep GHSA ids out of changelog and release-note wording unless Peter explicitly asks.
Discussion Mode
When Peter is manually posting GHSA comments, use this flow:
- Show the URL.
- Give a terse verdict (
close,keep open, orkeep open but narrow). - List the strongest evidence bullets.
- State any optional hardening follow-up separately from the close reason.
- Copy the proposed comment body with
pbcopy. - 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.
Frequently asked questions about Security Triage
Similar skills
Asset Criticality Scoring for Vulns
Prioritize vulnerabilities based on asset criticality.
Performing Alert Triage with Elastic SIEM
Streamline alert triage processes in Elastic Security.
Active Directory Vulnerability Assessment
Secure your Active Directory with comprehensive assessments.
Active Directory Investigation
Streamline your Active Directory compromise investigations.
Parsing Artifacts with Eric Zimmerman Tools
Efficiently parse Windows forensic artifacts for analysis.
Operationalizing MISP Threat Feeds
Enhance threat detection with curated MISP feeds.
