agent-skills
01Plugin Claude Code
Plugin marketplace listing 1 plugin: agent-skills.
Plugin Claude Code
Plugin marketplace listing 1 plugin: agent-skills.
Plugin Claude Code
House coding conventions as self-contained agent-skills- skills, commands, and a reviewer agent for TypeScript/React/Next.js — adapt to each repo's layout and toolchain.
Agent
Reviews code changes against the house conventions (naming, component/hook patterns, flat trees, boundaries, error keys, styling). Use proactively after writing or modifying TypeScript/React code.
Command
Design and build a React component the house way — role and states first, props API before markup, composition over new primitives, no speculative flexibility.
Command
Plan and build a new feature the house way — user journey and business logic first, atomic UI decomposition, explicit state/communication map, then home, structure, boundaries, and no premature abstraction.
Command
Build a form the house way — schema and error keys first, control chooser, Field/FieldGroup markup, RHF + zod, submit via Result-returning boundary.
Command
Scaffold a service or server boundary the house way — operation contract, zod schema, shared http client, DTO mapping, narrowed Result with ErrorKey.
Command
Plan before coding — restate the task as verifiable targets with done criteria, scope boundaries, and STOP conditions; confirm before writing code.
Command
Review the current diff (or given files) against the house conventions and report violations.
Skill Claude CodeCodex
House TypeScript/React coding conventions. Use whenever writing or reviewing TypeScript, React, or Next.js code — components, hooks, services, types, styling — so output matches the house style.
Skill Claude CodeCodex
House debugging method — localize top-down (page → section → block → component) to the defect site, map references in both directions, trace to the root cause (interrogating where/why/how to prune candidates for wrong-value bugs), and account for the blast radius before fixing. Use when investigating a bug…
Skill Claude CodeCodex
Scaffold or extend a feature module — colocated route/feature folder by default, optional shared package when multi-consumer. Use when creating a new feature or adding an area (hooks, actions, services) to an existing one.
Skill Claude CodeCodex
Build a form the house way — zod schema first, react-hook-form logic, shadcn Field/FieldGroup markup, control chooser, submit via Result-returning action/service. Use when creating or extending forms, validation, or form submit flows.
Skill Claude CodeCodex
Build a Next.js App Router page/landing section the house way — thin server page composing section components, leaf-level client boundaries, metadata via title template and factories. Use when creating pages, landing sections, or route groups.
Skill Claude CodeCodex
Scaffold a service or server boundary the house way — one shared http client, zod-validated payloads, DTO mapping, narrowed Result with ErrorKey, no throws to UI. Use when adding API clients, server actions, route handlers, or external integrations.