What problem does it solve? Starting work in a monorepo often means discovering a project directory is missing its package.json, TypeScript config, or source entry point. This Skill validates that a target path is ready for development and, only when essential files are missing, creates a minimal scaffold that mimics similar projects in the same monorepo. ## Core Features & Use Cases - Fast validation: Runs quick directory-level checks for package.json, source directories, and config files, reporting "already set up" when the project is complete. - Conditional bootstrap: Scans sibling projects for common patterns, then creates a minimal package.json, essential config files, and placeholder source, installing dependencies with the detected package manager (pnpm, npm, or yarn). - Verification and rollback: Re-runs structural checks after bootstrap, fixes minor issues, and rolls back created files on critical failure before retrying once. - Use Case: Before implementing a feature in a new packages/auth-service directory, run this Skill to confirm the package structure exists or generate the minimal scaffold so coding can begin immediately. ## Quick Start Set up the project at packages/auth-service as a service and confirm it is ready for development.