lint

Lint Ruby and ERB files with standardrb, erblint, and brakeman.

2|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/CristoVentures/LocalCents --skill lint-cristoventures
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint
Source: https://github.com/CristoVentures/LocalCents/tree/main/.agent/skills/lint
Command: npx skills add https://github.com/CristoVentures/LocalCents --skill lint-cristoventures

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Linting and code-quality checks for Ruby and ERB files to ensure clean, consistent code before merging or pushing.

Core Features & Use Cases

  • Lint Ruby code with standardrb and lint ERB templates with erblint to catch style and syntax issues.
  • Security checks with brakeman to detect vulnerabilities in Rails/Ruby projects.
  • Use Case: Before pushing changes, run automated checks to identify and fix lint issues and potential security problems across Ruby and ERB files.

Quick Start

Run linting on your repository to identify and fix Ruby and ERB issues before pushing changes.

Frequently Asked Questions about lint

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

FAQPage Schema
How do I automate Ruby and ERB linting before pushing changes?

Automate Ruby and ERB linting by running automated checks in pre-commit and pre-push workflows. This process identifies and helps fix style and syntax issues across Ruby files and ERB templates before merging or pushing changes to ensure clean, consistent code.

What's the best way to run security scanning for vulnerabilities in Rails projects?

Security scanning for Rails projects is best handled using brakeman to detect potential vulnerabilities. Running these security checks alongside Ruby and ERB linting before pushing changes ensures both code quality and security issues are identified and resolved early.

Do I need standardrb and erblint installed to lint Ruby files locally?

Yes, you need standardrb and erblint installed to lint Ruby files locally. These dependencies are required to catch style and syntax issues in Ruby code and ERB templates, providing structured outputs for remediation guidance during pre-commit workflows.

Can I use pre-commit hooks for both style checks and security scanning?

Yes, you can use pre-commit hooks for both style checks and security scanning. This automated workflow applies standardrb for Ruby, erblint for ERB templates, and brakeman for security, generating structured outputs to guide the remediation of detected issues before pushing.