typescript-check

typescript-check is a skill for Claude Code from notque/vexjoy-agent. It costs 18 tokens per session (598 once invoked), scanned A, original, MIT.

A TypeScript checker that runs the TypeScript compiler without creating output files and reports errors by file.

In plain words
What is it for?
Use it to validate TypeScript projects that have a tsconfig.json, especially after refactoring or before a commit.
Why use it?
It catches type mistakes and regressions while leaving the source code unchanged.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/notque/vexjoy-agent/typescript-check
Any agent
npx skills add notque/vexjoy-agent --skill typescript-check
Clone the repo
git clone --depth 1 https://github.com/notque/vexjoy-agent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for typescript-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/notque/vexjoy-agent/typescript-check.svg)](https://agentmods.dev/skills/notque/vexjoy-agent/typescript-check)
Your own site
<a href="https://agentmods.dev/skills/notque/vexjoy-agent/typescript-check"><img src="https://agentmods.dev/badge/skills/notque/vexjoy-agent/typescript-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 598 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.00598
Opus 5 $0.00009 $0.00299
Sonnet 5 $0.00004 $0.00120
Haiku 4.5 $0.00002 $0.00060

Measured today against content hash d679894b95ba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

typescript-check scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/code-quality/typescript-check/SKILL.md · 46 lines

How it starts

The opening of the file, as written. The whole thing — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TypeScript check

Read-only type validation. Follow repository instructions and package scripts; preserve project compiler settings. Do not fix code, change configuration, or install dependencies for a check-only request.

Run

  1. Locate tsconfig.json, including src/, app/, and packages/. In a monorepo, use the package affected by the task or the repository's aggregate check. Ask only when the target cannot be inferred. If no config exists, report the missing configuration and stop.
  2. Confirm TypeScript is installed locally before using npx; do not allow an implicit package download.
  3. Run npx tsc --noEmit 2>&1, or npx tsc --noEmit --project path/to/tsconfig.json 2>&1 for a selected config. Capture output and exit code. Zero means pass; nonzero may mean type errors or a tool/configuration failure—report which.
  4. Report status and error count. Group diagnostics by file and line, retaining file:line:column, TS####, and the message. Retain complete logs; show useful failure details instead of all successful output.

Recovery and flags

  • TypeScript missing: report it; suggest npm install typescript --save-dev within dependency setup.
  • npx missing: check node --version; when Node/npm and local TypeScript exist, use npm exec tsc -- --noEmit. Otherwise report the missing toolchain.
  • Multiple configs: list the checked configs and any omitted packages. A single-package pass is not a whole-repository pass.
  • --skipLibCheck: skips declaration-file checking; use only when configured or requested, not to hide failures.
  • --strict: adds strict checks; enable only when requested or configured.
  • --incremental: may write build-info cache files; enable only when permitted, not for a strictly read-only run.
  • Named files: passing files directly bypasses project config. Prefer --project; do not claim equivalent coverage from a narrower check.

When running the full JavaScript/TypeScript check sequence, lint first, type-check next, then run tests with vitest-runner or the repository test command.

Read the full file on GitHub · 46 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed · -124 lines d679894b95ba
  2. 2d ago First seen · 170 lines · 18 tokens per session scan A 466067697202

Subscribe to this mod's changes

typescript-check is a skill published in the GitHub repository notque/vexjoy-agent (420 stars, last pushed today), licensed MIT. It adds 18 tokens to every session and 598 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

adk

Use this skill when you've got questions about the Botpress Agent Development Kit (ADK) - like when you're building a feature that involves tables, actions, tools, workflows, conversations, files, knowledge bases, triggers, or Zai.

majiayu000/claude-skill-registry · 34 tokens

typescript-patterns

TypeScript types: generics, discriminated unions, Zod, satisfies, branded types. Triggers: TypeScript, TS, generics, Zod, satisfies, strict mode.

softspark/ai-toolkit · 42 tokens

typescript-rules

TypeScript/JavaScript coding rules: style, patterns, security, testing. Triggers: .ts, .tsx, .js, .jsx, package.json, tsconfig.json, React, Next.js, Vue, Vite, Vitest, Jest, ESLint.

softspark/ai-toolkit · 60 tokens

valibot

Repository guidance for using Valibot as the schema validation library within the hr-skills monorepo. Use when writing or modifying schemas in packages/hr-skills-ref/src/schema.ts or packages/hr-skills-build/src/shared/schema.ts, when validating parsed YAML frontmatter, when handling safeParse results, or when…

tuanductran/hr-skills · 72 tokens

typescript

Repository guidance for writing, reviewing, and maintaining TypeScript code within the hr-skills monorepo. Covers project conventions, compiler settings, module structure, and development workflows.

tuanductran/hr-skills · 37 tokens

ai-infrastructure-ollama

Local LLM inference with the Ollama JavaScript client -- chat, streaming, tool calling, vision, embeddings, structured output, model management, and OpenAI-compatible endpoint.

agents-inc/skills · 41 tokens