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

impeccable-audit无可挑剔的审计

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sebastiaanwouters/dotagents --skill impeccable-audit

简介

用于辅助安全审计和权限检查。impeccable-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合梳理敏感配置和分析鉴权逻辑。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 不能将工具输出直接作为最终结论。
  • 涉及密钥或用户数据时应确认最小权限和操作边界。
  • 安装前建议检查凭据风险和脱敏方式。

SKILL.md

Impeccable /audit

Run the original Impeccable /audit workflow in a skills-only environment.

  • Apply frontend-design principles as baseline guardrails.
  • Treat command arguments mentioned by the user as scope hints.
  • Ask clarifying questions when context is missing.

Run systematic quality checks and generate a comprehensive audit report with prioritized issues and actionable recommendations. Don't fix issues - document them for other commands to address.

First: Use the frontend-design skill for design principles and anti-patterns.

Diagnostic Scan

Run comprehensive checks across multiple dimensions:

  1. Accessibility (A11y) - Check for:

- Contrast issues: Text contrast ratios < 4.5:1 (or 7:1 for AAA) - Missing ARIA: Interactive elements without proper roles, labels, or states - Keyboard navigation: Missing focus indicators, illogical tab order, keyboard traps - Semantic HTML: Improper heading hierarchy, missing landmarks, divs instead of buttons - Alt text: Missing or poor image descriptions - Form issues: Inputs without labels, poor error messaging, missing required indicators

  1. Performance - Check for:

- Layout thrashing: Reading/writing layout properties in loops - Expensive animations: Animating layout properties (width, height, top, left) instead of transform/opacity - Missing optimization: Images without lazy loading, unoptimized assets, missing will-change - Bundle size: Unnecessary imports, unused dependencies - Render performance: Unnecessary re-renders, missing memoization

  1. Theming - Check for:

- Hard-coded colors: Colors not using design tokens - Broken dark mode: Missing dark mode variants, poor contrast in dark theme - Inconsistent tokens: Using wrong tokens, mixing token types - Theme switching issues: Values that don't update on theme change

  1. Responsive Design - Check for:

- Fixed widths: Hard-coded widths that break on mobile - Touch targets: Interactive elements < 44x44px - Horizontal scroll: Content overflow on narrow viewports - Text scaling: Layouts that break when text size increases - Missing breakpoints: No mobile/tablet variants

  1. Anti-Patterns (CRITICAL) - Check against ALL the DON'T guidelines in the frontend-design skill. Look for AI slop tells (AI color palette, gradient text, glassmorphism, hero metrics, card grids, generic fonts) and general design anti-patterns (gray on color, nested cards, bounce easing, redundant copy).

CRITICAL: This is an audit, not a fix. Document issues thoroughly with clear explanations of impact. Use other commands (normalize, optimize, harden, etc.) to fix issues after audit.

Generate Comprehensive Report

Create a detailed audit report with the following structure:

Anti-Patterns Verdict

Start here. Pass/fail: Does this look AI-generated? List specific tells from the skill's Anti-Patterns section. Be brutally honest.

Executive Summary

  • Total issues found (count by severity)
  • Most critical issues (top 3-5)
  • Overall quality score (if applicable)
  • Recommended next steps

Detailed Findings by Severity

For each issue, document:

  • Location: Where the issue occurs (component, file, line)
  • Severity: Critical / High / Medium / Low
  • Category: Accessibility / Performance / Theming / Responsive
  • Description: What the issue is
  • Impact: How it affects users
  • WCAG/Standard: Which standard it violates (if applicable)
  • Recommendation: How to fix it
  • Suggested command: Which command to use (e.g., /normalize, /optimize, /harden)

Critical Issues

[Issues that block core functionality or violate WCAG A]

High-Severity Issues

[Significant usability/accessibility impact, WCAG AA violations]

Medium-Severity Issues

[Quality issues, WCAG AAA violations, performance concerns]

Low-Severity Issues

[Minor inconsistencies, optimization opportunities]

Patterns & Systemic Issues

Identify recurring problems:

  • "Hard-coded colors appear in 15+ components, should use design tokens"
  • "Touch targets consistently too small (<44px) throughout mobile experience"
  • "Missing focus indicators on all custom interactive components"

Positive Findings

Note what's working well:

  • Good practices to maintain
  • Exemplary implementations to replicate elsewhere

Recommendations by Priority

Create actionable plan:

  1. Immediate: Critical blockers to fix first
  2. Short-term: High-severity issues (this sprint)
  3. Medium-term: Quality improvements (next sprint)
  4. Long-term: Nice-to-haves and optimizations

Suggested Commands for Fixes

Map issues to appropriate commands:

  • "Use /normalize to align components with design system (addresses 23 theming issues)"
  • "Use /optimize to improve performance (addresses 12 performance issues)"
  • "Use /harden to improve i18n and text handling (addresses 8 edge cases)"

IMPORTANT: Be thorough but actionable. Too many low-priority issues creates noise. Focus on what actually matters.

NEVER:

  • Report issues without explaining impact (why does this matter?)
  • Mix severity levels inconsistently
  • Skip positive findings (celebrate what works)
  • Provide generic recommendations (be specific and actionable)
  • Forget to prioritize (everything can't be critical)
  • Report false positives without verification

Remember: You're a quality auditor with exceptional attention to detail. Document systematically, prioritize ruthlessly, and provide clear paths to improvement. A good audit makes fixing easy.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.11%
按下载量换算24

Claude

30.28%
按下载量换算20

Cursor

17.87%
按下载量换算12

Gemini CLI

9.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills