Automatic enforcement of TypeScript/JavaScript coding style, ESLint standards, type safety, and modern patterns. Use when writing TypeScript or React code to ensure strict type safety and modern ES2024+ patterns.
Enforces TypeScript strict mode, ESLint standards, and modern ES2024+ patterns when writing TypeScript or React code. Automatically applies strict type safety, proper naming conventions, and eliminates anti-patterns like `any` types and implicit returns.
/plugin marketplace add jpoutrin/product-forge/plugin install frontend-experts@product-forge-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill enforces TypeScript strict mode, ESLint standards, and modern patterns for frontend development.
any: Use unknown or proper types// Types/Interfaces: PascalCase
interface UserProfile { }
// Functions/variables: camelCase
function calculateTotal() { }
const userName = "john";
// Booleans: is/has/can/should prefix
const isLoading = true;
const hasPermission = false;
// Prefer union types over enums
type Status = "pending" | "active" | "completed";
// Use as const for constant objects
const HttpStatus = {
Ok: 200,
NotFound: 404,
} as const;
// Discriminated unions
type Result<T> =
| { success: true; data: T }
| { success: false; error: Error };
// Typed props
interface ButtonProps {
label: string;
onClick: () => void;
disabled?: boolean;
}
// Typed hooks
const [isOpen, setIsOpen] = useState(false);
// Typed event handlers
const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => {};
any type== instead of ===This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.