@cimplify/cli 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -0
- package/dist/add-ZJQJZJEF.mjs +125 -0
- package/dist/chunk-4YSOZ6LY.mjs +61 -0
- package/dist/chunk-4ZVTPMUZ.mjs +155 -0
- package/dist/chunk-5XH72JMJ.mjs +211 -0
- package/dist/chunk-D7D75ONX.mjs +36 -0
- package/dist/chunk-JJYWETGA.mjs +127 -0
- package/dist/chunk-L6474RPL.mjs +37 -0
- package/dist/chunk-MQMNWLMU.mjs +48 -0
- package/dist/chunk-NZ4RG62Z.mjs +141 -0
- package/dist/chunk-TAMGCHIL.mjs +81 -0
- package/dist/chunk-XSWWWO6H.mjs +3779 -0
- package/dist/deploy-WCZOGMED.mjs +206 -0
- package/dist/dev-4HKIXWXX.mjs +130 -0
- package/dist/dispatcher.mjs +321 -0
- package/dist/domains-3RJ4T5IX.mjs +387 -0
- package/dist/env-LBYBCBWV.mjs +268 -0
- package/dist/link-SEJNW7JS.mjs +45 -0
- package/dist/list-D4JC2VWY.mjs +48 -0
- package/dist/login-MRYWLQRY.mjs +276 -0
- package/dist/logout-ZFZLSJ32.mjs +16 -0
- package/dist/logs-LK7CMBCE.mjs +95 -0
- package/dist/projects-QJUGOCQZ.mjs +164 -0
- package/dist/repo-MV22OHON.mjs +8 -0
- package/dist/rollback-XO7RIG2A.mjs +107 -0
- package/dist/status-7CMVLD54.mjs +127 -0
- package/dist/unlink-5ABCT7B6.mjs +16 -0
- package/dist/whoami-INHDUHWA.mjs +24 -0
- package/package.json +44 -0
- package/templates/storefront-bakery/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-bakery/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-bakery/.env.example +16 -0
- package/templates/storefront-bakery/AGENTS.md +120 -0
- package/templates/storefront-bakery/CLAUDE.md +22 -0
- package/templates/storefront-bakery/README.md +73 -0
- package/templates/storefront-bakery/__tests__/brand.test.ts +4 -0
- package/templates/storefront-bakery/__tests__/cart-flow.test.ts +4 -0
- package/templates/storefront-bakery/__tests__/contract.test.ts +4 -0
- package/templates/storefront-bakery/app/about/page.tsx +38 -0
- package/templates/storefront-bakery/app/accessibility/page.tsx +11 -0
- package/templates/storefront-bakery/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-bakery/app/account/orders/page.tsx +21 -0
- package/templates/storefront-bakery/app/account/page.tsx +22 -0
- package/templates/storefront-bakery/app/account/settings/page.tsx +21 -0
- package/templates/storefront-bakery/app/cart/page.tsx +9 -0
- package/templates/storefront-bakery/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-bakery/app/categories/[slug]/page.tsx +118 -0
- package/templates/storefront-bakery/app/checkout/page.tsx +17 -0
- package/templates/storefront-bakery/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-bakery/app/collections/[slug]/page.tsx +118 -0
- package/templates/storefront-bakery/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-bakery/app/contact/page.tsx +54 -0
- package/templates/storefront-bakery/app/error.tsx +60 -0
- package/templates/storefront-bakery/app/faq/page.tsx +46 -0
- package/templates/storefront-bakery/app/globals.css +47 -0
- package/templates/storefront-bakery/app/layout.tsx +82 -0
- package/templates/storefront-bakery/app/llms.txt/route.ts +94 -0
- package/templates/storefront-bakery/app/login/page.tsx +17 -0
- package/templates/storefront-bakery/app/not-found.tsx +39 -0
- package/templates/storefront-bakery/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-bakery/app/orders/[id]/page.tsx +21 -0
- package/templates/storefront-bakery/app/page.tsx +97 -0
- package/templates/storefront-bakery/app/privacy/page.tsx +44 -0
- package/templates/storefront-bakery/app/returns/page.tsx +11 -0
- package/templates/storefront-bakery/app/robots.ts +18 -0
- package/templates/storefront-bakery/app/search/page.tsx +38 -0
- package/templates/storefront-bakery/app/search/search-client.tsx +7 -0
- package/templates/storefront-bakery/app/shipping/page.tsx +16 -0
- package/templates/storefront-bakery/app/shop/page.tsx +31 -0
- package/templates/storefront-bakery/app/shop/shop-client.tsx +27 -0
- package/templates/storefront-bakery/app/signup/page.tsx +17 -0
- package/templates/storefront-bakery/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-bakery/app/sitemap.ts +62 -0
- package/templates/storefront-bakery/app/terms/page.tsx +44 -0
- package/templates/storefront-bakery/app/track-order/page.tsx +24 -0
- package/templates/storefront-bakery/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-bakery/components/account-iframe.tsx +13 -0
- package/templates/storefront-bakery/components/cart-drawer.tsx +14 -0
- package/templates/storefront-bakery/components/cart-pill.tsx +36 -0
- package/templates/storefront-bakery/components/category-grid.tsx +28 -0
- package/templates/storefront-bakery/components/collection-strip.tsx +45 -0
- package/templates/storefront-bakery/components/footer.tsx +148 -0
- package/templates/storefront-bakery/components/header.tsx +43 -0
- package/templates/storefront-bakery/components/hero.tsx +25 -0
- package/templates/storefront-bakery/components/nav-link.tsx +20 -0
- package/templates/storefront-bakery/components/policy-page.tsx +49 -0
- package/templates/storefront-bakery/components/product-modal.tsx +104 -0
- package/templates/storefront-bakery/components/providers.tsx +35 -0
- package/templates/storefront-bakery/components/store-product-card.tsx +87 -0
- package/templates/storefront-bakery/lib/brand.ts +570 -0
- package/templates/storefront-bakery/lib/cart.ts +12 -0
- package/templates/storefront-bakery/next.config.ts +42 -0
- package/templates/storefront-bakery/package.json +35 -0
- package/templates/storefront-bakery/postcss.config.mjs +7 -0
- package/templates/storefront-bakery/tsconfig.json +23 -0
- package/templates/storefront-bakery/vitest.config.ts +9 -0
- package/templates/storefront-fashion/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-fashion/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-fashion/.env.example +16 -0
- package/templates/storefront-fashion/AGENTS.md +126 -0
- package/templates/storefront-fashion/CLAUDE.md +22 -0
- package/templates/storefront-fashion/README.md +77 -0
- package/templates/storefront-fashion/__tests__/brand.test.ts +4 -0
- package/templates/storefront-fashion/__tests__/cart-flow.test.ts +55 -0
- package/templates/storefront-fashion/__tests__/contract.test.ts +4 -0
- package/templates/storefront-fashion/app/about/page.tsx +41 -0
- package/templates/storefront-fashion/app/accessibility/page.tsx +11 -0
- package/templates/storefront-fashion/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-fashion/app/account/orders/page.tsx +21 -0
- package/templates/storefront-fashion/app/account/page.tsx +22 -0
- package/templates/storefront-fashion/app/account/settings/page.tsx +21 -0
- package/templates/storefront-fashion/app/cart/page.tsx +9 -0
- package/templates/storefront-fashion/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-fashion/app/categories/[slug]/page.tsx +130 -0
- package/templates/storefront-fashion/app/checkout/page.tsx +17 -0
- package/templates/storefront-fashion/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-fashion/app/collections/[slug]/page.tsx +130 -0
- package/templates/storefront-fashion/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-fashion/app/contact/page.tsx +54 -0
- package/templates/storefront-fashion/app/error.tsx +61 -0
- package/templates/storefront-fashion/app/faq/page.tsx +46 -0
- package/templates/storefront-fashion/app/globals.css +46 -0
- package/templates/storefront-fashion/app/layout.tsx +78 -0
- package/templates/storefront-fashion/app/llms.txt/route.ts +94 -0
- package/templates/storefront-fashion/app/login/page.tsx +17 -0
- package/templates/storefront-fashion/app/lookbook/page.tsx +132 -0
- package/templates/storefront-fashion/app/not-found.tsx +39 -0
- package/templates/storefront-fashion/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-fashion/app/orders/[id]/page.tsx +24 -0
- package/templates/storefront-fashion/app/page.tsx +183 -0
- package/templates/storefront-fashion/app/privacy/page.tsx +44 -0
- package/templates/storefront-fashion/app/products/[slug]/page.tsx +165 -0
- package/templates/storefront-fashion/app/products/[slug]/product-detail.tsx +70 -0
- package/templates/storefront-fashion/app/returns/page.tsx +11 -0
- package/templates/storefront-fashion/app/robots.ts +18 -0
- package/templates/storefront-fashion/app/search/page.tsx +38 -0
- package/templates/storefront-fashion/app/search/search-client.tsx +7 -0
- package/templates/storefront-fashion/app/shipping/page.tsx +16 -0
- package/templates/storefront-fashion/app/shop/page.tsx +63 -0
- package/templates/storefront-fashion/app/shop/shop-client.tsx +32 -0
- package/templates/storefront-fashion/app/signup/page.tsx +17 -0
- package/templates/storefront-fashion/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-fashion/app/sitemap.ts +59 -0
- package/templates/storefront-fashion/app/size-guide/page.tsx +155 -0
- package/templates/storefront-fashion/app/terms/page.tsx +44 -0
- package/templates/storefront-fashion/app/track-order/page.tsx +24 -0
- package/templates/storefront-fashion/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-fashion/components/account-iframe.tsx +13 -0
- package/templates/storefront-fashion/components/brand-marquee.tsx +27 -0
- package/templates/storefront-fashion/components/cart-drawer.tsx +14 -0
- package/templates/storefront-fashion/components/cart-pill.tsx +36 -0
- package/templates/storefront-fashion/components/category-grid.tsx +28 -0
- package/templates/storefront-fashion/components/category-tiles.tsx +104 -0
- package/templates/storefront-fashion/components/collection-strip.tsx +45 -0
- package/templates/storefront-fashion/components/feature-hero.tsx +82 -0
- package/templates/storefront-fashion/components/footer.tsx +153 -0
- package/templates/storefront-fashion/components/header.tsx +43 -0
- package/templates/storefront-fashion/components/hero.tsx +28 -0
- package/templates/storefront-fashion/components/nav-link.tsx +20 -0
- package/templates/storefront-fashion/components/newsletter.tsx +50 -0
- package/templates/storefront-fashion/components/policy-page.tsx +49 -0
- package/templates/storefront-fashion/components/promo-banner.tsx +41 -0
- package/templates/storefront-fashion/components/providers.tsx +35 -0
- package/templates/storefront-fashion/components/section-heading.tsx +37 -0
- package/templates/storefront-fashion/components/store-product-card.tsx +87 -0
- package/templates/storefront-fashion/components/trade-in-cta.tsx +54 -0
- package/templates/storefront-fashion/components/trust-bar.tsx +66 -0
- package/templates/storefront-fashion/e2e/visual.spec.ts +52 -0
- package/templates/storefront-fashion/lib/brand.ts +518 -0
- package/templates/storefront-fashion/lib/cart.ts +12 -0
- package/templates/storefront-fashion/next.config.ts +42 -0
- package/templates/storefront-fashion/package.json +38 -0
- package/templates/storefront-fashion/playwright.config.ts +48 -0
- package/templates/storefront-fashion/postcss.config.mjs +7 -0
- package/templates/storefront-fashion/tsconfig.json +23 -0
- package/templates/storefront-fashion/vitest.config.ts +9 -0
- package/templates/storefront-grocery/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-grocery/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-grocery/.env.example +16 -0
- package/templates/storefront-grocery/AGENTS.md +96 -0
- package/templates/storefront-grocery/CLAUDE.md +22 -0
- package/templates/storefront-grocery/README.md +73 -0
- package/templates/storefront-grocery/__tests__/brand.test.ts +4 -0
- package/templates/storefront-grocery/__tests__/cart-flow.test.ts +4 -0
- package/templates/storefront-grocery/__tests__/contract.test.ts +4 -0
- package/templates/storefront-grocery/app/about/page.tsx +38 -0
- package/templates/storefront-grocery/app/accessibility/page.tsx +11 -0
- package/templates/storefront-grocery/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-grocery/app/account/orders/page.tsx +21 -0
- package/templates/storefront-grocery/app/account/page.tsx +22 -0
- package/templates/storefront-grocery/app/account/settings/page.tsx +21 -0
- package/templates/storefront-grocery/app/cart/page.tsx +9 -0
- package/templates/storefront-grocery/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-grocery/app/categories/[slug]/page.tsx +118 -0
- package/templates/storefront-grocery/app/checkout/page.tsx +17 -0
- package/templates/storefront-grocery/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-grocery/app/collections/[slug]/page.tsx +118 -0
- package/templates/storefront-grocery/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-grocery/app/contact/page.tsx +54 -0
- package/templates/storefront-grocery/app/error.tsx +60 -0
- package/templates/storefront-grocery/app/faq/page.tsx +46 -0
- package/templates/storefront-grocery/app/globals.css +45 -0
- package/templates/storefront-grocery/app/layout.tsx +77 -0
- package/templates/storefront-grocery/app/llms.txt/route.ts +94 -0
- package/templates/storefront-grocery/app/login/page.tsx +17 -0
- package/templates/storefront-grocery/app/not-found.tsx +39 -0
- package/templates/storefront-grocery/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-grocery/app/orders/[id]/page.tsx +21 -0
- package/templates/storefront-grocery/app/page.tsx +97 -0
- package/templates/storefront-grocery/app/privacy/page.tsx +44 -0
- package/templates/storefront-grocery/app/returns/page.tsx +11 -0
- package/templates/storefront-grocery/app/robots.ts +18 -0
- package/templates/storefront-grocery/app/search/page.tsx +38 -0
- package/templates/storefront-grocery/app/search/search-client.tsx +7 -0
- package/templates/storefront-grocery/app/shipping/page.tsx +16 -0
- package/templates/storefront-grocery/app/shop/page.tsx +31 -0
- package/templates/storefront-grocery/app/shop/shop-client.tsx +27 -0
- package/templates/storefront-grocery/app/signup/page.tsx +17 -0
- package/templates/storefront-grocery/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-grocery/app/sitemap.ts +62 -0
- package/templates/storefront-grocery/app/terms/page.tsx +44 -0
- package/templates/storefront-grocery/app/track-order/page.tsx +24 -0
- package/templates/storefront-grocery/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-grocery/components/account-iframe.tsx +13 -0
- package/templates/storefront-grocery/components/cart-drawer.tsx +14 -0
- package/templates/storefront-grocery/components/cart-pill.tsx +36 -0
- package/templates/storefront-grocery/components/category-grid.tsx +28 -0
- package/templates/storefront-grocery/components/collection-strip.tsx +45 -0
- package/templates/storefront-grocery/components/footer.tsx +148 -0
- package/templates/storefront-grocery/components/header.tsx +43 -0
- package/templates/storefront-grocery/components/hero.tsx +25 -0
- package/templates/storefront-grocery/components/nav-link.tsx +20 -0
- package/templates/storefront-grocery/components/policy-page.tsx +49 -0
- package/templates/storefront-grocery/components/product-modal.tsx +104 -0
- package/templates/storefront-grocery/components/providers.tsx +35 -0
- package/templates/storefront-grocery/components/store-product-card.tsx +87 -0
- package/templates/storefront-grocery/lib/brand.ts +375 -0
- package/templates/storefront-grocery/lib/cart.ts +12 -0
- package/templates/storefront-grocery/next.config.ts +42 -0
- package/templates/storefront-grocery/package.json +35 -0
- package/templates/storefront-grocery/postcss.config.mjs +7 -0
- package/templates/storefront-grocery/tsconfig.json +23 -0
- package/templates/storefront-grocery/vitest.config.ts +9 -0
- package/templates/storefront-restaurant/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-restaurant/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-restaurant/.env.example +16 -0
- package/templates/storefront-restaurant/AGENTS.md +102 -0
- package/templates/storefront-restaurant/CLAUDE.md +22 -0
- package/templates/storefront-restaurant/README.md +73 -0
- package/templates/storefront-restaurant/__tests__/brand.test.ts +4 -0
- package/templates/storefront-restaurant/__tests__/cart-flow.test.ts +4 -0
- package/templates/storefront-restaurant/__tests__/contract.test.ts +4 -0
- package/templates/storefront-restaurant/app/about/page.tsx +38 -0
- package/templates/storefront-restaurant/app/accessibility/page.tsx +11 -0
- package/templates/storefront-restaurant/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-restaurant/app/account/orders/page.tsx +21 -0
- package/templates/storefront-restaurant/app/account/page.tsx +22 -0
- package/templates/storefront-restaurant/app/account/settings/page.tsx +21 -0
- package/templates/storefront-restaurant/app/cart/page.tsx +9 -0
- package/templates/storefront-restaurant/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-restaurant/app/categories/[slug]/page.tsx +118 -0
- package/templates/storefront-restaurant/app/checkout/page.tsx +17 -0
- package/templates/storefront-restaurant/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-restaurant/app/collections/[slug]/page.tsx +118 -0
- package/templates/storefront-restaurant/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-restaurant/app/contact/page.tsx +54 -0
- package/templates/storefront-restaurant/app/error.tsx +60 -0
- package/templates/storefront-restaurant/app/faq/page.tsx +46 -0
- package/templates/storefront-restaurant/app/globals.css +44 -0
- package/templates/storefront-restaurant/app/layout.tsx +82 -0
- package/templates/storefront-restaurant/app/llms.txt/route.ts +94 -0
- package/templates/storefront-restaurant/app/login/page.tsx +17 -0
- package/templates/storefront-restaurant/app/not-found.tsx +39 -0
- package/templates/storefront-restaurant/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-restaurant/app/orders/[id]/page.tsx +21 -0
- package/templates/storefront-restaurant/app/page.tsx +97 -0
- package/templates/storefront-restaurant/app/privacy/page.tsx +44 -0
- package/templates/storefront-restaurant/app/reservations/page.tsx +66 -0
- package/templates/storefront-restaurant/app/reservations/reservations-client.tsx +234 -0
- package/templates/storefront-restaurant/app/returns/page.tsx +11 -0
- package/templates/storefront-restaurant/app/robots.ts +18 -0
- package/templates/storefront-restaurant/app/search/page.tsx +38 -0
- package/templates/storefront-restaurant/app/search/search-client.tsx +7 -0
- package/templates/storefront-restaurant/app/shipping/page.tsx +16 -0
- package/templates/storefront-restaurant/app/shop/page.tsx +31 -0
- package/templates/storefront-restaurant/app/shop/shop-client.tsx +27 -0
- package/templates/storefront-restaurant/app/signup/page.tsx +17 -0
- package/templates/storefront-restaurant/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-restaurant/app/sitemap.ts +62 -0
- package/templates/storefront-restaurant/app/terms/page.tsx +44 -0
- package/templates/storefront-restaurant/app/track-order/page.tsx +24 -0
- package/templates/storefront-restaurant/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-restaurant/components/account-iframe.tsx +13 -0
- package/templates/storefront-restaurant/components/cart-drawer.tsx +14 -0
- package/templates/storefront-restaurant/components/cart-pill.tsx +36 -0
- package/templates/storefront-restaurant/components/category-grid.tsx +28 -0
- package/templates/storefront-restaurant/components/collection-strip.tsx +45 -0
- package/templates/storefront-restaurant/components/footer.tsx +148 -0
- package/templates/storefront-restaurant/components/header.tsx +43 -0
- package/templates/storefront-restaurant/components/hero.tsx +25 -0
- package/templates/storefront-restaurant/components/nav-link.tsx +20 -0
- package/templates/storefront-restaurant/components/policy-page.tsx +49 -0
- package/templates/storefront-restaurant/components/product-modal.tsx +104 -0
- package/templates/storefront-restaurant/components/providers.tsx +35 -0
- package/templates/storefront-restaurant/components/store-product-card.tsx +87 -0
- package/templates/storefront-restaurant/lib/brand.ts +377 -0
- package/templates/storefront-restaurant/lib/cart.ts +12 -0
- package/templates/storefront-restaurant/next.config.ts +42 -0
- package/templates/storefront-restaurant/package.json +35 -0
- package/templates/storefront-restaurant/postcss.config.mjs +7 -0
- package/templates/storefront-restaurant/tsconfig.json +23 -0
- package/templates/storefront-restaurant/vitest.config.ts +9 -0
- package/templates/storefront-retail/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-retail/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-retail/.env.example +16 -0
- package/templates/storefront-retail/AGENTS.md +117 -0
- package/templates/storefront-retail/CLAUDE.md +22 -0
- package/templates/storefront-retail/README.md +77 -0
- package/templates/storefront-retail/__tests__/brand.test.ts +4 -0
- package/templates/storefront-retail/__tests__/cart-flow.test.ts +4 -0
- package/templates/storefront-retail/__tests__/contract.test.ts +4 -0
- package/templates/storefront-retail/app/about/page.tsx +41 -0
- package/templates/storefront-retail/app/accessibility/page.tsx +11 -0
- package/templates/storefront-retail/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-retail/app/account/orders/page.tsx +21 -0
- package/templates/storefront-retail/app/account/page.tsx +22 -0
- package/templates/storefront-retail/app/account/settings/page.tsx +21 -0
- package/templates/storefront-retail/app/cart/page.tsx +9 -0
- package/templates/storefront-retail/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-retail/app/categories/[slug]/page.tsx +130 -0
- package/templates/storefront-retail/app/checkout/page.tsx +17 -0
- package/templates/storefront-retail/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-retail/app/collections/[slug]/page.tsx +130 -0
- package/templates/storefront-retail/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-retail/app/contact/page.tsx +54 -0
- package/templates/storefront-retail/app/error.tsx +61 -0
- package/templates/storefront-retail/app/faq/page.tsx +46 -0
- package/templates/storefront-retail/app/globals.css +47 -0
- package/templates/storefront-retail/app/layout.tsx +77 -0
- package/templates/storefront-retail/app/llms.txt/route.ts +94 -0
- package/templates/storefront-retail/app/login/page.tsx +17 -0
- package/templates/storefront-retail/app/not-found.tsx +39 -0
- package/templates/storefront-retail/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-retail/app/orders/[id]/page.tsx +24 -0
- package/templates/storefront-retail/app/page.tsx +182 -0
- package/templates/storefront-retail/app/privacy/page.tsx +44 -0
- package/templates/storefront-retail/app/products/[slug]/page.tsx +165 -0
- package/templates/storefront-retail/app/products/[slug]/product-detail.tsx +70 -0
- package/templates/storefront-retail/app/returns/page.tsx +11 -0
- package/templates/storefront-retail/app/robots.ts +18 -0
- package/templates/storefront-retail/app/search/page.tsx +38 -0
- package/templates/storefront-retail/app/search/search-client.tsx +7 -0
- package/templates/storefront-retail/app/shipping/page.tsx +16 -0
- package/templates/storefront-retail/app/shop/page.tsx +63 -0
- package/templates/storefront-retail/app/shop/shop-client.tsx +32 -0
- package/templates/storefront-retail/app/signup/page.tsx +17 -0
- package/templates/storefront-retail/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-retail/app/sitemap.ts +59 -0
- package/templates/storefront-retail/app/terms/page.tsx +44 -0
- package/templates/storefront-retail/app/track-order/page.tsx +24 -0
- package/templates/storefront-retail/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-retail/components/account-iframe.tsx +13 -0
- package/templates/storefront-retail/components/brand-marquee.tsx +27 -0
- package/templates/storefront-retail/components/cart-drawer.tsx +14 -0
- package/templates/storefront-retail/components/cart-pill.tsx +36 -0
- package/templates/storefront-retail/components/category-grid.tsx +28 -0
- package/templates/storefront-retail/components/category-tiles.tsx +104 -0
- package/templates/storefront-retail/components/collection-strip.tsx +45 -0
- package/templates/storefront-retail/components/feature-hero.tsx +84 -0
- package/templates/storefront-retail/components/footer.tsx +153 -0
- package/templates/storefront-retail/components/header.tsx +45 -0
- package/templates/storefront-retail/components/hero.tsx +28 -0
- package/templates/storefront-retail/components/nav-link.tsx +20 -0
- package/templates/storefront-retail/components/newsletter.tsx +50 -0
- package/templates/storefront-retail/components/policy-page.tsx +49 -0
- package/templates/storefront-retail/components/promo-banner.tsx +41 -0
- package/templates/storefront-retail/components/providers.tsx +35 -0
- package/templates/storefront-retail/components/section-heading.tsx +37 -0
- package/templates/storefront-retail/components/store-product-card.tsx +87 -0
- package/templates/storefront-retail/components/trade-in-cta.tsx +54 -0
- package/templates/storefront-retail/components/trust-bar.tsx +66 -0
- package/templates/storefront-retail/lib/brand.ts +664 -0
- package/templates/storefront-retail/lib/cart.ts +12 -0
- package/templates/storefront-retail/next.config.ts +42 -0
- package/templates/storefront-retail/package.json +35 -0
- package/templates/storefront-retail/postcss.config.mjs +7 -0
- package/templates/storefront-retail/tsconfig.json +23 -0
- package/templates/storefront-retail/vitest.config.ts +9 -0
- package/templates/storefront-services/.claude/skills/cimplify-storefront/SKILL.md +145 -0
- package/templates/storefront-services/.cursor/rules/cimplify-storefront.mdc +25 -0
- package/templates/storefront-services/.env.example +16 -0
- package/templates/storefront-services/AGENTS.md +101 -0
- package/templates/storefront-services/CLAUDE.md +22 -0
- package/templates/storefront-services/README.md +73 -0
- package/templates/storefront-services/__tests__/brand.test.ts +4 -0
- package/templates/storefront-services/__tests__/cart-flow.test.ts +4 -0
- package/templates/storefront-services/__tests__/contract.test.ts +4 -0
- package/templates/storefront-services/app/about/page.tsx +38 -0
- package/templates/storefront-services/app/accessibility/page.tsx +11 -0
- package/templates/storefront-services/app/account/addresses/page.tsx +21 -0
- package/templates/storefront-services/app/account/orders/page.tsx +21 -0
- package/templates/storefront-services/app/account/page.tsx +22 -0
- package/templates/storefront-services/app/account/settings/page.tsx +21 -0
- package/templates/storefront-services/app/book/book-client.tsx +195 -0
- package/templates/storefront-services/app/book/page.tsx +65 -0
- package/templates/storefront-services/app/cart/page.tsx +9 -0
- package/templates/storefront-services/app/categories/[slug]/listing-client.tsx +19 -0
- package/templates/storefront-services/app/categories/[slug]/page.tsx +118 -0
- package/templates/storefront-services/app/checkout/page.tsx +17 -0
- package/templates/storefront-services/app/collections/[slug]/listing-client.tsx +20 -0
- package/templates/storefront-services/app/collections/[slug]/page.tsx +118 -0
- package/templates/storefront-services/app/contact/contact-form.tsx +109 -0
- package/templates/storefront-services/app/contact/page.tsx +54 -0
- package/templates/storefront-services/app/error.tsx +60 -0
- package/templates/storefront-services/app/faq/page.tsx +46 -0
- package/templates/storefront-services/app/globals.css +45 -0
- package/templates/storefront-services/app/layout.tsx +82 -0
- package/templates/storefront-services/app/llms.txt/route.ts +94 -0
- package/templates/storefront-services/app/login/page.tsx +17 -0
- package/templates/storefront-services/app/not-found.tsx +39 -0
- package/templates/storefront-services/app/opensearch.xml/route.ts +37 -0
- package/templates/storefront-services/app/orders/[id]/page.tsx +21 -0
- package/templates/storefront-services/app/page.tsx +97 -0
- package/templates/storefront-services/app/privacy/page.tsx +44 -0
- package/templates/storefront-services/app/returns/page.tsx +11 -0
- package/templates/storefront-services/app/robots.ts +18 -0
- package/templates/storefront-services/app/search/page.tsx +38 -0
- package/templates/storefront-services/app/search/search-client.tsx +7 -0
- package/templates/storefront-services/app/shipping/page.tsx +16 -0
- package/templates/storefront-services/app/shop/page.tsx +31 -0
- package/templates/storefront-services/app/shop/shop-client.tsx +27 -0
- package/templates/storefront-services/app/signup/page.tsx +17 -0
- package/templates/storefront-services/app/sitemap-page/page.tsx +167 -0
- package/templates/storefront-services/app/sitemap.ts +62 -0
- package/templates/storefront-services/app/terms/page.tsx +44 -0
- package/templates/storefront-services/app/track-order/page.tsx +24 -0
- package/templates/storefront-services/app/track-order/track-order-form.tsx +69 -0
- package/templates/storefront-services/components/account-iframe.tsx +13 -0
- package/templates/storefront-services/components/cart-drawer.tsx +14 -0
- package/templates/storefront-services/components/cart-pill.tsx +36 -0
- package/templates/storefront-services/components/category-grid.tsx +28 -0
- package/templates/storefront-services/components/collection-strip.tsx +45 -0
- package/templates/storefront-services/components/footer.tsx +148 -0
- package/templates/storefront-services/components/header.tsx +43 -0
- package/templates/storefront-services/components/hero.tsx +25 -0
- package/templates/storefront-services/components/nav-link.tsx +20 -0
- package/templates/storefront-services/components/policy-page.tsx +49 -0
- package/templates/storefront-services/components/product-modal.tsx +104 -0
- package/templates/storefront-services/components/providers.tsx +35 -0
- package/templates/storefront-services/components/store-product-card.tsx +87 -0
- package/templates/storefront-services/lib/brand.ts +396 -0
- package/templates/storefront-services/lib/cart.ts +12 -0
- package/templates/storefront-services/next.config.ts +42 -0
- package/templates/storefront-services/package.json +35 -0
- package/templates/storefront-services/postcss.config.mjs +7 -0
- package/templates/storefront-services/tsconfig.json +23 -0
- package/templates/storefront-services/vitest.config.ts +9 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { pollDeployment } from './chunk-TAMGCHIL.mjs';
|
|
3
|
+
import { DEPLOYMENT_STATUS, DEPLOY_TRIGGER } from './chunk-MQMNWLMU.mjs';
|
|
4
|
+
import { parseArgs, flagBool } from './chunk-D7D75ONX.mjs';
|
|
5
|
+
import { ApiClient } from './chunk-4ZVTPMUZ.mjs';
|
|
6
|
+
import { readAuth, readProjectLink, writeProjectState } from './chunk-JJYWETGA.mjs';
|
|
7
|
+
import { CliError, CLI_ERROR_CODE, step, success, info, dim, result, EXIT_CODE } from './chunk-NZ4RG62Z.mjs';
|
|
8
|
+
|
|
9
|
+
// src/commands/rollback.ts
|
|
10
|
+
var FLAG_NO_POLL = "no-poll";
|
|
11
|
+
function deploymentsEndpoint(businessId, projectId) {
|
|
12
|
+
return `/v1/businesses/${encodeURIComponent(businessId)}/projects/${encodeURIComponent(projectId)}/deployments`;
|
|
13
|
+
}
|
|
14
|
+
function deployEndpoint(businessId, projectId) {
|
|
15
|
+
return `/v1/businesses/${encodeURIComponent(businessId)}/projects/${encodeURIComponent(projectId)}/deploy`;
|
|
16
|
+
}
|
|
17
|
+
async function run(argv) {
|
|
18
|
+
const args = parseArgs(argv);
|
|
19
|
+
const targetId = args.positional[0];
|
|
20
|
+
if (!targetId) {
|
|
21
|
+
throw new CliError(
|
|
22
|
+
CLI_ERROR_CODE.INVALID_INPUT,
|
|
23
|
+
"Usage: cimplify rollback <deployment-id>\nList past deployments via the dashboard or API."
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
const auth = await readAuth();
|
|
27
|
+
const link = await readProjectLink();
|
|
28
|
+
const client = ApiClient.fromAuth(auth);
|
|
29
|
+
const deployments = await client.get(
|
|
30
|
+
deploymentsEndpoint(link.businessId, link.projectId)
|
|
31
|
+
);
|
|
32
|
+
const target = deployments.find((d) => d.id === targetId);
|
|
33
|
+
if (!target) {
|
|
34
|
+
throw new CliError(
|
|
35
|
+
CLI_ERROR_CODE.PROJECT_NOT_FOUND,
|
|
36
|
+
`Deployment ${targetId} not found in project history.`
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
if (!target.git_sha) {
|
|
40
|
+
throw new CliError(
|
|
41
|
+
CLI_ERROR_CODE.INVALID_INPUT,
|
|
42
|
+
`Deployment ${targetId} has no git_sha to roll back to.`
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
const currentActive = deployments.find(
|
|
46
|
+
(d) => d.status === DEPLOYMENT_STATUS.ACTIVE && d.environment === target.environment
|
|
47
|
+
);
|
|
48
|
+
const body = {
|
|
49
|
+
git_ref: target.git_sha,
|
|
50
|
+
env_scope: target.environment,
|
|
51
|
+
trigger: DEPLOY_TRIGGER.ROLLBACK,
|
|
52
|
+
parent_id: currentActive?.id
|
|
53
|
+
};
|
|
54
|
+
step(`Rolling back ${target.environment} to ${target.git_sha.slice(0, 12)}`);
|
|
55
|
+
const enqueued = await client.post(
|
|
56
|
+
deployEndpoint(link.businessId, link.projectId),
|
|
57
|
+
body
|
|
58
|
+
);
|
|
59
|
+
await writeProjectState({
|
|
60
|
+
lastDeploymentId: enqueued.deployment_id,
|
|
61
|
+
lastDeploymentSha: enqueued.git_sha,
|
|
62
|
+
lastDeploymentEnv: target.environment,
|
|
63
|
+
lastDeploymentAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
64
|
+
});
|
|
65
|
+
success(`Enqueued rollback ${enqueued.deployment_id}`);
|
|
66
|
+
if (flagBool(args, FLAG_NO_POLL)) {
|
|
67
|
+
info(dim(`Track via: cimplify deployments status ${enqueued.deployment_id}`));
|
|
68
|
+
result({
|
|
69
|
+
deployment: {
|
|
70
|
+
id: enqueued.deployment_id,
|
|
71
|
+
git_sha: enqueued.git_sha,
|
|
72
|
+
environment: target.environment,
|
|
73
|
+
status: "queued",
|
|
74
|
+
rolled_back_from: target.id
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
const final = await pollDeployment(
|
|
80
|
+
client,
|
|
81
|
+
link.businessId,
|
|
82
|
+
link.projectId,
|
|
83
|
+
enqueued.deployment_id
|
|
84
|
+
);
|
|
85
|
+
result({
|
|
86
|
+
deployment: {
|
|
87
|
+
id: enqueued.deployment_id,
|
|
88
|
+
git_sha: enqueued.git_sha,
|
|
89
|
+
environment: target.environment,
|
|
90
|
+
status: final.status,
|
|
91
|
+
url: final.url ?? null,
|
|
92
|
+
error_message: final.error_message ?? null,
|
|
93
|
+
rolled_back_from: target.id
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
if (final.status === DEPLOYMENT_STATUS.ACTIVE) {
|
|
97
|
+
process.exitCode = EXIT_CODE.OK;
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
if (final.status === DEPLOYMENT_STATUS.SUPERSEDED) {
|
|
101
|
+
process.exitCode = EXIT_CODE.SUPERSEDED;
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
process.exitCode = EXIT_CODE.ERROR;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export { run as default };
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { DEPLOYMENT_STATUS } from './chunk-MQMNWLMU.mjs';
|
|
3
|
+
import { parseArgs } from './chunk-D7D75ONX.mjs';
|
|
4
|
+
import { ApiClient } from './chunk-4ZVTPMUZ.mjs';
|
|
5
|
+
import { readAuth, readProjectLink, readProjectState } from './chunk-JJYWETGA.mjs';
|
|
6
|
+
import { bold, dim, info, result } from './chunk-NZ4RG62Z.mjs';
|
|
7
|
+
|
|
8
|
+
// src/commands/status.ts
|
|
9
|
+
var QUERY_LIMIT = "limit";
|
|
10
|
+
var LATEST_DEPLOYMENT_LIMIT = 1;
|
|
11
|
+
var SECONDS_PER_MINUTE = 60;
|
|
12
|
+
var SECONDS_PER_HOUR = 3600;
|
|
13
|
+
var SECONDS_PER_DAY = 86400;
|
|
14
|
+
var SHA_DISPLAY_LEN = 7;
|
|
15
|
+
function deploymentsEndpoint(businessId, projectId) {
|
|
16
|
+
return `/v1/businesses/${encodeURIComponent(businessId)}/projects/${encodeURIComponent(projectId)}/deployments`;
|
|
17
|
+
}
|
|
18
|
+
function deploymentProgressEndpoint(businessId, projectId, deploymentId) {
|
|
19
|
+
return `/v1/businesses/${encodeURIComponent(businessId)}/projects/${encodeURIComponent(projectId)}/deployments/${encodeURIComponent(deploymentId)}/progress`;
|
|
20
|
+
}
|
|
21
|
+
function relativeTime(fromIso, now = /* @__PURE__ */ new Date()) {
|
|
22
|
+
if (!fromIso) return "unknown";
|
|
23
|
+
const then = new Date(fromIso);
|
|
24
|
+
if (Number.isNaN(then.getTime())) return fromIso;
|
|
25
|
+
const diffSec = Math.floor((now.getTime() - then.getTime()) / 1e3);
|
|
26
|
+
if (diffSec < SECONDS_PER_MINUTE) return `${diffSec} second${diffSec === 1 ? "" : "s"} ago`;
|
|
27
|
+
if (diffSec < SECONDS_PER_HOUR) {
|
|
28
|
+
const m = Math.floor(diffSec / SECONDS_PER_MINUTE);
|
|
29
|
+
return `${m} minute${m === 1 ? "" : "s"} ago`;
|
|
30
|
+
}
|
|
31
|
+
if (diffSec < SECONDS_PER_DAY) {
|
|
32
|
+
const h = Math.floor(diffSec / SECONDS_PER_HOUR);
|
|
33
|
+
return `${h} hour${h === 1 ? "" : "s"} ago`;
|
|
34
|
+
}
|
|
35
|
+
const d = Math.floor(diffSec / SECONDS_PER_DAY);
|
|
36
|
+
return `${d} day${d === 1 ? "" : "s"} ago`;
|
|
37
|
+
}
|
|
38
|
+
function renderStatus(link, row, now = /* @__PURE__ */ new Date()) {
|
|
39
|
+
const out = [];
|
|
40
|
+
out.push(`${bold("Project:")} ${link.projectId}${link.framework ? dim(` (${link.framework})`) : ""}`);
|
|
41
|
+
if (link.remoteUrl) {
|
|
42
|
+
const branch = link.defaultBranch ? ` @ ${link.defaultBranch}` : "";
|
|
43
|
+
out.push(`${bold("Linked:")} ${link.remoteUrl}${branch}`);
|
|
44
|
+
}
|
|
45
|
+
out.push("");
|
|
46
|
+
if (!row) {
|
|
47
|
+
out.push(dim("No deployments yet. Run `cimplify deploy`."));
|
|
48
|
+
return out;
|
|
49
|
+
}
|
|
50
|
+
out.push(bold("Latest deployment:"));
|
|
51
|
+
out.push(` ID: ${row.id}`);
|
|
52
|
+
out.push(` Status: ${row.status}`);
|
|
53
|
+
if (row.environment) out.push(` Env: ${row.environment}`);
|
|
54
|
+
if (row.trigger) out.push(` Trigger: ${row.trigger}`);
|
|
55
|
+
if (row.sha) out.push(` SHA: ${row.sha.slice(0, SHA_DISPLAY_LEN)}`);
|
|
56
|
+
if (row.url) out.push(` URL: ${row.url}`);
|
|
57
|
+
if (row.startedAt) out.push(` Started: ${relativeTime(row.startedAt, now)}`);
|
|
58
|
+
return out;
|
|
59
|
+
}
|
|
60
|
+
async function run(argv) {
|
|
61
|
+
parseArgs(argv);
|
|
62
|
+
const auth = await readAuth();
|
|
63
|
+
const link = await readProjectLink();
|
|
64
|
+
const client = ApiClient.fromAuth(auth);
|
|
65
|
+
const state = await readProjectState();
|
|
66
|
+
let row = null;
|
|
67
|
+
if (state?.lastDeploymentId) {
|
|
68
|
+
const progress = await client.get(
|
|
69
|
+
deploymentProgressEndpoint(link.businessId, link.projectId, state.lastDeploymentId)
|
|
70
|
+
);
|
|
71
|
+
row = {
|
|
72
|
+
id: state.lastDeploymentId,
|
|
73
|
+
status: progress.status ?? DEPLOYMENT_STATUS.QUEUED,
|
|
74
|
+
sha: state.lastDeploymentSha,
|
|
75
|
+
url: progress.url ?? void 0,
|
|
76
|
+
startedAt: state.lastDeploymentAt,
|
|
77
|
+
environment: state.lastDeploymentEnv
|
|
78
|
+
};
|
|
79
|
+
} else {
|
|
80
|
+
const recent = await client.get(
|
|
81
|
+
deploymentsEndpoint(link.businessId, link.projectId),
|
|
82
|
+
{ query: { [QUERY_LIMIT]: LATEST_DEPLOYMENT_LIMIT } }
|
|
83
|
+
);
|
|
84
|
+
const latest = recent[0];
|
|
85
|
+
if (latest) {
|
|
86
|
+
row = {
|
|
87
|
+
id: latest.id,
|
|
88
|
+
status: latest.status,
|
|
89
|
+
trigger: latest.trigger,
|
|
90
|
+
sha: latest.git_sha ?? void 0,
|
|
91
|
+
url: latest.url ?? void 0,
|
|
92
|
+
startedAt: latest.created_at,
|
|
93
|
+
environment: latest.environment
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
for (const line of renderStatus(
|
|
98
|
+
{
|
|
99
|
+
projectId: link.projectId,
|
|
100
|
+
remoteUrl: link.remoteUrl,
|
|
101
|
+
defaultBranch: link.defaultBranch,
|
|
102
|
+
framework: link.framework
|
|
103
|
+
},
|
|
104
|
+
row
|
|
105
|
+
)) {
|
|
106
|
+
info(line);
|
|
107
|
+
}
|
|
108
|
+
result({
|
|
109
|
+
project: {
|
|
110
|
+
id: link.projectId,
|
|
111
|
+
framework: link.framework ?? null,
|
|
112
|
+
remote_url: link.remoteUrl ?? null,
|
|
113
|
+
default_branch: link.defaultBranch ?? null
|
|
114
|
+
},
|
|
115
|
+
deployment: row ? {
|
|
116
|
+
id: row.id,
|
|
117
|
+
status: row.status,
|
|
118
|
+
environment: row.environment ?? null,
|
|
119
|
+
trigger: row.trigger ?? null,
|
|
120
|
+
git_sha: row.sha ?? null,
|
|
121
|
+
url: row.url ?? null,
|
|
122
|
+
started_at: row.startedAt ?? null
|
|
123
|
+
} : null
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export { run as default, relativeTime, renderStatus };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { clearProjectLink } from './chunk-JJYWETGA.mjs';
|
|
3
|
+
import { success, info, result } from './chunk-NZ4RG62Z.mjs';
|
|
4
|
+
|
|
5
|
+
// src/commands/unlink.ts
|
|
6
|
+
async function run(_argv) {
|
|
7
|
+
const removed = await clearProjectLink();
|
|
8
|
+
if (removed) {
|
|
9
|
+
success("Unlinked project.");
|
|
10
|
+
} else {
|
|
11
|
+
info("No project link to remove.");
|
|
12
|
+
}
|
|
13
|
+
result({ unlinked: removed });
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export { run as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { ApiClient } from './chunk-4ZVTPMUZ.mjs';
|
|
3
|
+
import { readAuth } from './chunk-JJYWETGA.mjs';
|
|
4
|
+
import { info, bold, dim, result } from './chunk-NZ4RG62Z.mjs';
|
|
5
|
+
|
|
6
|
+
// src/commands/whoami.ts
|
|
7
|
+
var ENDPOINT_AUTH_ME = "/v1/auth/me";
|
|
8
|
+
async function run(_argv) {
|
|
9
|
+
const auth = await readAuth();
|
|
10
|
+
const client = ApiClient.fromAuth(auth);
|
|
11
|
+
const me = await client.get(ENDPOINT_AUTH_ME);
|
|
12
|
+
info(`${bold("Account")} ${me.id}`);
|
|
13
|
+
if (me.email) info(`${bold("Email")} ${me.email}`);
|
|
14
|
+
if (me.name) info(`${bold("Name")} ${me.name}`);
|
|
15
|
+
info(`${bold("Business")} ${me.business_id}`);
|
|
16
|
+
info(`${bold("API")} ${dim(auth.apiBaseUrl)}`);
|
|
17
|
+
result({
|
|
18
|
+
account: { id: me.id, email: me.email ?? null, name: me.name ?? null },
|
|
19
|
+
business: { id: me.business_id },
|
|
20
|
+
api_base_url: auth.apiBaseUrl
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { run as default };
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cimplify/cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Cimplify CLI — deploy, manage env vars, link projects, and scaffold storefronts",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cimplify",
|
|
7
|
+
"cli",
|
|
8
|
+
"deploy",
|
|
9
|
+
"storefront"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"bin": {
|
|
13
|
+
"cimplify": "dist/dispatcher.mjs"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"templates"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"bundle-assets": "bun scripts/bundle-assets.ts",
|
|
21
|
+
"prebuild": "bun run bundle-assets",
|
|
22
|
+
"build": "tsup",
|
|
23
|
+
"build:binary": "bun run bundle-assets && bun scripts/build-binaries.ts",
|
|
24
|
+
"build:binary:local": "bun run bundle-assets && bun scripts/build-binaries.ts --local",
|
|
25
|
+
"sync:template-pins": "bun scripts/sync-template-pins.ts",
|
|
26
|
+
"version": "bun scripts/sync-template-pins.ts && git add templates/*/package.json",
|
|
27
|
+
"prepublishOnly": "bun scripts/sync-template-pins.ts && bun run build",
|
|
28
|
+
"dev": "bun run bundle-assets && tsup --watch",
|
|
29
|
+
"typecheck": "bun run bundle-assets && tsgo --noEmit -p tsconfig.json",
|
|
30
|
+
"clean": "rm -rf dist bin src/embedded-assets.ts",
|
|
31
|
+
"lint:ox": "oxlint --fix .",
|
|
32
|
+
"format": "oxfmt . --write",
|
|
33
|
+
"format:check": "oxfmt . --check",
|
|
34
|
+
"test": "vitest",
|
|
35
|
+
"test:run": "vitest run"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^25.6.0",
|
|
39
|
+
"@typescript/native-preview": "^7.0.0-dev.20260503.1",
|
|
40
|
+
"tsup": "^8.5.1",
|
|
41
|
+
"typescript": "5.9.3",
|
|
42
|
+
"vitest": "^4.1.5"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: cimplify-storefront
|
|
3
|
+
description: Build, customize, rebrand, or deploy a Cimplify-scaffolded storefront. Triggers when the user asks to create a storefront, rebrand a Cimplify template, change the palette, add a page, deploy to Cimplify, or works in a project containing `lib/brand.ts` and `next.config.ts` with `cacheComponents`.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Cimplify Storefront skill
|
|
7
|
+
|
|
8
|
+
You're working on a project scaffolded from `bunx @cimplify/sdk init`. The architecture is opinionated and the rebrand surface is intentionally small. Read `AGENTS.md` at the project root for the file ↔ brand-field map for *this template's* industry; this skill gives you the playbook that's the same across all six.
|
|
9
|
+
|
|
10
|
+
## The contract — never break
|
|
11
|
+
|
|
12
|
+
1. **`lib/brand.ts` is the only place for content edits.** Every visible string reads from this file. If a string isn't in `brand`, *add a field* to the `Brand` interface — don't hardcode it in a page or component.
|
|
13
|
+
2. **`app/globals.css` `@theme { … }`** holds palette + radius + font references. To re-skin the entire site, edit only this block.
|
|
14
|
+
3. **Server Components are cached** via `'use cache'` + `cacheTag(tags.X())` + `cacheLife("hours")`. Don't downgrade them to `"use client"` to avoid an issue — fix the issue.
|
|
15
|
+
4. **Client islands** (anything reading `useSearchParams`, `usePathname`, `useRouter`, `useState`) live behind `<Suspense>`.
|
|
16
|
+
5. **`cacheComponents: true`** in `next.config.ts` is non-negotiable. Don't turn it off.
|
|
17
|
+
6. **`bun run test:run` (vitest)** is the canonical test runner. `bun test` will show false failures because Bun's `vi` shim is incomplete.
|
|
18
|
+
7. **Cart, checkout, orders stay client.** They're session-bound. Don't try to SSR them.
|
|
19
|
+
|
|
20
|
+
## The brand-field schema (in `lib/brand.ts`)
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
identity: name, shortName, microTag, description, schemaType, currency, locale
|
|
24
|
+
contact: address, streetAddress, city, countryCode, phone, phoneTel, email, privacyEmail, hours
|
|
25
|
+
socials: [{ label, href, icon }] // icon ∈ instagram|x|tiktok|facebook|youtube|linkedin|whatsapp
|
|
26
|
+
header: { nav: [{ label, href }] }
|
|
27
|
+
hero: { badge, title, subtitle, primaryCtaLabel, secondaryCtaLabel?, secondaryCtaHref? }
|
|
28
|
+
optional: trustItems[]?, brandStrip?, promo?, tradeIn? // render conditionally
|
|
29
|
+
newsletter: { eyebrow, title, body, placeholder, submitLabel, successLabel }
|
|
30
|
+
about: { eyebrow, title, paragraphs[], sections[{ heading, body }] }
|
|
31
|
+
faq: { eyebrow, title, sections[{ title, items[{ q, a }] }], contactPrompt, contactEmail }
|
|
32
|
+
terms,
|
|
33
|
+
privacy,
|
|
34
|
+
shipping,
|
|
35
|
+
returns,
|
|
36
|
+
accessibility: { eyebrow, title, lastUpdated, sections[{ heading, body | { intro, bullets[] } }] }
|
|
37
|
+
account: eyebrows + titles for /account, /login, /signup
|
|
38
|
+
contactPage: { eyebrow, title, body, reasons[], directLines[{ label, value, href }] }
|
|
39
|
+
trackOrder: { eyebrow, title, body }
|
|
40
|
+
footer: { blurb, sitemap[{ title, links[] }], poweredBy? }
|
|
41
|
+
llms: { summary } // opens /llms.txt
|
|
42
|
+
mock: { seed, businessId }
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Playbook — common tasks
|
|
46
|
+
|
|
47
|
+
### Rebrand a storefront for a new merchant
|
|
48
|
+
|
|
49
|
+
1. Edit `lib/brand.ts`. Replace every field with the merchant's content. Use the brief / context the user gave you.
|
|
50
|
+
2. Edit `app/globals.css` `@theme { … }`. Change `--color-primary`, `--color-background`, `--color-foreground`, optionally `--radius`. Use OKLCH; if the brand only gave hex, convert.
|
|
51
|
+
3. (Optional) Swap fonts in `app/layout.tsx` — `next/font/google` import + the variable wired into the `<html>` className.
|
|
52
|
+
4. Set `.env.local`: `NEXT_PUBLIC_CIMPLIFY_API_URL`, `NEXT_PUBLIC_CIMPLIFY_PUBLIC_KEY`, `NEXT_PUBLIC_CIMPLIFY_BUSINESS_ID`, `NEXT_PUBLIC_SITE_URL`.
|
|
53
|
+
|
|
54
|
+
Don't touch any other file. If the rebrand needs content not in the schema, add the field to `Brand` first, populate it, then read it from the page.
|
|
55
|
+
|
|
56
|
+
### Add a new section / component
|
|
57
|
+
|
|
58
|
+
1. Build it as a Server Component in `components/` (or a client island in `*-client.tsx` if interactive).
|
|
59
|
+
2. Read merchant copy from `brand`. Add new fields to the `Brand` interface if needed.
|
|
60
|
+
3. Wrap interactive bits in `<Suspense fallback={…}>` so the cached chrome streams.
|
|
61
|
+
4. Compose into the page.
|
|
62
|
+
|
|
63
|
+
### Wire a Server Action that mutates data
|
|
64
|
+
|
|
65
|
+
```ts
|
|
66
|
+
"use server";
|
|
67
|
+
import { getServerClient, revalidateProducts } from "@cimplify/sdk/server";
|
|
68
|
+
|
|
69
|
+
export async function createProduct(input: ProductInput) {
|
|
70
|
+
await getServerClient().catalogue.createProduct(input);
|
|
71
|
+
revalidateProducts();
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
After every mutation, call the matching `revalidate*` helper from `@cimplify/sdk/server`: `revalidateProducts`, `revalidateProduct(id)`, `revalidateCategories`, `revalidateCategory(id)`, `revalidateCollections`, `revalidateCollection(id)`, `revalidateBusiness`.
|
|
76
|
+
|
|
77
|
+
### Add a Server Component data fetch
|
|
78
|
+
|
|
79
|
+
```ts
|
|
80
|
+
import { cacheTag, cacheLife } from "next/cache";
|
|
81
|
+
import { getServerClient, tags } from "@cimplify/sdk/server";
|
|
82
|
+
|
|
83
|
+
async function getX() {
|
|
84
|
+
"use cache";
|
|
85
|
+
cacheTag(tags.products());
|
|
86
|
+
cacheLife("hours");
|
|
87
|
+
const r = await getServerClient().catalogue.getProducts({ limit: 24 });
|
|
88
|
+
if (!r.ok) throw new Error(r.error.message);
|
|
89
|
+
return r.value.items;
|
|
90
|
+
}
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Eject an SDK component for deeper customization
|
|
94
|
+
|
|
95
|
+
Try `classNames`, `renderImage`, `renderLink`, slot props first. If those run out:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
bunx @cimplify/sdk eject --list
|
|
99
|
+
bunx @cimplify/sdk eject product-card --dir src/components/cimplify
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Once ejected, the file is yours. Hooks/types still come from `@cimplify/sdk`.
|
|
103
|
+
|
|
104
|
+
### Deploy
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
bunx @cimplify/sdk login
|
|
108
|
+
bunx @cimplify/sdk projects create my-store
|
|
109
|
+
bunx @cimplify/sdk link <project-id>
|
|
110
|
+
bunx @cimplify/sdk env push
|
|
111
|
+
bunx @cimplify/sdk deploy --prod
|
|
112
|
+
bunx @cimplify/sdk logs --follow
|
|
113
|
+
bunx @cimplify/sdk domains add my-store.com
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Pitfalls — explicit ❌ list
|
|
117
|
+
|
|
118
|
+
- ❌ Hardcoding any visible string in a page or component. Always `brand.X`.
|
|
119
|
+
- ❌ Disabling `cacheComponents: true` to silence a warning. Fix the warning by wrapping the dynamic call in `<Suspense>`.
|
|
120
|
+
- ❌ Using `unstable_cache` — Next 16's canonical primitive is `'use cache'` + `cacheTag` + `cacheLife`.
|
|
121
|
+
- ❌ Bypassing `getServerClient()` and calling `createCimplifyClient` directly in a Server Component — loses per-request memoization.
|
|
122
|
+
- ❌ Mutating data without calling the matching `revalidate*` helper.
|
|
123
|
+
- ❌ Adding an `app/error.tsx` handler that calls `reset()` without logging — silently swallowed errors hide bugs.
|
|
124
|
+
- ❌ Running `bun test` and reporting failures. Use `bun run test:run` (vitest).
|
|
125
|
+
- ❌ Editing the per-template `AGENTS.md` to remove notes about TODOs (contact form, newsletter fake submits) — they're real.
|
|
126
|
+
|
|
127
|
+
## Where things live
|
|
128
|
+
|
|
129
|
+
| Need | Look here |
|
|
130
|
+
|---|---|
|
|
131
|
+
| Which page reads which `brand.X` field | `AGENTS.md` at project root |
|
|
132
|
+
| Architectural rules | `AGENTS.md` at project root + this skill |
|
|
133
|
+
| Running locally | `bun dev` (boots mock + Next together) |
|
|
134
|
+
| Switching mock seed | edit `dev:mock` in `package.json` and `NEXT_PUBLIC_CIMPLIFY_BUSINESS_ID` in `.env.local` |
|
|
135
|
+
| Full SDK reference | `docs/sdk/storefronts.md` in the Cimplify repo |
|
|
136
|
+
|
|
137
|
+
## What to do when the user asks something out-of-scope
|
|
138
|
+
|
|
139
|
+
If the user asks for something the template doesn't support out of the box:
|
|
140
|
+
|
|
141
|
+
1. **Check first** — is there an SDK component or hook that does it? `@cimplify/sdk/react` has 50+ components, 30+ hooks. Search `node_modules/@cimplify/sdk/dist/react.d.mts` if needed.
|
|
142
|
+
2. **Compose from existing parts** before authoring new ones.
|
|
143
|
+
3. **If genuinely missing** — build the new component, hoist its strings into `brand.ts`, document in `AGENTS.md`.
|
|
144
|
+
|
|
145
|
+
Don't introduce competing patterns (a new caching strategy, a new auth flow, a new theming system). The template's opinions are intentional.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Cimplify storefront — architectural rules and rebrand contract for a project scaffolded from `bunx @cimplify/sdk init`. Triggers when files like lib/brand.ts, app/globals.css, components/header.tsx, or .cimplify/project.json are in the workspace.
|
|
3
|
+
globs: ["lib/brand.ts", "app/**", "components/**", ".env.local", "next.config.ts"]
|
|
4
|
+
alwaysApply: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Cimplify storefront
|
|
8
|
+
|
|
9
|
+
This project was scaffolded from a Cimplify template. Read `AGENTS.md` at the project root for the file ↔ `brand.X` field map and `.claude/skills/cimplify-storefront/SKILL.md` for the full playbook.
|
|
10
|
+
|
|
11
|
+
## The contract
|
|
12
|
+
|
|
13
|
+
1. **`lib/brand.ts`** — every visible string. If something isn't there, add a field to the `Brand` interface; don't hardcode.
|
|
14
|
+
2. **`app/globals.css` `@theme` block** — palette, radius, font references.
|
|
15
|
+
3. **Server Components are cached** via `'use cache'` + `cacheTag(tags.X())` + `cacheLife("hours")`. Don't downgrade to client to silence a warning.
|
|
16
|
+
4. **Client islands** behind `<Suspense>`.
|
|
17
|
+
5. **`cacheComponents: true`** in `next.config.ts` is non-negotiable.
|
|
18
|
+
6. Use **`bun run test:run`** (vitest), not `bun test`.
|
|
19
|
+
|
|
20
|
+
## Don't
|
|
21
|
+
|
|
22
|
+
- Hardcode visible strings in pages/components.
|
|
23
|
+
- Use `unstable_cache` (Next 16 uses `'use cache'`).
|
|
24
|
+
- Bypass `getServerClient()` (loses per-request memoization).
|
|
25
|
+
- Mutate without calling the matching `revalidate*` helper from `@cimplify/sdk/server`.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Cimplify API base URL.
|
|
2
|
+
# Dev: leave empty so the SDK uses the current origin (localhost:3000),
|
|
3
|
+
# which Next.js rewrites to the mock at 127.0.0.1:8787 (see next.config.ts).
|
|
4
|
+
# Production: set to your Cimplify host (e.g. https://api.cimplify.io).
|
|
5
|
+
NEXT_PUBLIC_CIMPLIFY_API_URL=
|
|
6
|
+
|
|
7
|
+
# Tenant public key. The mock accepts any value.
|
|
8
|
+
NEXT_PUBLIC_CIMPLIFY_PUBLIC_KEY=mock-dev
|
|
9
|
+
|
|
10
|
+
# Business id used by the mock seed (default: Akua's Bakery).
|
|
11
|
+
NEXT_PUBLIC_CIMPLIFY_BUSINESS_ID=bus_default_akua_bakery
|
|
12
|
+
|
|
13
|
+
# Canonical public site URL — used by sitemap.xml, robots.txt, llms.txt,
|
|
14
|
+
# and OpenGraph metadata. Set this on production deploys (Vercel auto-injects
|
|
15
|
+
# via VERCEL_URL but Next prefers an explicit value).
|
|
16
|
+
NEXT_PUBLIC_SITE_URL=https://example.com
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# AGENTS.md — Bakery storefront template
|
|
2
|
+
|
|
3
|
+
If you are an AI agent (Claude, Cursor, Aider, devin, …) working on this storefront, **start here.**
|
|
4
|
+
|
|
5
|
+
## TL;DR for rebranding
|
|
6
|
+
|
|
7
|
+
To rebrand this storefront end-to-end as a different merchant:
|
|
8
|
+
|
|
9
|
+
1. **Edit `lib/brand.ts`.** Every visible string reads from this file.
|
|
10
|
+
2. **Edit `app/globals.css`** — the `@theme { … }` block holds the design tokens (palette, radius, font references).
|
|
11
|
+
3. **Edit `.env.local`** — set `NEXT_PUBLIC_CIMPLIFY_API_URL`, `NEXT_PUBLIC_CIMPLIFY_PUBLIC_KEY`, `NEXT_PUBLIC_CIMPLIFY_BUSINESS_ID`, `NEXT_PUBLIC_SITE_URL`.
|
|
12
|
+
|
|
13
|
+
That is the entire rebrand. Do not modify any `.tsx` file in `app/` or `components/` for content changes — they are design-only and read from `brand`.
|
|
14
|
+
|
|
15
|
+
## Rules
|
|
16
|
+
|
|
17
|
+
- ✅ All content edits → `lib/brand.ts`
|
|
18
|
+
- ✅ All design-token edits → `app/globals.css` `@theme` block
|
|
19
|
+
- ✅ Server Components stay cached via `'use cache'` + `cacheTag(tags.X())` + `cacheLife("hours")`
|
|
20
|
+
- ✅ Client islands (header active link, cart pill, product modal) live behind `<Suspense>`
|
|
21
|
+
- ❌ Don't hardcode strings. If a string isn't in `brand`, add a new field to the `Brand` interface.
|
|
22
|
+
- ❌ Don't disable `cacheComponents: true` in `next.config.ts`.
|
|
23
|
+
- ❌ Don't use `unstable_cache` — Next 16 uses the `'use cache'` directive.
|
|
24
|
+
|
|
25
|
+
## Page surface
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
app/
|
|
29
|
+
page.tsx Home — hero, collection strips, category grid
|
|
30
|
+
shop/page.tsx Full catalogue (SDK <CataloguePage/>)
|
|
31
|
+
search/page.tsx Search (SDK <SearchPage/>)
|
|
32
|
+
collections/[slug]/page.tsx Collection landing
|
|
33
|
+
categories/[slug]/page.tsx Category landing
|
|
34
|
+
|
|
35
|
+
cart/page.tsx SDK <CartPage/>
|
|
36
|
+
checkout/page.tsx SDK <CheckoutPage/>
|
|
37
|
+
orders/[id]/page.tsx Post-checkout confirmation (also target of /track-order)
|
|
38
|
+
|
|
39
|
+
account/page.tsx <CimplifyAccount /> (iframe — handles sign-in, dashboard)
|
|
40
|
+
account/orders/page.tsx <CimplifyAccount section="orders" />
|
|
41
|
+
account/addresses/page.tsx <CimplifyAccount section="addresses" />
|
|
42
|
+
account/settings/page.tsx <CimplifyAccount section="settings" />
|
|
43
|
+
login/page.tsx redirect → /account (iframe owns sign-in UI)
|
|
44
|
+
signup/page.tsx redirect → /account (iframe owns sign-up UI)
|
|
45
|
+
|
|
46
|
+
contact/page.tsx Contact form (Server Action wiring TODO; currently fakes submit)
|
|
47
|
+
track-order/page.tsx Guest order lookup → /orders/[id]
|
|
48
|
+
|
|
49
|
+
about/page.tsx Brand story
|
|
50
|
+
faq/page.tsx FAQ
|
|
51
|
+
shipping/page.tsx Standalone shipping policy
|
|
52
|
+
returns/page.tsx Standalone returns policy
|
|
53
|
+
accessibility/page.tsx Accessibility statement (WCAG 2.1 AA)
|
|
54
|
+
terms/page.tsx Terms of Service
|
|
55
|
+
privacy/page.tsx Privacy Policy
|
|
56
|
+
|
|
57
|
+
sitemap-page/page.tsx Human-readable HTML sitemap
|
|
58
|
+
sitemap.ts XML sitemap (search engines)
|
|
59
|
+
robots.ts robots.txt
|
|
60
|
+
llms.txt/route.ts LLM-friendly Markdown index
|
|
61
|
+
opensearch.xml/route.ts Browser address-bar search description
|
|
62
|
+
error.tsx, not-found.tsx Global boundaries
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## File ↔ brand-field map
|
|
66
|
+
|
|
67
|
+
| File | Reads from `brand` |
|
|
68
|
+
|---|---|
|
|
69
|
+
| `app/layout.tsx` | identity, contact, socials, schemaType (Organization JSON-LD), `metadataBase` |
|
|
70
|
+
| `app/page.tsx` | `brand.hero` (Hero badge / title / subtitle) |
|
|
71
|
+
| `app/about/page.tsx` | `brand.about` |
|
|
72
|
+
| `app/faq/page.tsx` | `brand.faq` |
|
|
73
|
+
| `app/terms/page.tsx` | `brand.terms` |
|
|
74
|
+
| `app/privacy/page.tsx` | `brand.privacy` |
|
|
75
|
+
| `app/shipping/page.tsx` | `brand.shipping` |
|
|
76
|
+
| `app/returns/page.tsx` | `brand.returns` |
|
|
77
|
+
| `app/accessibility/page.tsx` | `brand.accessibility` |
|
|
78
|
+
| `app/contact/page.tsx` | `brand.contactPage`, `brand.contact` |
|
|
79
|
+
| `app/track-order/page.tsx` | `brand.trackOrder` |
|
|
80
|
+
| `app/account/*/page.tsx` | `brand.account` (eyebrows + titles only — Cimplify Link iframe owns the UI) |
|
|
81
|
+
| `app/login/page.tsx`, `app/signup/page.tsx` | `brand.account` (metadata only — both redirect to `/account`) |
|
|
82
|
+
| `app/llms.txt/route.ts` | `brand.llms`, contact, currency |
|
|
83
|
+
| `app/opensearch.xml/route.ts` | `brand.shortName`, `brand.name` |
|
|
84
|
+
| `app/sitemap.ts`, `robots.ts` | derives URLs from product/category data |
|
|
85
|
+
| `app/not-found.tsx` | `brand.name` (page title) |
|
|
86
|
+
| `components/header.tsx` | `brand.shortName`, `brand.microTag`, `brand.header.nav` |
|
|
87
|
+
| `components/footer.tsx` | `brand.footer`, `brand.contact`, `brand.socials` |
|
|
88
|
+
|
|
89
|
+
## Bakery-specific notes
|
|
90
|
+
|
|
91
|
+
- Product detail uses a **URL-driven modal** (`?product=<slug>`), not a static `/products/[slug]` route. Fits impulse-purchase food UX.
|
|
92
|
+
- Schema.org `@type` is `Bakery` — set in `brand.schemaType`.
|
|
93
|
+
- Mock seed: `--seed default` (Akua's Bakery). To preview a different industry, edit `dev:mock` in `package.json` and update `NEXT_PUBLIC_CIMPLIFY_BUSINESS_ID`.
|
|
94
|
+
|
|
95
|
+
## Known TODOs (not blocking, but worth knowing)
|
|
96
|
+
|
|
97
|
+
- `app/contact/contact-form.tsx` fakes a successful submit. In production, wire a Server Action that calls `client.support.sendMessage(...)` from `@cimplify/sdk/server`.
|
|
98
|
+
- `components/newsletter.tsx` (homepage strip) similarly fakes submit. Wire to a real list provider.
|
|
99
|
+
- Hero / lookbook imagery is Unsplash placeholder — replace with merchant assets.
|
|
100
|
+
|
|
101
|
+
## Customizing SDK components
|
|
102
|
+
|
|
103
|
+
For anything beyond `lib/brand.ts` + `app/globals.css`, lean on the SDK's prebuilt components rather than reinvent. **Especially for product customization** (variants, add-ons, bundles, composites, services with scheduling) — the SDK already gets price math, axis matching, and cart payload contracts right. Default to ejecting and restyling:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
bunx @cimplify/sdk add cart-drawer
|
|
107
|
+
bunx @cimplify/sdk add variant-selector
|
|
108
|
+
bunx @cimplify/sdk add product-page
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Then edit the local copy. **Don't change the cart payload shape** unless you're also touching the SDK mock + backend lens. Full ejection rules and the customizer contract are in the SDK-level [`AGENTS.md`](../../AGENTS.md) → "Don't reinvent product customization".
|
|
112
|
+
|
|
113
|
+
## Quick start
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
bun install
|
|
117
|
+
bun dev # boots mock + Next dev server
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Open <http://localhost:3000>.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This project was scaffolded from a Cimplify storefront template (`bunx @cimplify/sdk init`).
|
|
4
|
+
|
|
5
|
+
## Read these first
|
|
6
|
+
|
|
7
|
+
- **`AGENTS.md`** at the project root — the file ↔ `brand.X` field map for *this template's* industry, plus the architectural rules.
|
|
8
|
+
- **`.claude/skills/cimplify-storefront/SKILL.md`** — the playbook for common tasks (rebrand, add a section, wire a Server Action, deploy, eject a component). Invoke it whenever you're asked to change content, palette, copy, or routing.
|
|
9
|
+
|
|
10
|
+
## The two-line summary
|
|
11
|
+
|
|
12
|
+
1. **Edit `lib/brand.ts`** for any visible string.
|
|
13
|
+
2. **Edit `app/globals.css` `@theme` block** for any palette / radius / font change.
|
|
14
|
+
|
|
15
|
+
That covers ~95% of what merchants ask for. For anything else, follow the `cimplify-storefront` skill.
|
|
16
|
+
|
|
17
|
+
## Don't do
|
|
18
|
+
|
|
19
|
+
- Hardcode strings in pages or components.
|
|
20
|
+
- Disable `cacheComponents: true` in `next.config.ts`.
|
|
21
|
+
- Use `unstable_cache` — Next 16's canonical primitive is `'use cache'`.
|
|
22
|
+
- Run `bun test` (Bun's `vi` shim is incomplete) — use `bun run test:run`.
|