AI SummaryEnforces TypeScript type safety with zero `any` types policy and provides both standard and watch mode type checking for the server package. Developers building type-safe TypeScript applications benefit from automated strict type validation.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "TypeScript Type Check" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (5 files) mkdir -p .claude/skills/dev && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/dev/SKILL.md "https://raw.githubusercontent.com/Dexploarer/hyper-forge/main/.claude/commands/dev/typecheck.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/dev/build.md "https://raw.githubusercontent.com/Dexploarer/hyper-forge/main/.claude/commands/dev/build.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/dev/dev.md "https://raw.githubusercontent.com/Dexploarer/hyper-forge/main/.claude/commands/dev/dev.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/dev/format.md "https://raw.githubusercontent.com/Dexploarer/hyper-forge/main/.claude/commands/dev/format.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/dev/lint.md "https://raw.githubusercontent.com/Dexploarer/hyper-forge/main/.claude/commands/dev/lint.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Run TypeScript type checking
TypeScript Type Check
Run TypeScript compiler to verify type safety. ZERO any types policy enforced.
Standard Check
`bash !cd ${WORKSPACE_DIR}/packages/server && echo "=== TypeScript Type Check ===" && bun run typecheck 2>&1 && echo -e "\n✅ No type errors" || (echo -e "\n❌ Type errors found - run /fix-types to resolve" && exit 1) `
Watch Mode
`bash !cd ${WORKSPACE_DIR}/packages/server && echo "=== TypeScript Watch Mode ===" && echo "Watching... (Press Ctrl+C to stop)" && bun tsc --noEmit --watch `
Strict Mode Rules
Per CLAUDE.md coding standards: • NO implicit any types • NO unknown without narrowing • Strict null checks enabled • No unused locals • Exact optional property types • All public functions must have return types All type errors must be fixed before deployment.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster