What problem does it solve? Newly created Wix CLI extensions do not appear or function until they are registered in the central src/extensions.ts file, and a missing .use() call is the most common cause of extensions silently failing. ## Core Features & Use Cases - Extension Registration: Import extension builders and chain them with .use() calls in src/extensions.ts so dashboard pages, site widgets, service plugins, event handlers, and embedded scripts are discovered by the build system. - Simple and Advanced Patterns: Use direct import-and-chain registration for small apps, or programmatic registration via a re-export index file for large apps with many extensions. - Naming and Troubleshooting Guidance: Apply the {extensiontype}{CamelCaseName} export naming convention and diagnose issues like missing .use() calls, wrong import paths, and export name mismatches. - Use Case: After generating a new dashboard page extension, add its import and .use(dashboardpageMyPage) call to src/extensions.ts so the page appears in the Wix dashboard sidebar. ## Quick Start Register my new extension by adding its import and .use() call to src/extensions.ts.