check

check is a skill for Claude Code from go-to-k/cdkd. It costs 21 tokens per session (1,670 once invoked), scanned A, original, Apache-2.0.

A local project check that runs type checking, code-style checks, formatting, builds, and tests.

In plain words
What is it for?
Use it during development to verify that the current code works and to apply automatic formatting or fixes where supported.
Why use it?
It catches problems before code is sent to continuous integration—the automated checks run by a project after changes are submitted.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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/go-to-k/cdkd/check
Any agent
npx skills add go-to-k/cdkd --skill check
Clone the repo
git clone --depth 1 https://github.com/go-to-k/cdkd

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 check

README.md
[![agentmods](https://agentmods.dev/badge/skills/go-to-k/cdkd/check.svg)](https://agentmods.dev/skills/go-to-k/cdkd/check)
Your own site
<a href="https://agentmods.dev/skills/go-to-k/cdkd/check"><img src="https://agentmods.dev/badge/skills/go-to-k/cdkd/check.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,670 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.00021 $0.01670
Opus 5 $0.00010 $0.00835
Sonnet 5 $0.00004 $0.00334
Haiku 4.5 $0.00002 $0.00167

Measured 2d ago against content hash 994b5cfdc43b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

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 2d ago.

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.

.claude/skills/check/SKILL.md · 129 lines

How it starts

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

Local Quality Check

Run all local quality checks. Use during development to verify the current state quickly.

Steps

Run these sequentially and report results:

  1. Worktree pre-flight: [ -d node_modules ] || pnpm install --frozen-lockfile. git worktree add does NOT copy node_modules, and in a fresh worktree vp check fails with an UNNAMED typescript(tsconfig-error): Invalid tsconfig — Cannot find type definition file for 'node', which reads like a broken fixture tsconfig. (/verify-pr step 0 has the same pre-flight; this copy exists because /check is usually the FIRST skill run in a fresh worktree.)

  2. vp check --fix — typecheck + lint + Prettier, with auto-fix. Then vp run check — the EXACT command CI's check-build-test job runs. The two are NOT equivalent: vp check --fix has passed 0-errors while vp run check failed with a TS7053 on the same tree (PR #1372). Use this, not vp run lint:fixlint:fix does not touch Prettier, so a lint:fix-only run passes locally while CI fails Formatting issues found (PR #363). Run both; CI parity comes from the second.

  3. vp run typecheck:test — type-checks tsconfig.test.json (tests/**). vp check only type-checks tsconfig.json (src + types), which excludes **/*.test.ts — a wrong import type or stale mock shape in a test file passes vp check AND vp test (whose "Type Errors" line covers only *.test-d.ts). This step matches how CI fails them (issue #1133).

  4. vp run build

    Before step 4, regenerate the generated artifacts — UNCONDITIONALLY, offline, seconds: vp run gen:all-matrices && vp run audit:coverage:check && vp run format. The suite carries a byte-for-byte guard per generated matrix, and the trigger set is wider than any condition you would write — renaming a PRIVATE provider method stales handled-property-wiring.json (issue #1417's class); a verify.sh edit with no src change stales cli-flag-coverage (measured 2026-09-03: one private helper, two red cases, green after regeneration).

Read the full file on GitHub · 129 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. 2d ago Changed · +65 lines 994b5cfdc43b
  2. 6d ago First seen · 64 lines · 21 tokens per session scan A 6299aeefc52f

Subscribe to this mod's changes

check is a skill published in the GitHub repository go-to-k/cdkd (135 stars, last pushed today), licensed Apache-2.0. It adds 21 tokens to every session and 1,670 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-08-30.

Related

Other skills, from other repositories

aws-cdk-mcp-server-mcp

AWS Cloud Development Kit (CDK) best practices, infrastructure as code patterns, and security compliance with CDK Nag.

Friz-zy/ai-capability-registry · 33 tokens

agent-squad-python

Use when building or modifying a Python app that uses the agent-squad Python package — async multi-agent orchestration for Python 3.11+: orchestrator, agents (BedrockLLMAgent, AnthropicAgent, OpenAIAgent, SupervisorAgent, GroundedAgent, ChainAgent, and more), classifier routing (Bedrock, Anthropic, OpenAI), storage…

2FastLabs/agent-squad · 113 tokens

agent-squad-typescript

Use when building or modifying a Node.js / TypeScript app that uses the agent-squad npm package — multi-agent orchestration: orchestrator, agents (all built-in types + GroundedAgent), classifier routing (Bedrock / Anthropic / OpenAI), storage (in-memory / DynamoDB / SQL), retrievers (Amazon KB / Dakera), and tools…

2FastLabs/agent-squad · 87 tokens

agent-squad-swift

Use when building or modifying a Swift app that uses the AgentSquad Swift framework — on-device multi-agent orchestration for iOS 16+ / macOS 14+: orchestrator, agents (Agent, GroundedAgent), classifier routing, LLM clients (OpenAI-compatible), tools (native + MCP), tool UIs/widgets, on-device storage, tracing, and…

2FastLabs/agent-squad · 91 tokens

nx-plugin-for-aws

Scaffold and build cloud-native applications on AWS using @aws/nx-plugin generators. Use when the user wants to create workspaces, generate projects, or scaffold infrastructure with the Nx Plugin for AWS.

awslabs/nx-plugin-for-aws · 46 tokens

aws-cdk-development

AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically.…

zxkane/aws-skills · 88 tokens