my-check

Run type checks with npx tsc --noEmit and analyze optimization opportunities.

Updated May 8, 2026
One-click install
npx skills add https://github.com/mike2ox/my-claude-code-config --skill my-check
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: my-check
Source: https://github.com/mike2ox/my-claude-code-config/tree/main/skills/my-check
Command: npx skills add https://github.com/mike2ox/my-claude-code-config --skill my-check

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires npx, tsc, and includes scripts (resource) components.

What problem does it solve?

This Skill helps maintain code quality by performing type checking and reviewing optimization opportunities, ensuring code reliability and efficiency.

Core Features & Use Cases

  • Type Checking: Execute type checks to verify code integrity.
  • Optimization Review: Analyze and suggest opportunities for code optimization.
  • Use Case: After completing a coding task, the Skill can be used to ensure the code adheres to type standards and optimize performance where possible.

Quick Start

Run type checking for the current codebase with npx tsc --noEmit and analyze optimization opportunities using the code-reviewer subagent.

Frequently Asked Questions about my-check

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

FAQPage Schema
How do I perform type checking and source code analysis in a software development workflow?

You can perform type checking by executing `npx tsc --noEmit` to verify code integrity against type standards, followed by analyzing the source code to identify optimization opportunities and maintain performance.

What does executing `npx tsc --noEmit` do for code quality optimization?

Executing `npx tsc --noEmit` performs type checking on your current codebase without generating output files, ensuring adherence to type standards and helping to identify opportunities for code quality optimization.

Do I need npx and tsc installed to run code optimization reviews?

Yes, npx and tsc are required dependencies to execute type checking and analyze optimization opportunities within your source code development workflow.

When should I run type checking and optimization analysis on my codebase?

Type checking and optimization analysis should be run after completing a coding task to ensure the new code adheres to type standards and to review opportunities for performance optimization before finalizing.

Can I review code optimization opportunities without generating compiled output files?

Yes, you can review optimization opportunities without compiled output by running type checking with `npx tsc --noEmit`. This verifies source code integrity and analyzes potential improvements directly during development.