Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.
89
89%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Risky
Do not use without reviewing
Welcome to the Developer Kit TypeScript Plugin documentation. This plugin provides comprehensive tools for TypeScript, JavaScript, NestJS, React, React Native, and monorepo development.
The Developer Kit TypeScript Plugin provides:
developer-kit-typescript/
├── agents/ # TypeScript, NestJS, React agents
├── commands/ # TypeScript commands (devkit.typescript.*, devkit.react.*, devkit.ts.*)
├── skills/ # TypeScript skills
│ ├── nestjs/ # NestJS framework skill
│ ├── react-patterns/ # React patterns skill
│ ├── shadcn-ui/ # shadcn/ui component library skill
│ ├── tailwind-css-patterns/ # Tailwind CSS skill
│ ├── typescript-docs/ # TypeScript documentation skill
│ ├── zod-validation-utilities/ # Zod v4 validation utilities
│ ├── clean-architecture/ # Clean Architecture patterns
│ ├── better-auth/ # Better Auth integration (NestJS + Next.js)
│ ├── nextjs-app-router/ # Next.js App Router
│ ├── nextjs-authentication/ # Next.js Authentication
│ ├── nextjs-data-fetching/ # Next.js Data Fetching
│ ├── nextjs-performance/ # Next.js Performance
│ ├── nextjs-deployment/ # Next.js Deployment
│ ├── drizzle-orm-patterns/ # Drizzle ORM patterns
│ ├── dynamodb-toolbox-patterns/ # DynamoDB-Toolbox v2 patterns
│ ├── nestjs-drizzle-crud-generator/ # NestJS CRUD generator with Drizzle
│ ├── nx-monorepo/ # Nx monorepo patterns
│ ├── turborepo-monorepo/ # Turborepo monorepo patterns
│ ├── aws-lambda-typescript-integration/ # AWS Lambda TypeScript integration
│ ├── aws-cdk/ # AWS CDK infrastructure-as-code
│ ├── nestjs-code-review/ # NestJS code review
│ ├── nextjs-code-review/ # Next.js code review
│ ├── react-code-review/ # React code review
│ └── typescript-security-review/ # TypeScript security review
└── docs/ # This documentation.build() command workflows for CRUD operations (GetItem, PutItem, UpdateItem, DeleteItem)item, string, number, list, set, map, record types.key(), .required(), .default(), .transform(), .link()error option (z.uuid(), z.email(), z.url())z.coerce.*) for uncertain input typespreprocess and transform for data normalizationrefine and superRefine for custom validation logiczodResolverz.input/z.output type inference for transformed schemasThe TypeScript plugin ships with four Claude Code hooks that run automatically during development sessions. All hooks are written in pure Python 3 (no external dependencies) and follow the same exit-code contract as the core plugin.
| Hook script | Event | Blocking? | Purpose |
|---|---|---|---|
ts-session-context.py | PreToolUse (first call) | No | Injects git branch, commits, and TODO.md into context |
ts-file-validator.py | PostToolUse (Write) | Yes (exit 2) | Enforces kebab-case naming for .ts/.tsx files |
ts-pattern-validator.py | PostToolUse (Write) | No (advisory) | Warns on anti-patterns and missing NestJS decorators |
ts-quality-gate.py | Stop | Yes (exit 2) | Runs tsc --noEmit and eslint on modified files |
| Code | Meaning | Behavior |
|---|---|---|
0 | Success | Proceed silently |
1 | Warning / context | Show stdout to Claude; continue |
2 | Error / violation | Show stderr to Claude; block until fixed |
ts-session-context.py)Fires once per session (first PreToolUse event) and outputs:
TODO.md if presentts-file-validator.py)Fires after every Write call that produces a .ts or .tsx file. Blocks (exit 2) if the base filename is not kebab-case:
# ✅ Valid
user-profile.service.ts
auth-token.controller.ts
create-user.dto.ts
# ❌ Blocked — must be renamed
UserProfile.service.ts → user-profile.service.ts
authToken.controller.ts → auth-token.controller.tsindex.ts, declaration files (.d.ts), and files inside node_modules, dist, build etc. are exempt.
ts-pattern-validator.py)Fires after every Write call on a TypeScript file. Emits non-blocking advisories (exit 1) for:
.controller.ts without @Controllerany, @ts-ignore, @ts-nocheck, require(), console.* in production codenew SomeService() / new SomeRepository().controller.tsts-quality-gate.py)Fires on every Stop event. Runs against the TypeScript project in CLAUDE_CWD:
npx tsc --noEmit — type-checks the whole projectnpx eslint <modified-files> — lints only the files modified in the current sessionnpx nx affected --target=lint — for Nx monoreposExits with code 2 (blocking) if type errors or lint errors are found, code 1 for warnings, code 0 on clean.
docs
plugins
developer-kit-ai
developer-kit-aws
agents
docs
skills
aws
aws-cli-beast
aws-cost-optimization
aws-drawio-architecture-diagrams
aws-sam-bootstrap
aws-cloudformation
aws-cloudformation-auto-scaling
aws-cloudformation-bedrock
aws-cloudformation-cloudfront
aws-cloudformation-cloudwatch
aws-cloudformation-dynamodb
aws-cloudformation-ec2
aws-cloudformation-ecs
aws-cloudformation-elasticache
references
aws-cloudformation-iam
references
aws-cloudformation-lambda
aws-cloudformation-rds
aws-cloudformation-s3
aws-cloudformation-security
aws-cloudformation-task-ecs-deploy-gh
aws-cloudformation-vpc
references
developer-kit-core
agents
commands
skills
developer-kit-devops
developer-kit-java
agents
commands
docs
skills
aws-lambda-java-integration
aws-rds-spring-boot-integration
aws-sdk-java-v2-bedrock
aws-sdk-java-v2-core
aws-sdk-java-v2-dynamodb
aws-sdk-java-v2-kms
aws-sdk-java-v2-lambda
aws-sdk-java-v2-messaging
aws-sdk-java-v2-rds
aws-sdk-java-v2-s3
aws-sdk-java-v2-secrets-manager
clean-architecture
graalvm-native-image
langchain4j-ai-services-patterns
references
langchain4j-mcp-server-patterns
references
langchain4j-rag-implementation-patterns
references
langchain4j-spring-boot-integration
langchain4j-testing-strategies
langchain4j-tool-function-calling-patterns
langchain4j-vector-stores-configuration
references
qdrant
references
spring-ai-mcp-server-patterns
spring-boot-actuator
spring-boot-cache
spring-boot-crud-patterns
spring-boot-dependency-injection
spring-boot-event-driven-patterns
spring-boot-openapi-documentation
spring-boot-project-creator
spring-boot-resilience4j
spring-boot-rest-api-standards
spring-boot-saga-pattern
spring-boot-security-jwt
assets
references
scripts
spring-boot-test-patterns
spring-data-jpa
references
spring-data-neo4j
references
unit-test-application-events
unit-test-bean-validation
unit-test-boundary-conditions
unit-test-caching
unit-test-config-properties
references
unit-test-controller-layer
unit-test-exception-handler
references
unit-test-json-serialization
unit-test-mapper-converter
references
unit-test-parameterized
unit-test-scheduled-async
references
unit-test-service-layer
references
unit-test-utility-methods
unit-test-wiremock-rest-api
references
developer-kit-php
developer-kit-project-management
developer-kit-python
developer-kit-specs
commands
docs
hooks
test-templates
tests
skills
developer-kit-tools
developer-kit-typescript
agents
docs
hooks
rules
skills
aws-cdk
aws-lambda-typescript-integration
better-auth
clean-architecture
drizzle-orm-patterns
dynamodb-toolbox-patterns
references
nestjs
nestjs-best-practices
nestjs-code-review
nestjs-drizzle-crud-generator
nextjs-app-router
nextjs-authentication
nextjs-code-review
nextjs-data-fetching
nextjs-deployment
nextjs-performance
nx-monorepo
react-code-review
react-patterns
shadcn-ui
tailwind-css-patterns
tailwind-design-system
references
turborepo-monorepo
typescript-docs
typescript-security-review
zod-validation-utilities
references
github-spec-kit