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

pre-push预推

Agent Skill

pre-push 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,544

周安装

65

GitHub Stars

公开资料未说明

下载量

541
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/morphet81/cheat-sheets --skill pre-push

简介

pre-push 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • pre-push 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Run pre-push checks to ensure code quality before pushing to remote.

Usage:

  • /pre-push - Run all pre-push checks for the current project

Instructions:

  1. Check for npm pre-push script:

- Look for package.json in the current directory - If found, check if it has a pre-push script in the scripts section - If the script exists, run npm run pre-push and report the results - If successful, inform the user and STOP here

  1. If no pre-push script exists, auto-detect and run checks in parallel: a. Identify project type: b. Detect available checks (linting, tests, build) for the project type. Then run independent checks in parallel using the Task tool (subagent_type: general-purpose) with run_in_background: true: c. Linting checks: d. Test checks: e. Build checks:

- Check for package.json (Node.js/JavaScript/TypeScript project) - Check for pyproject.toml, setup.py, requirements.txt (Python project) - Check for Cargo.toml (Rust project) - Check for go.mod (Go project) - Check for other language-specific files - Spawn one agent per independent check category (e.g., linting agent, test agent, build agent) - Checks that don't depend on each other should run concurrently — typically linting and tests are independent, while build may depend on type-checking - Node.js/JavaScript/TypeScript: - Check for ESLint: eslint in package.json scripts or .eslintrc* file - Check for Prettier: prettier in package.json scripts or .prettierrc* file - Check for TypeScript: tsc in package.json scripts or tsconfig.json file - Run: npm run lint or npx eslint. or npm run type-check or npx tsc --noEmit - Python: - Check for: pylint, flake8, black, mypy, ruff - Run available linters (e.g., pylint src/, flake8., black --check., mypy.) - Rust: - Run: cargo fmt --check and cargo clippy - Go: - Run: go fmt./... and golint./... or go vet./... - Node.js: Check for test scripts in package.json - Run: npm test or npm run test:ci (if available) - Python: - Check for: pytest, unittest, nose2 - Run: pytest or python -m pytest or python -m unittest discover - Rust: - Run: cargo test - Go: - Run: go test./... - If applicable, try building the project to ensure no compilation errors - Node.js: npm run build (if script exists) - Rust: cargo build - Go: go build./...

  1. Report results:

- Wait for all parallel agents to complete and aggregate their results - Provide a clear summary of all checks performed - Report pass/fail status for each check - If any checks fail, show the errors and suggest fixes - Include the commands that were run for transparency - If all checks pass, confirm the code is ready to push

  1. Handle edge cases:

- If no tests or linting tools are detected, warn the user and ask if they want to proceed without checks - If commands fail due to missing dependencies, suggest installation commands - If in a monorepo or workspace, detect and handle appropriately

Example output format:

## Pre-Push Checks

### Linting
ESLint passed
Prettier check passed
TypeScript compilation passed

### Testing
All tests passed (24 tests, 0 failures)

### Build
Build successful

---

All pre-push checks passed! Code is ready to push.

Commands run:
- npm run lint
- npm test
- npm run build

On failure:

## Pre-Push Checks

### Linting
ESLint failed

Error in src/components/Button.tsx:
  15:7  error  'onClick' is missing in props validation  react/prop-types

### Testing
All tests passed

---

Pre-push checks failed. Please fix the issues above before pushing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.55%
按下载量换算187

Claude

29.8%
按下载量换算161

Cursor

18.07%
按下载量换算98

Gemini CLI

9.71%
按下载量换算53

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills