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

batch-lint-cleanup批量棉绒清理

Agent Skill

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

总安装

574

周安装

23

GitHub Stars

450

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ag-grid/ag-charts --skill batch-lint-cleanup

简介

batch-lint-cleanup 用于自动修复 ESLint 违规项,支持按规则批量清理代码。

  • 适用于 ag-charts 等项目中的 JavaScript/TypeScript 代码规范维护。
  • 可报告违规分布或针对特定规则执行 fix,提升代码一致性。
  • 安装命令:npx skills add https://github.com/ag-grid/ag-charts --skill batch-lint-cleanup。
  • 修复前建议提交更改,以便必要时回滚;避免直接覆盖重要逻辑。

SKILL.md

ESLint Auto-Fix Tool

Analyze ESLint violations or fix a specific rule in isolation.

Usage

Report Mode (No Arguments)

/lint-fix

Shows top ESLint violations by count with recommendations.

Fix Mode (With Rule Name)

/lint-fix <rule-name>

Examples:

  • /lint-fix unicorn/no-zero-fractions
  • /lint-fix unicorn/prefer-number-properties
  • /lint-fix unicorn/no-array-for-each

Instructions for AI Agent

When Invoked WITHOUT Arguments (Report Mode)

  1. Run ESLint and analyze violations: nx run-many -t lint:eslint 2>&1 | tee /tmp/eslint-output.txt
  2. Count violations by rule: grep -oE 'unicorn/[a-z-]+|@typescript-eslint/[a-z-]+|no-[a-z-]+|sonarjs/[a-z-]+' /tmp/eslint-output.txt | sort | uniq -c | sort -rn | head -20
  3. Generate a formatted report showing:

- Top 10-15 violations ranked by type (error > warning) then by count - Which rules are auto-fixable (✅) vs manual (❌) - Recommended next rule to fix (highest count auto-fixable) - Brief description of what each rule fixes - Total warning/error count

  1. Format output as a table: ` ## ESLint Violations Report | Rank | Rule | Count | Auto-Fix | Description | | ---- | -------------------------------- | ----- | -------- | -------------------------------------- | | 1 | unicorn/prefer-number-properties | 170 | ✅ | Use Number.* APIs instead of globals | | 2 | unicorn/no-array-for-each | 166 | ✅ | Prefer for...of over.forEach() | | 3 | no-negated-condition | 37 | ❌ | Prefer positive conditions |... `
  2. Provide actionable recommendation: ` ### 🎯 Recommended Next Fix **unicorn/prefer-number-properties** - 170 violations - Auto-fixable: ✅ Yes - Changes: isNaN()Number.isNaN(), parseInt()Number.parseInt() - Impact: Better global scope hygiene - Risk: Low - semantically equivalent **To fix:** /lint-fix unicorn/prefer-number-properties `

When Invoked WITH Arguments (Fix Mode)

Input: Rule name (e.g., unicorn/no-zero-fractions)

CRITICAL: Isolated Fixing Strategy

Each rule MUST be fixed in complete isolation to prevent merge conflicts and allow precise review:

  1. Start fresh - ensure clean working directory
  2. Fix ONLY the specified rule - no opportunistic fixes
  3. Single commit per rule - never batch multiple rules
  4. Verify before committing - ensure fix doesn't break anything

Step-by-Step Fix Process

1. Verify Clean Working Directory

git status

If there are uncommitted changes:

  • STOP and warn user
  • Suggest they stash or commit existing changes first
  • Only proceed if user explicitly confirms

2. Attempt Auto-Fix

nx run-many -t lint:eslint -- --rule "<rule-name>: error" --fix 2>&1 | tee /tmp/lint-fix.txt

Check results:

# Count remaining violations
grep -c "<rule-name>" /tmp/lint-fix.txt || echo "0"

3. If Auto-Fix Successful

# Format all changes
yarn nx format --sort-root-tsconfig-paths=false

# Run full lint to ensure no new issues
yarn nx lint <affected-packages>

# Run type-check
yarn nx build:types <affected-packages>

If all pass:

git add -A
git commit -m "fix(lint): auto-fix <rule-name> violations"

4. If Manual Fix Required

For non-auto-fixable rules or remaining violations after auto-fix:

  1. List all remaining violations: nx run-many -t lint:eslint -- --rule "<rule-name>: error" 2>&1 | grep "<rule-name>"
  2. Group by file/pattern for efficient fixing
  3. Fix each file systematically:

- Open file - Apply fix pattern consistently - Move to next file

  1. After each batch of fixes: # Verify the fix works nx run-many -t lint:eslint -- --rule "<rule-name>: error"
  2. When complete: yarn nx format --sort-root-tsconfig-paths=false yarn nx lint <affected-packages> yarn nx build:types <affected-packages> git add -A git commit -m "fix(lint): manually fix <rule-name> violations"

Common Auto-Fixable Rules Reference

RuleAuto-FixTypical Change
unicorn/prefer-number-propertiesisNaN()Number.isNaN()
unicorn/no-array-for-each.forEach()for...of
unicorn/no-zero-fractions1.01
unicorn/prefer-string-slice.substr().slice()
@typescript-eslint/no-unused-varsRemove or use variable
no-negated-conditionInvert condition logic
sonarjs/cognitive-complexityRefactor complex function

Safety Checks

Before ANY commit:

  1. yarn nx format --sort-root-tsconfig-paths=false passes
  2. yarn nx lint <affected-packages> passes
  3. yarn nx build:types <affected-packages> passes
  4. ✅ Only files related to the rule are changed
  5. ✅ No unrelated "opportunistic" fixes included

If any check fails: STOP and report to user

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.68%
按下载量换算68

Claude

26.81%
按下载量换算50

Cursor

19.44%
按下载量换算36

Gemini CLI

8.23%
按下载量换算15

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills