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

ring%3alinting-codebaseRing%3 正在检查代码库

Agent Skill

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

总安装

864

周安装

36

GitHub Stars

180

下载量

288
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ring%3alinting-codebase(Ring%3 正在检查代码库)
来源仓库:https://github.com/lerianstudio/ring
仓库路径:skills/ring%3Alinting-codebase
安装命令:
npx skills add https://github.com/lerianstudio/ring --skill ring:linting-codebase
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:linting-codebase

简介

ring%3alinting-codebase 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,实际能力以原始 README 为准。
  • 使用前请确认是否涉及敏感操作如文件读写、命令执行或外部网络请求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Linting Codebase

Overview

This skill runs lint checks on the codebase, analyzes the results to identify independent fix streams, and dispatches parallel AI agents to fix all issues. The process iterates until the codebase passes all lint checks.

Core principle: Group lint issues by file/component, dispatch one agent per independent stream, iterate until clean.

⛔ CRITICAL CONSTRAINTS

These constraints are NON-NEGOTIABLE and must be communicated to ALL dispatched agents:

┌─────────────────────────────────────────────────────────────────┐
│  🚫 DO NOT CREATE AUTOMATED SCRIPTS TO FIX LINT ISSUES         │
│  🚫 DO NOT CREATE DOCUMENTATION OR README FILES                 │
│  🚫 DO NOT ADD COMMENTS EXPLAINING THE FIXES                   │
│  ✅ FIX EACH ISSUE DIRECTLY BY EDITING THE SOURCE CODE         │
│  ✅ MAKE MINIMAL CHANGES - ONLY WHAT'S NEEDED FOR LINT         │
└─────────────────────────────────────────────────────────────────┘

Phase 1: Lint Execution

Step 1.1: Detect Lint Command

Priority: make lintnpm run lintyarn lintpnpm lintgolangci-lint runcargo clippyruff check.eslint.

Step 1.2: Run Lint

<lint_command> 2>&1 | tee /tmp/ring:lint-output.txt && echo "EXIT_CODE: $?"

Step 1.3: Parse Results

Extract: file path, line:column, error code/rule, message, severity (error/warning).

Phase 2: Stream Analysis

Step 2.1: Group Issues

Group lint issues into independent streams that can be fixed in parallel:

Grouping strategies (choose based on issue count):

Issue CountGrouping Strategy
< 10 issuesGroup by file
10-50 issuesGroup by directory
50-100 issuesGroup by error type/rule
> 100 issuesGroup by component/module

Step 2.2: Identify Independence

A stream is independent if: files don't import/depend on each other, fixes won't conflict, agents can work without knowledge of other streams.

Step 2.3: Create Stream Summary

Output format: Total issues, Streams (path, issue types, count, independence status), Recommended agents (one per stream).

Phase 3: Parallel Agent Dispatch

Step 3.1: Prepare Agent Prompts

Each agent receives: Scope (files/directories), Issues (file:line:col + message), Constraints (from Critical Constraints above), Output (files modified, issues fixed, issues unable to fix with reasons).

Step 3.2: Dispatch Agents in Parallel

CRITICAL: Single message with multiple Task tool calls - one general-purpose agent per stream.

Step 3.3: Await All Agents

Wait for all dispatched agents to complete before proceeding.

Phase 4: Verification Loop

Step 4.1: Re-run Lint

After all agents complete, run <lint_command> 2>&1.

Step 4.2: Evaluate Results

ResultAction
Lint passes✅ Done
Same issues remain⚠️ Investigate why fixes failed
New issues appeared🔄 Analyze + dispatch new agents
Fewer issues remain🔄 Create new streams, repeat

Step 4.3: Iterate If Needed

Maximum iterations: 5. If issues persist: report remaining, ask user, investigate (lint conflicts, auto-fix impossible).

Agent Dispatch Rules

DO dispatch when:

  • 3+ files have lint issues
  • Issues are in independent areas
  • Fixes are mechanical (unused vars, formatting, etc.)

DO NOT dispatch when:

  • Single file has issues → fix directly
  • Issues require architectural decisions
  • Fixes would cause breaking changes

Agent selection:

Issue TypeAgent Type
TypeScript/JavaScriptgeneral-purpose
Gogeneral-purpose or ring:backend-engineer-golang
Security lintsring:security-reviewer for analysis first
Style/formattinggeneral-purpose

Output Format

Success: Initial issues, Streams processed, Agents dispatched, Iterations, Final status (all pass), Changes by stream (files, issues fixed).

Partial: Initial/fixed/remaining issues, Iterations (max reached), Remaining issues with reasons (e.g., requires external types, intentional usage), Recommended actions (manual review, lint exceptions, type definitions).

Error Handling

ErrorResponse
Lint command not foundAsk user to specify command
Agent failureOptions: retry stream, skip, investigate manually
Conflicting changesReport file + lines, ask user to merge manually

Integration with Other Skills

SkillWhen to use
ring:dispatching-parallel-agentsPattern basis for this skill
ring:systematic-debuggingIf lint errors indicate deeper issues
ring:requesting-code-reviewAfter lint passes, before merge

Example Session

/ring:lint → Run lint → 16 issues in 3 areas → Analyze streams (API: 5, Services: 8, Utils: 3) → Dispatch 3 parallel agents → All complete → Re-run lint → ✅ All pass.

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Lint CommandNo lint command found (make lint, npm run lint, etc.)STOP and ask user to specify lint command
Agent DispatchUnable to launch parallel agents for fix streamsSTOP and report infrastructure issue
Max Iterations5 iterations completed without lint passingSTOP and report remaining issues - manual intervention needed
Conflicting ChangesMultiple agents edited same file with conflictsSTOP and report conflicts for manual merge

Cannot Be Overridden

The following requirements CANNOT be waived:

  • MUST NOT create automated scripts to fix lint issues - direct source code edits only
  • MUST NOT create documentation or README files during lint fixing
  • MUST NOT add comments explaining the fixes - minimal changes only
  • CANNOT skip re-verification after agent fixes - lint must be re-run

Severity Calibration

SeverityConditionRequired Action
CRITICALLint errors indicate security vulnerabilitiesMUST fix immediately and flag for security review
HIGHLint errors in production code pathsMUST fix before completing
MEDIUMLint warnings in non-critical codeShould fix in current iteration
LOWStyle-only lint issuesFix if time permits

Pressure Resistance

User SaysYour Response
"Just disable the lint rules that are failing""CANNOT disable lint rules to pass. I MUST fix the actual issues - disabling rules hides real problems."
"Write a script to auto-fix everything""CANNOT create automated scripts. I MUST make direct source code edits only - scripts can introduce unexpected changes."
"Skip the verification loop, the fixes should work""MUST re-run lint after all agent fixes. 'Should work' is not verification - actual lint output is required."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"Creating a fix script is more efficient"Scripts can cause unintended side effects. Direct edits are traceable and reversible.MUST make direct source code edits only
"This lint rule is too strict, disable it"Lint rules exist for reasons. Disabling hides real issues instead of fixing them.MUST fix issues, not disable rules
"Agent fixed 15/16 issues, close enough"Partial completion is not completion. All lint issues must be resolved or reported.MUST iterate until lint passes or max iterations reached
"Adding explanatory comments helps future devs"Scope is lint fixing only. Comments add noise and change file semantics.MUST NOT add comments - minimal changes only

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.58%
按下载量换算105

Claude

31.03%
按下载量换算89

Cursor

18.21%
按下载量换算52

Gemini CLI

8.26%
按下载量换算24

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills