lint

Automate linting and code-quality checks for Ruby and ERB files.

3|1|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/i3ringit/antigravity-cortex --skill lint-i3ringit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint
Source: https://github.com/i3ringit/antigravity-cortex/tree/main/.agent/skills/lint
Command: npx skills add https://github.com/i3ringit/antigravity-cortex --skill lint-i3ringit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates linting and code-quality checks for Ruby and ERB files, helping teams catch style and security issues before pushing changes.

Core Features & Use Cases

  • Static analysis: Runs standardrb to enforce Ruby style and code quality.
  • Template linting: Uses erblint to ensure clean ERB templates.
  • Security checks: Runs brakeman to identify vulnerabilities in Rails apps.
  • Workflow integration: Integrates into pre-commit or CI pipelines to reduce code quality regressions.

Quick Start

Use the lint skill to scan a Ruby/ERB project and report issues for remediation.

Frequently Asked Questions about lint

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I catch Ruby code quality issues before committing?

Linting enforces style and security standards automatically. This skill runs standardrb for Ruby style, erblint for ERB templates, and brakeman for Rails vulnerabilities in pre-commit or CI workflows, flagging issues for remediation before code reaches version control.

Can I use linting to find security vulnerabilities in Rails apps?

Yes. Brakeman scans Rails applications for known security issues and unsafe patterns. Combined with standardrb and erblint, this skill provides layered analysis covering style, template quality, and security in a single workflow.

How do I integrate code quality checks into my CI pipeline?

This skill automates linting and code-quality checks for Ruby and ERB files within CI workflows. It applies standardrb, erblint, and brakeman to scan code, report issues, and optionally auto-fix violations without manual intervention.

What's the difference between checking Ruby code style and checking for security issues?

Style linting enforces formatting and conventions; security analysis identifies vulnerabilities and unsafe code patterns. This skill combines both: standardrb and erblint handle style, while brakeman detects security risks specific to Rails applications.

Do I need separate tools to lint Ruby and ERB templates?

This skill unifies linting for both: standardrb analyzes Ruby files, erblint handles ERB template quality, and brakeman checks Rails security. Running them together reduces complexity and catches issues across your full codebase in one pass.