lint

Run linting, formatting, and type checks with auto-fix and strict mode.

1|Updated Jan 16, 2026
One-click install
npx skills add https://github.com/coreindustries/core-ai-template --skill lint-coreindustries
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lint
Source: https://github.com/coreindustries/core-ai-template/tree/main/.claude/skills/lint
Command: npx skills add https://github.com/coreindustries/core-ai-template --skill lint-coreindustries

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates the process of checking code quality, ensuring it adheres to established standards for linting, formatting, and type correctness, preventing common errors and maintaining a clean codebase.

Core Features & Use Cases

  • Comprehensive Checks: Runs linting, formatting, and type checking in sequence.
  • Targeted Execution: Allows specifying files or directories for checks.
  • Auto-Fixing: Can automatically correct formatting and linting issues.
  • CI/CD Integration: Supports a strict mode for failing builds on warnings in CI environments.
  • Use Case: Before committing code, run /lint to catch any style violations or potential bugs, then use /lint --fix to automatically resolve them.

Quick Start

Run the lint skill to check code quality for the entire project.

Frequently Asked Questions about lint

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

FAQPage Schema
How do I run code quality checks for linting, formatting, and type checking?

You can automatically fix formatting and linting issues by running the lint command with the auto-fix flag, which corrects style violations without manual intervention.

Can I enforce strict code standards for CI environments?

Yes, you can enforce strict code standards in CI environments by enabling strict mode, which fails builds upon detecting warnings to prevent merging non-compliant code.

How do I target specific files or directories for linting?

You can target specific files or directories for linting by specifying them as targets when executing the lint command, restricting checks to those paths.

Does the lint skill integrate with project-specific commands defined in technology markdown files?

Yes, the lint skill integrates with project-specific commands defined in prd/00_technology.md to execute customized linting, formatting, and type checking workflows.