smithery/korallis

standards-enforcement

Establish and enforce coding standards, best practices, and architectural patterns across the codebase using linters, formatters, and code review processes.

Installation

$ npx skills add smithery/korallis --skill standards-enforcement

Summary

  • Establish and enforce coding standards, best practices, and architectural patterns across the codebase using linters, formatters, and code review processes.
  • Use when setting up ESLint/Prettier, configuring linting rules, creating code style guides, implementing pre-commit hooks, establishing naming conventions, enforcing TypeScript strict mode, maintaining consistency, conducting architecture reviews, or defining team coding standards.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/korallis · top by installs.

npx skills add smithery/korallis

Browse all from smithery/korallis

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,051 B
  • docs SUMMARY.md 468 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Standards Enforcement - Maintaining Code Quality

When to use this skill

  • Setting up ESLint, Prettier, and code formatters
  • Configuring linting rules and code standards
  • Creating team code style guides
  • Implementing pre-commit hooks with Husky
  • Establishing naming conventions
  • Enforcing TypeScript strict mode
  • Maintaining code consistency across team
  • Conducting code review for standards compliance
  • Defining architectural patterns and rules
  • Setting up import ordering and organization
  • Enforcing test coverage requirements
  • Creating and maintaining coding guidelines

When to use this skill

  • Setting up project guidelines, code reviews, enforcing best practices, maintaining consistency.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Setting up project guidelines, code reviews, enforcing best practices, maintaining consistency.

Tools

ESLint

{
  "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
  "rules": {
    "no-console": "warn",
    "no-unused-vars": "error",
    "@typescript-eslint/no-explicit-any": "error"
  }
}

Prettier

{
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5"
}

Husky + lint-staged

{
  "lint-staged": {
    "*.{js,ts,tsx}": ["eslint --fix", "prettier --write"],
    "*.{json,md}": ["prettier --write"]
  }
}

Resources