How to use the file-factory CLI to create new React components, hooks, context providers, Next.js pages along with associated tests and storybook stories...
This skill describes how to create new React components, hooks, context providers, and Next.js pages in the Squareone monorepo using the @lsst-sqre/file-factory CLI tool. ALWAYS use this tool instead of manually creating new components/hooks/context providers/pages. It ensures consistent file structure, local barrel files, and CSS modules. After creation, the tool displays instructions for any manual steps needed (like updating root barrel files).
Call from the monorepo root:
pnpm file-factory <type> <name> --package <package-name>
Package resolution supports multiple formats:
squared, squareone (recommended)@lsst-sqre/squaredapps/squareone, packages/squaredIf there's a conflict between an app and package with the same short name, apps take priority.
Reference these pages for CLI command documentation:
--with-context, not the context commandcontext command for app-wide stateuse prefix (useDebounce)pnpm file-factory component Alert --package squared --with-story
# Creates: packages/squared/src/components/Alert/
# Displays instructions to add exports to src/components/index.ts and src/index.ts
pnpm file-factory component Wizard --with-context --package squareone
# Creates: apps/squareone/src/components/Wizard/
# Includes: Wizard.tsx, WizardContext.tsx (with WizardProvider + useWizard)
pnpm file-factory context Theme --package squareone
# Creates: apps/squareone/src/contexts/ThemeContext/
# Use ThemeProvider in _app.tsx, useTheme() in components
After scaffolding files with file-factory, use these skills for implementation guidance: