{
  "projectName": "MakerKit SaaS Project",
  "projectType": "monorepo",
  "rules": [
    {
      "id": "claude-essentials",
      "enabled": true,
      "variables": {
        "package.file": "package.json",
        "translation.function": "t",
        "lint.command": "pnpm lint",
        "typecheck.command": "pnpm typecheck",
        "test.command": "pnpm test"
      }
    },
    {
      "id": "code-standards",
      "enabled": true
    },
    {
      "id": "security-standards",
      "enabled": true,
      "variables": {
        "secrets.manager": "1Password",
        "auth.method": "Supabase Auth",
        "security.scanCommand": "pnpm audit"
      }
    },
    {
      "id": "testing-standards",
      "enabled": true,
      "variables": {
        "coverage.unit": "80",
        "test.unit": "pnpm test",
        "test.integration": "pnpm run test:integration",
        "test.e2e": "pnpm run test:e2e",
        "test.watch": "pnpm test -- --watch",
        "test.coverage": "pnpm run test:coverage",
        "test.directory": "__tests__",
        "test.extension": "ts"
      }
    },
    {
      "id": "project-workflow",
      "enabled": true,
      "variables": {
        "packages.namespace": "@kit",
        "package.manager": "pnpm"
      }
    },
    {
      "id": "makerkit-complete",
      "enabled": true,
      "variables": {
        "dev.command": "pnpm dev",
        "dev.filter": "pnpm --filter web dev",
        "build.command": "pnpm build",
        "lint.command": "pnpm lint",
        "typecheck.command": "pnpm typecheck",
        "db.start": "pnpm supabase:start",
        "db.reset": "pnpm supabase:reset",
        "db.typegen": "pnpm supabase:typegen",
        "package.build": "pnpm --filter @kit/ui build",
        "package.add": "pnpm --filter web add lodash",
        "package.manager": "pnpm",
        "package.filter": "pnpm --filter"
      }
    }
  ],
  "globalVariables": {
    "project.name": "MakerKit SaaS Project",
    "project.type": "SaaS application built with MakerKit framework, Next.js 15, Supabase, and Turborepo"
  }
}