From 38403fe86301d9563690fdcd9507f38cbd8ee73d Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Sat, 9 Aug 2025 14:42:03 +0530 Subject: [PATCH] chore(web): add vibe rules in stack builder --- apps/web/src/app/(home)/_components/stack-builder.tsx | 1 + apps/web/src/lib/constant.ts | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/apps/web/src/app/(home)/_components/stack-builder.tsx b/apps/web/src/app/(home)/_components/stack-builder.tsx index f3df09b..80e24ad 100644 --- a/apps/web/src/app/(home)/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/_components/stack-builder.tsx @@ -1004,6 +1004,7 @@ const generateCommand = (stackState: StackState): string => { "ultracite", "fumadocs", "oxlint", + "vibe-rules", ].includes(addon), ); if (validAddons.length > 0) { diff --git a/apps/web/src/lib/constant.ts b/apps/web/src/lib/constant.ts index e7910ca..ff7fa76 100644 --- a/apps/web/src/lib/constant.ts +++ b/apps/web/src/lib/constant.ts @@ -469,6 +469,14 @@ export const TECH_OPTIONS: Record< color: "from-orange-500 to-orange-700", default: false, }, + { + id: "vibe-rules", + name: "Vibe Rules", + description: "Install and apply BTS rules to editors", + icon: "", + color: "from-violet-500 to-violet-700", + default: false, + }, { id: "turborepo", name: "Turborepo",