Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

cleanupcleanup 搜索

Agent Skill

cleanup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,505

周安装

64

GitHub Stars

公开资料未说明

下载量

527
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态和协作事项进行整理。
  • 建议结合原始 README 进一步验证具体用法和功能边界。
  • 使用前需确认权限范围和是否涉及文件读写或命令执行。
  • cleanup 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Orchestrate a full cleanup of the current working directory: review changes, verify tests, fix linting and audit issues, ensure full test coverage, propose fixes, and commit.

Usage:

  • /cleanup - Run the full cleanup workflow

Instructions:

IMPORTANT: This is an autonomous workflow. Run ALL checks and fixes yourself first, then present the results and proposed fixes to the developer at the end. Do NOT ask the developer questions during the process — only at the final approval step.

SCOPE: Focus exclusively on changes introduced by the current branch. Determine the base branch first (check .agent file for baseBranch=<value>, default to main). All review, coverage analysis, lint fixes, and test writing should target only the files and code changed between the base branch and the current state — do not flag or fix pre-existing issues in unchanged code.

  1. Review uncommitted changes:

- Run git status to see all modified, staged, and untracked files - Run git diff to see unstaged changes and git diff --cached to see staged changes - Also run git diff <base-branch>...HEAD to understand the full scope of changes on this branch - Read each changed file to understand the full context of modifications - Produce a brief summary of all changes on this branch grouped by category (new features, bug fixes, refactoring, etc.)

  1. Verify new test cases:

- Invoke the /verify-test-cases skill to check all test files modified since last push - Record any issues found (nonsensical tests, duplicates, missing coverage)

  1. Run test coverage (ONCE):

- Run the project's coverage command exactly once and save the full output. Do NOT re-run coverage later — reuse this output for all subsequent analysis. - Node.js: npm run test:coverage or npx jest --coverage or npx vitest run --coverage (check package.json scripts first) - Python: pytest --cov or coverage run -m pytest && coverage report - Rust: cargo tarpaulin or cargo llvm-cov - Go: go test -coverprofile=coverage.out./... && go tool cover -func=coverage.out - Parse the output to identify: - Overall coverage percentage - Files and lines that are NOT covered - If coverage is 100%: record as passing and move on - If coverage is below 100%: for each uncovered file/line in files changed by this branch, write the missing test cases yourself to bring coverage to 100%. Add tests to existing test files or create new ones following the project's conventions. Do not write tests for uncovered lines in files that were not touched by this branch.

  1. Fix lint issues:

- Auto-detect the project type by checking for configuration files: - package.json (Node.js/JS/TS) - pyproject.toml, setup.py, requirements.txt (Python) - Cargo.toml (Rust) - go.mod (Go) - Use the auto-fix command when available: - Node.js/JS/TS: - Check package.json scripts for a lint:fix script. If found, run npm run lint:fix - Otherwise, check for ESLint and run npx eslint. --fix - Check for Prettier and run npx prettier --write. - Python: - Check for ruff and run ruff check --fix. then ruff format. - Or check for black and run black. - Or check for autopep8 and run autopep8 --in-place --recursive. - Rust: - Run cargo fmt and cargo clippy --fix --allow-dirty - Go: - Run gofmt -w. and go vet./... - Record any remaining lint issues that could not be auto-fixed

  1. Run auditing and fix issues:

- Node.js: Run npm audit. If vulnerabilities are found, run npm audit fix. If that is not enough, note remaining issues but do NOT run npm audit fix --force automatically - Python: Run pip audit if available. Note any vulnerabilities found - Rust: Run cargo audit if available. Note any vulnerabilities found - Go: Run govulncheck./... if available. Note any vulnerabilities found - Record any audit issues that could not be auto-fixed

  1. Present proposed fixes and improvements: Display a full summary of everything that was done and found. Then use the AskUserQuestion tool with multiSelect: true to let the developer choose which fixes and improvements to apply. The developer is NOT choosing which of their own changes to commit — they are choosing which of the agent's proposed fixes/improvements to accept. Group the items by category: Example question format: "Which fixes/improvements do you want to apply?" Options: - "Lint fixes: 5 files auto-formatted by ESLint" - "Coverage: added tests for 3 uncovered files (85% → 100%)" - "Audit fix: updated lodash 4.17.20 → 4.17.21" - "Test quality: fixed 2 incorrect test descriptions" If there are more items than fit in 4 options, group them logically (e.g., "All lint fixes (8 files)" as one option).

- Lint fixes applied — files auto-formatted by the linter - Coverage fixes — new or updated test files written to reach 100% coverage - Audit fixes applied — dependency changes from audit fix - Test quality issues — issues found by verify-test-cases (with proposed corrections) - Unfixable issues — anything that could not be auto-fixed (for awareness only)

  1. Apply selected fixes:

- For fixes the developer approved: keep the changes - For fixes the developer rejected: revert those specific changes using git restore <file> or by undoing the edits - Stage all approved changes with git add

  1. Handle edge cases:

- If there are no uncommitted changes, inform the user and STOP - If no lint tools are detected, skip the lint step and note it in the summary - If no audit tools are detected, skip the audit step and note it in the summary - If no coverage tool is detected, skip the coverage step and note it in the summary - If the /verify-test-cases skill reports no test files modified, skip that section in the summary - If all checks pass with no fixes needed, skip the approval step and go straight to the commit options - If the developer rejects all fixes, commit the developer's original changes only (no fixes)

Example output format:

## Cleanup Summary

### Changes Reviewed
- 3 files modified, 1 file added
- New feature: user profile endpoint
- Bug fix: corrected date parsing in utils

### Lint
✅ 5 files auto-fixed by ESLint
⚠️ 1 issue could not be auto-fixed:
  - src/api.ts:42 — Unexpected any. Specify a different type.

### Test Verification
✅ All test cases verified — no issues found

### Coverage (from single run)
⚠️ Coverage at 87% — missing coverage in:
  - src/services/auth.ts (lines 45-62)
  - src/utils/parser.ts (lines 12-18)
✅ Wrote 2 new test files to cover missing lines

### Audit
✅ npm audit fix applied — resolved 2 vulnerabilities
⚠️ 1 moderate vulnerability remains (no auto-fix available)

---

[Approval checklist: developer picks which fixes to keep]

---

✅ Committed: "Add user profile endpoint, fix date parsing, and improve test coverage"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.65%
按下载量换算183

Claude

34.18%
按下载量换算180

Cursor

18.49%
按下载量换算97

Gemini CLI

10.38%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills