Token导航 LogoToken导航TokenDH.com
运维和基础设施只读github未标认证来源可访问clear审计异常

rubocoprubocop 命令行

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

8

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/el-feo/ai-context --skill rubocop

简介

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

  • 适用于 Ruby 项目的代码风格检查与规范维护。
  • 可通过 npx 命令从 el-feo/ai-context 仓库安装并集成。
  • 使用前应确保运行环境已安装 Ruby 及相关依赖。
  • 功能实现需结合 RuboCop 官方文档与本项目配置确认。

SKILL.md

RuboCop Code Analysis & Formatting

RuboCop is Ruby's premier static code analyzer (linter) and formatter, based on the community-driven Ruby Style Guide. This skill enables comprehensive code analysis, automatic formatting, and enforcement of coding standards across Ruby projects including Rails applications.

When to Use This Skill

Claude automatically uses this skill when users:

  • Ask to "check", "lint", "analyze", or "review" Ruby code
  • Request code formatting or style improvements
  • Want to enforce coding standards or style guidelines
  • Need to detect potential bugs or code smells
  • Ask about RuboCop configuration or setup
  • Request Rails, RSpec, or performance-specific analysis
  • Want to run autocorrections on Ruby code

Core Capabilities

Code Analysis & Linting

  • Detects style violations, bugs, and code smells across all cop departments
  • Supports Rails, RSpec, Performance, and custom cop extensions
  • Provides detailed offense reports with line numbers and descriptions

Automatic Code Correction

  • Safe autocorrection (-a) for guaranteed-safe fixes
  • Unsafe autocorrection (-A) for broader but riskier corrections
  • Layout-only fixes (-x) for formatting without logic changes

Configuration & Customization

  • Flexible .rubocop.yml configuration
  • Per-project and per-directory configuration inheritance
  • Selective cop enabling/disabling and severity adjustment
  • Custom cop development support

Extension Integration

  • rubocop-rails: Rails best practices and conventions
  • rubocop-rspec: RSpec-specific analysis
  • rubocop-performance: Performance optimization checks

Quick Analysis Workflow

Run Basic Analysis

# Analyze current directory
rubocop

# Analyze specific files/directories
rubocop app spec lib/important_file.rb

# Show only correctable offenses
rubocop --display-only-correctable

Apply Corrections

# Safe autocorrection only (recommended)
rubocop -a

# All corrections including unsafe
rubocop -A

# Layout/formatting corrections only
rubocop -x

# Autocorrect specific cops
rubocop -a --only Style/StringLiterals,Layout/TrailingWhitespace

Targeted Analysis

# Run only specific cops
rubocop --only Style/StringLiterals,Naming/MethodName

# Run all cops except specified
rubocop --except Metrics/MethodLength

# Run only lint cops
rubocop --lint

# Check only Rails-specific issues
rubocop --only Rails

Configuration Essentials

Basic.rubocop.yml Setup

# Enable extensions
plugins:
  - rubocop-rails
  - rubocop-rspec
  - rubocop-performance

AllCops:
  TargetRubyVersion: 3.2
  NewCops: enable  # Auto-enable new cops
  Exclude:
    - 'db/schema.rb'
    - 'vendor/**/*'
    - 'node_modules/**/*'

# Adjust specific cops
Style/StringLiterals:
  EnforcedStyle: double_quotes

Metrics/MethodLength:
  Max: 15
  Exclude:
    - 'spec/**/*'

Common Configuration Patterns

Inherit from shared config:

inherit_from:
  - .rubocop_todo.yml
  - config/rubocop_defaults.yml

Rails-specific settings:

Rails:
  Enabled: true

Rails/ApplicationRecord:
  Enabled: true
  Exclude:
    - 'db/migrate/**'

RSpec configuration:

RSpec/ExampleLength:
  Max: 10

RSpec/MultipleExpectations:
  Max: 3

Analysis Interpretation

Understanding Offense Output

app/models/user.rb:15:3: C: Style/StringLiterals: Prefer single-quoted strings...
  name = "John Doe"
         ^^^^^^^^^^

Format breakdown:

  • app/models/user.rb:15:3 - File path, line number, column number
  • C: - Severity (C=Convention, W=Warning, E=Error, F=Fatal)
  • Style/StringLiterals - Cop department and name
  • Message explains the issue and often suggests fixes

Severity Levels

  • Convention (C): Style/formatting issues
  • Warning (W): Potential problems that should be reviewed
  • Error (E): Definite problems that need fixing
  • Fatal (F): Syntax errors preventing analysis

Common Workflows

Initial Project Setup

# Generate initial configuration
rubocop --init

# Generate .rubocop_todo.yml for existing violations
rubocop --auto-gen-config

# Use todo file to gradually fix issues
# .rubocop.yml:
inherit_from: .rubocop_todo.yml

Pre-commit Integration

# Check staged files only
git diff --name-only --cached | grep '\.rb$' | xargs rubocop

# With autocorrection
git diff --name-only --cached | grep '\.rb$' | xargs rubocop -a

CI/CD Integration

# Exit with error code if offenses found
rubocop --format progress --fail-level warning

# Generate formatted reports
rubocop --format json --out rubocop-report.json
rubocop --format html --out rubocop-report.html

Parallel Execution

# Use all available CPUs (enabled by default)
rubocop --parallel

# Limit CPU usage
PARALLEL_PROCESSOR_COUNT=2 rubocop

Extension-Specific Features

Rails Analysis

Detects Rails-specific issues:

  • ActiveRecord best practices
  • Controller and routing conventions
  • Migration safety checks
  • SQL injection risks

RSpec Analysis

Enforces RSpec best practices:

  • Example organization and naming
  • Let vs instance variable usage
  • Expectation patterns
  • Test file structure

Performance Analysis

Identifies performance optimizations:

  • Inefficient collection methods
  • String concatenation issues
  • Unnecessary array allocations
  • Regex compilation optimizations

Troubleshooting

"Unknown cop" errors:

  • Ensure required gems are installed (rubocop-rails, rubocop-rspec, etc.)
  • Add to .rubocop.yml: plugins: [rubocop-rails]

Autocorrection not working:

  • Some cops don't support autocorrection
  • Use -A for unsafe corrections
  • Check cop is enabled in configuration

Performance issues:

  • Use --parallel for faster execution
  • Add UseCache: true under AllCops in config
  • Exclude large generated files

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.62%
按下载量换算73

Codex

23.77%
按下载量换算59

windsurf

15.93%
按下载量换算39

OpenCode

10.77%
按下载量换算27

Antigravity

7.25%
按下载量换算18

github-copilot

2.92%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills