Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

proactive-audit主动审计

Agent Skill

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

总安装

665

周安装

28

GitHub Stars

25

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill proactive-audit

简介

proactive-audit 用于辅助安全审计、权限检查和常见漏洞排查。

  • 适合梳理敏感配置、分析鉴权逻辑或生成安全复核清单。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中调用以支持风险识别。
  • 不能将工具输出直接作为最终结论,需确认最小权限和操作边界。
  • 涉及密钥或生产系统时,应先评估脱敏方式和执行环境安全性。

SKILL.md

Proactive Audit

Overview

Automated health checks for framework artifacts that were modified during the current pipeline. This skill fills the gap between reactive verification (tests, lint) and proactive framework-level validation (wiring, syntax, security patterns).

Core principle: Framework artifact changes require the same rigor as code changes. If a skill was created, verify it is wired. If a hook was modified, verify it compiles. If an agent was changed, verify its tool/skill lists are consistent.

When to Invoke

Invoke this skill as the final pipeline step whenever ANY of the following paths were created, modified, or deleted during the session:

  • .claude/hooks/**/*.cjs
  • .claude/skills/**/SKILL.md
  • .claude/agents/**/*.md
  • .claude/workflows/**/*.md
  • .claude/schemas/**/*.json
  • .claude/templates/**/*
  • .claude/CLAUDE.md
  • .claude/lib/routing/routing-table.cjs

Invocation:

Skill({ skill: 'proactive-audit' });

Mandatory Skills

SkillPurposeWhen
task-management-protocolTrack audit progressAlways
ripgrepFast targeted artifact searchDuring checks
code-semantic-searchPattern discovery across artifactsWhen investigating
context-compressorCompress large audit resultsWhen output is large
verification-before-completionGate completion on zero CRITICALBefore marking done
memory-searchCheck prior audit patternsAt start

Step 1: Detect Changed Artifacts

Use git diff to identify which framework artifacts changed in this session:

# Primary: git diff against recent commits
git diff --name-only HEAD~5 -- .claude/hooks/ .claude/skills/ .claude/agents/ .claude/workflows/ .claude/schemas/ .claude/templates/ .claude/CLAUDE.md .claude/lib/routing/

# Secondary: check unstaged changes
git diff --name-only -- .claude/hooks/ .claude/skills/ .claude/agents/ .claude/workflows/ .claude/schemas/ .claude/templates/

# Tertiary: check untracked files
git ls-files --others --exclude-standard .claude/hooks/ .claude/skills/ .claude/agents/ .claude/workflows/ .claude/schemas/ .claude/templates/

Combine all three lists into a deduplicated set of changed artifact paths.

Step 2: Apply Check Matrix

For each changed artifact, apply the relevant checks from this matrix:

Hook Files (.claude/hooks/**/*.cjs)

Check IDCheckCommandSeverity
H-01Syntax validitynode --check <file>CRITICAL
H-02SE-02: raw JSON.parse without safeParseJSONgrep -n "JSON.parse(" <file> then verify safeParseJSON importHIGH
H-03SE-01: shell injection via shell: truegrep -n "shell:\\s*true" <file>HIGH
H-04Hook registered in settings.jsongrep "<hook-filename>".claude/settings.jsonMEDIUM
H-05Exit code correctnessVerify try/catch wrapping, exit 0 on non-critical errorsMEDIUM

H-02 detail: If JSON.parse( is found, check if the file also imports safeParseJSON from .claude/lib/utils/safe-json.cjs. If not, flag as HIGH finding. Exclude test files (*.test.cjs).

Skill Files (.claude/skills/**/SKILL.md)

Check IDCheckCommandSeverity
S-01Skill appears in skill-catalog.mdgrep "<skill-name>".claude/docs/skill-catalog.mdHIGH
S-02At least one agent has skill in frontmattergrep -r "<skill-name>".claude/agents/ --include="*.md"MEDIUM
S-03Skill appears in CLAUDE.md Section 8.5grep "<skill-name>".claude/CLAUDE.mdMEDIUM
S-04SKILL.md has valid frontmatterVerify name:, description:, version: fields existMEDIUM
S-05Validate skills (if available)pnpm validate:skills 2>&1LOW

Agent Files (.claude/agents/**/*.md)

Check IDCheckCommandSeverity
A-01Agent appears in agent-registry.jsongrep "<agent-name>".claude/context/agent-registry.jsonHIGH
A-02Agent's skills: list references existing skillsFor each skill in frontmatter, verify .claude/skills/<skill>/SKILL.md existsMEDIUM
A-03Agent's tools: list contains only valid toolsVerify each tool name against known tool listMEDIUM
A-04Agent appears in CLAUDE.md routing tablegrep "<agent-name>".claude/CLAUDE.mdMEDIUM

Workflow Files (.claude/workflows/**/*.md)

Check IDCheckCommandSeverity
W-01Workflow referenced in WORKFLOW_AGENT_MAP.mdgrep "<workflow-name>".claude/docs/@WORKFLOW_AGENT_MAP.mdMEDIUM
W-02Referenced agents existFor each agent name in workflow, verify agent file existsMEDIUM

Schema Files (.claude/schemas/**/*.json)

Check IDCheckCommandSeverity
SC-01Valid JSON syntaxnode -e "JSON.parse(require('fs').readFileSync('<file>', 'utf8'))"CRITICAL
SC-02Schema appears in schema-catalog.mdgrep "<schema-name>".claude/context/artifacts/catalogs/schema-catalog.mdMEDIUM

Root Cleanliness Check

ls -1 | grep -cvE '^(\.|node_modules|src|tests|scripts|dist|build|docs|package\.json|package-lock\.json|pnpm-lock\.yaml|tsconfig|eslint|prettier|jest|vitest|README|LICENSE|CHANGELOG|CLAUDE\.md|\.env)'

FAIL if the count is greater than 0.

Known slop patterns (any of these in project root = FAIL):

  • *-debug*.txt, *-debug*.log, debug-*.json
  • dump-*.cjs, dump-*.js, dump-*.json
  • rename_*.cjs, revert_*.cjs, update_*.cjs
  • test-out.txt, lint-output.txt, eslint.json, errors.json
  • UUID-named files (e.g. a3f2c1b0-*.json)
  • new_session_analysis.md or any *.analysis.md not under .claude/context/
  • Any .cjs/.js/.mjs not referenced in package.json scripts or tracked project source
  • Any .md not named README.md, CLAUDE.md, LICENSE, or CHANGELOG.md

Action when FAIL:

  1. Delete the offending files (or move to .claude/context/tmp/ if content may be needed)
  2. Log deletion to session-gap-log.jsonl with type: "cleanup"
  3. Append a reflection-spawn-request.json entry with trigger: "ai-slop-found" so the root cause is investigated

Reference: .claude/rules/cleanup-always.md

Documentation Staleness Check

After any feature work, verify:

  1. CHANGELOG.md — does it have an entry dated within the last session?

- Check: git log --oneline -5 vs grep "## \[" CHANGELOG.md | head -3 - FAIL if: feature commits exist but no matching CHANGELOG entry

  1. .env.example — does it document all env vars in the codebase?

- Check: grep -r "process.env\.".claude/skills/.claude/hooks/ | grep -oP "process\.env\.\K\w+" | sort -u - Compare against entries in .env.example - FAIL if: env var used in code but not documented in .env.example

  1. README.md — are agent/skill counts current?

- Check counts in README vs jq '.agents | length'.claude/context/agent-registry.json - WARN if counts diverge by more than 2

Routing Files (.claude/lib/routing/routing-table.cjs, .claude/CLAUDE.md)

Check IDCheckCommandSeverity
R-01routing-table.cjs syntaxnode --check.claude/lib/routing/routing-table.cjsCRITICAL
R-02Validate skills (full)pnpm validate:skills 2>&1MEDIUM

Step 3: Generate Report

Write a structured report to .claude/context/reports/ecosystem-audit/proactive-audit-{ISO-date}.md with this format:

<!-- Agent: qa | Task: #N | Session: YYYY-MM-DD -->

# Proactive Audit Report

**Date:** YYYY-MM-DD
**Artifacts Scanned:** N
**Findings:** N CRITICAL, N HIGH, N MEDIUM, N LOW
**Overall:** PASS | FAIL

## Changed Artifacts

- path/to/artifact1 (type: hook)
- path/to/artifact2 (type: skill)

## Findings

### CRITICAL

| ID   | File          | Check  | Detail                 | Remediation      |
| ---- | ------------- | ------ | ---------------------- | ---------------- |
| H-01 | hooks/foo.cjs | Syntax | SyntaxError at line 42 | Fix syntax error |

### HIGH

| ID   | File          | Check | Detail                                      | Remediation                                               |
| ---- | ------------- | ----- | ------------------------------------------- | --------------------------------------------------------- |
| H-02 | hooks/bar.cjs | SE-02 | JSON.parse at line 15 without safeParseJSON | Import safeParseJSON from .claude/lib/utils/safe-json.cjs |

### MEDIUM

(same table format)

### PASS

| ID   | File          | Check  | Result |
| ---- | ------------- | ------ | ------ |
| H-01 | hooks/baz.cjs | Syntax | OK     |

## Summary

- Total checks run: N
- Passed: N
- Failed: N
- Pass rate: N%

Step 4: Return Verdict

After generating the report:

  • If ANY CRITICAL findings exist: return FAIL with the report path and list of critical findings
  • If ANY HIGH findings exist: return WARN with the report path and list of high findings
  • If only MEDIUM/LOW findings: return PASS with the report path and note about medium findings
  • If no findings: return PASS with the report path

Iron Laws

  1. ALWAYS run every applicable check from the check matrix — skipping "small" changes is how undetected wiring failures accumulate across sessions.
  2. NEVER trust task metadata alone for change detection — use git diff as the primary source of changed artifact paths.
  3. NEVER report PASS without actually executing each check command — self-attested PASS without evidence violates verification-before-completion.
  4. NEVER ignore SE-02 (prototype pollution) findings in hook files — a single compromised hook can corrupt all subsequent tool calls in the pipeline.
  5. ALWAYS validate hook syntax with node --check before reporting findings — broken hooks silently block the entire tool pipeline.

Anti-Patterns

Anti-PatternWhy It FailsCorrect Approach
Skipping checks for "small" changesSmall wiring failures accumulate silently until a pipeline breaksRun all checks regardless of perceived change size
Trusting task metadata for change detectionMetadata can be incomplete or stale; misses unstaged changesUse git diff --name-only + git ls-files --others as primary source
Self-attesting PASS without running commandsUnverified PASS masks real failures; violates verification-before-completionExecute every check command and capture output as evidence
Ignoring SE-02 (prototype pollution) in hooksOne polluted hook corrupts Object.prototype globally across all tool callsFlag SE-02 as HIGH severity and block pipeline until fixed
Reporting findings without remediation stepsDevelopers know what broke but not how to fix itInclude specific remediation for every finding with file+line reference

Severity Guide

SeverityMeaningAction Required
CRITICALFramework will breakFix immediately, block pipeline completion
HIGHSecurity risk or invisible artifactFix before next session, warn user
MEDIUMMissing integration, incomplete wiringFix in follow-up task
LOWBest practice violation, cosmeticTrack for future improvement

Integration with Router Step 0.7

The router invokes this skill via Step 0.7 in the Router Output Contract (CLAUDE.md Section 0.1). The router:

  1. Detects that framework artifacts were modified during the pipeline
  2. Spawns a QA agent with this skill as the final pipeline step
  3. Reads the audit report
  4. If CRITICAL findings: spawns developer to fix them before claiming completion
  5. If HIGH findings: warns user and notes findings in pipeline summary
  6. If PASS: proceeds to claim pipeline completion

Related Skills

  • verification-before-completion -- General evidence-based completion gates
  • checklist-generator -- IEEE 1028 quality checklists
  • sharp-edges -- Known hazard patterns (SE-01 through SE-07)

Related References

  • .claude/context/plans/proactive-audit-design-2026-02-22.md -- Design document
  • .claude/rules/security.md -- SE-01 and SE-02 patterns
  • .claude/rules/artifact-integration.md -- Must-have integration requirements

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.79%
按下载量换算76

Claude

31.03%
按下载量换算72

Cursor

18.34%
按下载量换算43

Gemini CLI

9.65%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills