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

meta-audit元审计

Agent Skill

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

总安装

1,346

周安装

55

GitHub Stars

28

下载量

436
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill meta-audit

简介

meta-audit 用于辅助安全审计、权限检查、凭据风险和认证流程分析。

  • 适合让 Agent 梳理敏感配置、检查依赖风险或生成安全复核清单。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 使用时不能将工具输出直接作为最终结论,涉及密钥、令牌或生产系统时应先确认最小权限和操作边界。
  • meta-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Context

  • Agent definitions:!find.claude/agents -name "*.md" -not -name "settings*"
  • Settings file:!find.claude/agents -maxdepth 1 -name "settings.local.json" -type f

Your task

1. Discovery Phase

  • Use Glob to find all agent definition files in .claude/agents/
  • Read each agent file to extract frontmatter and configuration
  • Identify the settings.local.json for permission overrides

2. Frontmatter Validation

For each agent, verify required fields are present:

  • name: Agent identifier (must match filename)
  • model: Claude model to use (e.g., "claude-opus-4-7")
  • color: Hex color code for UI (e.g., "#E53E3E")
  • description: Clear usage guidance with "Use proactively when..."
  • tools: Tool list or "All" for full access

Flag issues:

  • Missing required fields
  • Mismatched name vs filename
  • Invalid model names
  • Malformed color codes

3. Tool Assignment Analysis

Evaluate tool assignments for security and appropriateness:

Read-only agents (should NOT have write access):

  • research-documentation
  • code-analysis (read only)
  • code-review (read + LSP only)
  • security-audit (read + LSP + Bash for scanning)

Write-enabled agents (appropriate write access):

  • code-refactoring (Edit, MultiEdit)
  • documentation (Write, MultiEdit)
  • cicd-pipelines (Write, Edit, GitHub)

Special privileges (validate necessity):

  • Bash access (security-audit, system-debugging, cicd-pipelines, test-architecture)
  • GitHub access (cicd-pipelines, commit-review)
  • Zen MCP access (system-debugging only)
  • All tools access (should be rare, validate justification)

LSP tool assignments (language-specific):

  • Verify LSP tools match agent's language focus
  • security-audit should have broad LSP coverage (6+ servers)
  • code-review should have multi-language LSP support
  • code-analysis should have appropriate LSP access

4. Security Assessment

Check for potential security issues:

Overprivileged agents:

  • Agents with "All" tools without clear justification
  • Read-only agents with write/edit capabilities
  • Unnecessary Bash or GitHub access
  • Research agents with modification permissions

Missing restrictions:

  • settings.local.json should have deny rules for destructive operations
  • Allow list should be minimal and specific
  • No wildcard tool access unless justified

Privilege escalation risks:

  • Agents that can modify other agent configs
  • Agents with both read and execute permissions
  • Cross-agent permission leakage

5. Consistency Checks

Validate configuration consistency:

Naming conventions:

  • Agent names use kebab-case
  • Filenames match agent names
  • Descriptions follow consistent format

Model assignments:

  • All agents use appropriate Claude models
  • No deprecated model references
  • Consistent model selection strategy

Tool groupings:

  • Similar agents have similar tool sets
  • No duplicate or redundant tool assignments
  • Clear separation of concerns

6. Report Generation

Create comprehensive audit report with:

Executive Summary:

  • Total agents audited
  • Critical issues found
  • Security concerns
  • Overall health rating

Detailed Findings:

  • Critical: Missing required fields, security violations
  • ⚠️ Warnings: Overprivileged agents, inconsistencies
  • ℹ️ Info: Best practice suggestions, optimization opportunities

Agent-by-Agent Analysis: For each agent, report:

  • Configuration completeness (✅/❌ for each required field)
  • Tool assignment appropriateness (✅/⚠️/❌)
  • Security assessment (safe/review/risk)
  • Recommendations for improvement

Action Items:

  • Immediate fixes required (with file paths and line numbers)
  • Optional improvements
  • Configuration validation passed/failed

7. Output Format

Structure the report as:

# Claude Agent Configuration Audit

## Executive Summary

- **Total Agents**: X
- **Configuration Issues**: Y
- **Security Concerns**: Z
- **Health Rating**: [EXCELLENT|GOOD|NEEDS_WORK|CRITICAL]

## Critical Issues

[List any critical problems requiring immediate fix]

## Agent Analysis Table

| Agent      | Model | Tools    | Color | Status    | Notes  |
| ---------- | ----- | -------- | ----- | --------- | ------ |
| agent-name | ✅/❌ | ✅/⚠️/❌ | ✅/❌ | PASS/FAIL | Issues |

## Security Assessment

[Tool privilege analysis and security concerns]

## Recommendations

[Prioritized action items with file paths]

## Detailed Findings

[Per-agent breakdown with specific issues]

8. Best Practices Reference

Tool access principles:

  • Least privilege principle for tool access
  • Clear separation between read-only and write-enabled agents
  • Appropriate LSP tool coverage for language-specific work
  • Minimal Bash access (only when required)
  • Restricted GitHub access (only for git-ops and CI/CD)

Configuration standards:

  • All required frontmatter fields present
  • Consistent model selections across agents
  • Appropriate tool permissions for agent role
  • Clear descriptions with proactive usage guidance

9. Optional: Verbose Mode

If --verbose flag is provided:

  • Show full frontmatter for each agent
  • Display complete tool lists
  • Include settings.local.json content
  • Provide detailed fix commands for each issue

Notes

  • This is a read-only audit - modifications require explicit user request
  • Focus on configuration correctness and security implications
  • Provide actionable recommendations with specific file locations
  • Use TodoWrite to track audit progress if checking multiple agents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.93%
按下载量换算139

Claude

31.3%
按下载量换算136

Cursor

18.12%
按下载量换算79

Gemini CLI

9.58%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill meta-audit 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills