smithery/applelamps

lint-typecheck

Run ESLint and TypeScript type checking on the frontend codebase. Use when user mentions "lint", "type check", "check code", "eslint", "tsc", or before committing changes.

Installation

$ npx skills add smithery/applelamps --skill lint-typecheck

Also in this package

Other skills from smithery/applelamps.

npx skills add smithery/applelamps

Browse all from smithery/applelamps

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

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,021 B
  • docs SUMMARY.md 193 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Lint and Type Check

Instructions

  1. Navigate to frontend directory and run lint:

``bash cd frontend && npm run lint ``

  1. Run TypeScript compilation check (no emit):

``bash cd frontend && npx tsc -b --noEmit ``

  1. If errors are found:

- List all errors with file locations - Offer to fix auto-fixable ESLint issues: npm run lint -- --fix - For TypeScript errors, identify the type mismatches

  1. Report summary: X lint warnings, Y lint errors, Z type errors

Examples

  • "Run lint on the frontend"
  • "Check for type errors"
  • "Validate code before commit"

Guardrails

  • Run in read-only mode first; only apply --fix with user confirmation
  • Do not modify tsconfig.json to suppress errors
  • Report all issues before attempting fixes