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

codebase-audit-pre-push代码库审计预推送

Agent Skill

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

总安装

1,656

周安装

69

GitHub Stars

35,885

下载量

552
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill codebase-audit-pre-push

简介

codebase-audit-pre-push 作为推送前的最终审查工具,全面检查即将上线的代码质量和安全性。

  • 适用于首次推送、公开发布或部署前的高标准校验,确保符合工程规范和安全要求。
  • 自动清理冗余代码、修复格式问题并标记关键缺陷,实现“发现问题即修正”的工作流。
  • 操作前应评估其对文件系统的写入权限,避免误改重要配置或触发意外构建行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Pre-Push Codebase Audit

As a senior engineer, you're doing the final review before pushing this code to GitHub. Check everything carefully and fix problems as you find them.

When to Use This Skill

  • User requests "audit the codebase" or "review before push"
  • Before making the first push to GitHub
  • Before making a repository public
  • Pre-production deployment review
  • User asks to "clean up the code" or "optimize everything"

Your Job

Review the entire codebase file by file. Read the code carefully. Fix issues right away. Don't just note problems—make the necessary changes.

Audit Process

1. Clean Up Junk Files

Start by looking for files that shouldn't be on GitHub:

Delete these immediately:

  • OS files: .DS_Store, Thumbs.db, desktop.ini
  • Logs: *.log, npm-debug.log*, yarn-error.log*
  • Temp files: *.tmp, *.temp, *.cache, *.swp
  • Build output: dist/, build/, .next/, out/, .cache/
  • Dependencies: node_modules/, vendor/, __pycache__/, *.pyc
  • IDE files: .idea/, .vscode/ (ask user first), *.iml, .project
  • Backup files: *.bak, *_old.*, *_backup.*, *_copy.*
  • Test artifacts: coverage/, .nyc_output/, test-results/
  • Personal junk: TODO.txt, NOTES.txt, scratch.*, test123.*

Critical - Check for secrets:

  • .env files (should never be committed)
  • Files containing: password, api_key, token, secret, private_key
  • *.pem, *.key, *.cert, credentials.json, serviceAccountKey.json

If you find secrets in the code, mark it as a CRITICAL BLOCKER.

2. Fix.gitignore

Check if the .gitignore file exists and is thorough. If it’s missing or not complete, update it to include all junk file patterns above. Ensure that .env.example exists with keys but no values.

3. Audit Every Source File

Look through each code file and check:

Dead Code (remove immediately):

  • Commented-out code blocks
  • Unused imports/requires
  • Unused variables (declared but never used)
  • Unused functions (defined but never called)
  • Unreachable code (after return, inside if (false))
  • Duplicate logic (same code in multiple places—combine)

Code Quality (fix issues as you go):

  • Vague names: data, info, temp, thing → rename to be descriptive
  • Magic numbers: if (status === 3) → extract to named constant
  • Debug statements: remove console.log, print(), debugger
  • TODO/FIXME comments: either resolve them or delete them
  • TypeScript any: add proper types or explain why any is used
  • Use === instead of == in JavaScript
  • Functions longer than 50 lines: consider splitting
  • Nested code greater than 3 levels: refactor with early returns

Logic Issues (critical):

  • Missing null/undefined checks
  • Array operations on potentially empty arrays
  • Async functions that are not awaited
  • Promises without .catch() or try/catch
  • Possibilities for infinite loops
  • Missing default in switch statements

4. Security Check (Zero Tolerance)

Secrets: Search for hardcoded passwords, API keys, and tokens. They must be in environment variables.

Injection vulnerabilities:

  • SQL: No string concatenation in queries—use parameterized queries only
  • Command injection: No exec() with user-provided input
  • Path traversal: No file paths from user input without validation
  • XSS: No innerHTML or dangerouslySetInnerHTML with user data

Auth/Authorization:

  • Passwords hashed with bcrypt/argon2 (never MD5 or plain text)
  • Protected routes check for authentication
  • Authorization checks on the server side, not just in the UI
  • No IDOR: verify users own the resources they are accessing

Data exposure:

  • API responses do not leak unnecessary information
  • Error messages do not expose stack traces or database details
  • Pagination is present on list endpoints

Dependencies:

  • Run npm audit or an equivalent tool
  • Flag critically outdated or vulnerable packages

5. Scalability Check

Database:

  • N+1 queries: loops with database calls inside → use JOINs or batch queries
  • Missing indexes on WHERE/ORDER BY columns
  • Unbounded queries: add LIMIT or pagination
  • Avoid SELECT *: specify columns

API Design:

  • Heavy operations (like email, reports, file processing) → move to a background queue
  • Rate limiting on public endpoints
  • Caching for data that is read frequently
  • Timeouts on external calls

Code:

  • No global mutable state
  • Clean up event listeners (to avoid memory leaks)
  • Stream large files instead of loading them into memory

6. Architecture Check

Organization:

  • Clear folder structure
  • Files are in logical locations
  • No "misc" or "stuff" folders

Separation of concerns:

  • UI layer: only responsible for rendering
  • Business logic: pure functions
  • Data layer: isolated database queries
  • No 500+ line "god files"

Reusability:

  • Duplicate code → extract to shared utilities
  • Constants defined once and imported
  • Types/interfaces reused, not redefined

7. Performance

Backend:

  • Expensive operations do not block requests
  • Batch database calls when possible
  • Set cache headers correctly

Frontend (if applicable):

  • Implement code splitting
  • Optimize images
  • Avoid massive dependencies for small utilities
  • Use lazy loading for heavy components

8. Documentation

README.md must include:

  • Description of what the project does
  • Instructions for installation and execution
  • Required environment variables
  • Guidance on running tests

Code comments:

  • Explain WHY, not WHAT
  • Provide explanations for complex logic
  • Avoid comments that merely repeat the code

9. Testing

  • Critical paths should have tests (auth, payments, core features)
  • No test.only or fdescribe should remain in the code
  • Avoid test.skip without an explanation
  • Tests should verify behavior, not implementation details

10. Final Verification

After making all changes, run the app. Ensure nothing is broken. Check that:

  • The app starts without errors
  • Main features work
  • Tests pass (if they exist)
  • No regressions have been introduced

Output Format

After auditing, provide a report:

CODEBASE AUDIT COMPLETE

FILES REMOVED:
- node_modules/ (build artifact)
- .env (contained secrets)
- old_backup.js (unused duplicate)

CODE CHANGES:
[src/api/users.js]
  ✂ Removed unused import: lodash
  ✂ Removed dead function: formatOldWay()
  🔧 Renamed 'data' → 'userData' for clarity
  🛡 Added try/catch around API call (line 47)

[src/db/queries.js]
  ⚡ Fixed N+1 query: now uses JOIN instead of loop

SECURITY ISSUES:
🚨 CRITICAL: Hardcoded API key in config.js (line 12) → moved to .env
⚠️ HIGH: SQL injection risk in search.js (line 34) → fixed with parameterized query

SCALABILITY:
⚡ Added pagination to /api/users endpoint
⚡ Added index on users.email column

FINAL STATUS:
✅ CLEAN - Ready to push to GitHub

Scores:
Security: 9/10 (one minor header missing)
Code Quality: 10/10
Scalability: 9/10
Overall: 9/10

Key Principles

  • Read the code thoroughly, don't skim
  • Fix issues immediately, don’t just document them
  • If uncertain about removing something, ask the user
  • Test after making changes
  • Be thorough but practical—focus on real problems
  • Security issues are blockers—nothing should ship with critical vulnerabilities

Related Skills

  • @security-auditor - Deeper security review
  • @systematic-debugging - Investigate specific issues
  • @git-pushing - Push code after audit

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.27%
按下载量换算217

Claude

28.58%
按下载量换算158

Cursor

17.95%
按下载量换算99

Gemini CLI

9.47%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills