@next-vibe/checker 3.0.4 → 3.0.6

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/bin/vibe-check.js CHANGED
@@ -113611,6 +113611,7 @@ var init_widget_cli3 = __esm(async () => {
113611
113611
  createMcpConfig: "Create MCP config (.mcp.json / mcp.json)?",
113612
113612
  updateVscodeSettings: "Update VSCode settings (.vscode/settings.json)?",
113613
113613
  updatePackageJson: "Update package.json scripts (check, lint, typecheck)?",
113614
+ enableEslint: "Enable ESLint? (import sorting, React hooks \u2014 slower but catches more)",
113614
113615
  enableReactRules: "Enable React-specific linting rules?",
113615
113616
  enableNextjsRules: "Enable Next.js-specific linting rules?",
113616
113617
  enableI18nRules: "Enable i18n linting rules?",
@@ -113634,6 +113635,11 @@ var init_widget_cli3 = __esm(async () => {
113634
113635
  label: STEP_LABELS.updatePackageJson,
113635
113636
  defaultValue: true
113636
113637
  },
113638
+ {
113639
+ key: "enableEslint",
113640
+ label: STEP_LABELS.enableEslint,
113641
+ defaultValue: true
113642
+ },
113637
113643
  {
113638
113644
  key: "enableReactRules",
113639
113645
  label: STEP_LABELS.enableReactRules,
@@ -235540,7 +235546,7 @@ var init_stub_endpoints_meta = __esm(() => {
235540
235546
  toolName: "check",
235541
235547
  method: "POST",
235542
235548
  path: ["system", "check", "vibe-check"],
235543
- allowedRoles: ["enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
235549
+ allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
235544
235550
  aliases: ["c"],
235545
235551
  title: "Run code quality checks",
235546
235552
  description: "Run oxlint, ESLint, and TypeScript type checks in parallel. Pass paths to check specific dirs.",
@@ -235552,7 +235558,7 @@ var init_stub_endpoints_meta = __esm(() => {
235552
235558
  toolName: "config",
235553
235559
  method: "POST",
235554
235560
  path: ["system", "check", "config", "create"],
235555
- allowedRoles: ["enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
235561
+ allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
235556
235562
  aliases: ["config-create", "create-config", "cc"],
235557
235563
  title: "Create check.config.ts",
235558
235564
  description: "Interactive wizard to create or update your check.config.ts configuration file.",
@@ -235564,7 +235570,7 @@ var init_stub_endpoints_meta = __esm(() => {
235564
235570
  toolName: "help",
235565
235571
  method: "GET",
235566
235572
  path: ["system", "help"],
235567
- allowedRoles: ["enums.userRole.admin", "enums.userRole.cliAuthBypass"],
235573
+ allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.cliAuthBypass"],
235568
235574
  aliases: ["h", "ls", "list", "ai-tools", "tool-help", "tools:list"],
235569
235575
  title: "List available commands",
235570
235576
  description: "List all available vibe-check commands and their options.",
@@ -239419,7 +239425,7 @@ class HelpRepository {
239419
239425
  if (platformFilter) {
239420
239426
  const mapped = HelpRepository.mapFilterToPlatform(platformFilter);
239421
239427
  discoveryPlatform = mapped === "all" ? "cli" /* CLI */ : mapped;
239422
- } else if (!isCompact) {
239428
+ } else if (!isCompact && platform2 !== "cli-package" /* CLI_PACKAGE */) {
239423
239429
  discoveryPlatform = "ai" /* AI */;
239424
239430
  } else {
239425
239431
  discoveryPlatform = platform2;
@@ -248332,4 +248338,4 @@ runCli({
248332
248338
  getEndpoint
248333
248339
  });
248334
248340
 
248335
- //# debugId=098AF57F2414C99964756E2164756E21
248341
+ //# debugId=7B018EC9C94644A264756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-vibe/checker",
3
- "version": "3.0.4",
3
+ "version": "3.0.6",
4
4
  "description": "Standalone code quality checker (oxlint + eslint + TypeScript) for next-vibe projects",
5
5
  "type": "module",
6
6
  "license": "MIT",