audit
Run project audits - i18n, env, deps, docker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run project audits - i18n, env, deps, docker
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatically implement all sub-issues of an epic in dependency order
Implement a GitHub issue with automated PR creation
End-of-session retrospective. Captures knowledge from any working session (debug, implementation, config, deployment) as reusable scripts, CLAUDE.md procedures, or skill proposals. Run before ending a session to prevent knowledge loss.
Decompose a large GitHub issue into sub-issues and create a tracking draft PR
OWASP-guided security code review for a specific domain or issue
Project kickoff checklist based on lessons learned from previous projects. Generates a tailored checklist and optionally creates GitHub issues.
| name | audit |
| description | Run project audits - i18n, env, deps, docker |
| argument-hint | [i18n|env|deps|docker|all] |
| user-invocable | true |
Run one or more project audits to check for common issues before deployment.
For security-specific audits (OWASP, secrets, headers), use /security-audit instead.
Audit type: $ARGUMENTS (default: all)
Valid values: i18n, env, deps, docker, all
Run the requested audit(s). When $ARGUMENTS is empty or all, run all audits that are applicable (skip those that exit with code 2 — no relevant files found).
i18n — Translation key audit:
~/.claude/bin/i18n-audit.py
Finds missing/unused/inconsistent i18n keys. Only applicable to frontend projects with locale files.
env — Environment variable audit:
~/.claude/bin/env-audit.sh
Checks .env vs .env.example sync, empty values, secrets in git. Only applicable if .env.example exists.
deps — Dependency vulnerability audit:
~/.claude/bin/deps-audit.sh
Runs npm audit and/or pip-audit. Requires package-lock.json or pyproject.toml.
docker — Docker configuration audit:
~/.claude/bin/docker-audit.sh
Checks for unpinned images, missing health checks, root users, hardcoded secrets.
npm audit fix or package updates