Agent Skills
› nicknisi/claude-plugins
› security-audit
security-audit
GitHub在用户明确要求时,调度 security-auditor 代理对当前分支与 main 的差异进行深度安全漏洞审计。该技能不自动触发,需显式调用。
Trigger Scenarios
用户明确要求进行安全审计
用户请求检查分支变更中的漏洞
Install
npx skills add nicknisi/claude-plugins --skill security-audit -g -y
SKILL.md
Frontmatter
{
"name": "security-audit",
"description": "Dispatch the security-auditor agent on the current branch diff with pre-gathered context. User-invocable only — does not auto-trigger on ambiguous phrasing. Use when you explicitly want a deep vulnerability audit of branch changes.",
"disable-model-invocation": true
}
Security Audit
Launches the security-auditor agent (from this plugin) with pre-loaded
branch context, so the agent does not have to assemble scope itself.
Pre-gathered Context
- Current branch: !
git rev-parse --abbrev-ref HEAD - Diff summary vs main: !
git diff main...HEAD --stat - Commits on branch: !
git log main..HEAD --oneline - PR metadata (if open): !
gh pr view --json title,body,comments 2>/dev/null || echo "no open PR for this branch"
Task
Dispatch the security-auditor agent via the Task tool with the context
above. Scope the audit to the branch diff shown.
Output
Report back the agent's findings verbatim. Do not summarize or re-rank — the agent's Phase 6 output is already the final report format.
Version History
- c3164c9 Current 2026-07-24 21:11


