@next-vibe/checker 3.0.4 → 3.0.5
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/package-runtime.js.map +5 -5
- package/bin/vibe-check.js +5 -5
- package/package.json +1 -1
package/bin/vibe-check.js
CHANGED
|
@@ -235540,7 +235540,7 @@ var init_stub_endpoints_meta = __esm(() => {
|
|
|
235540
235540
|
toolName: "check",
|
|
235541
235541
|
method: "POST",
|
|
235542
235542
|
path: ["system", "check", "vibe-check"],
|
|
235543
|
-
allowedRoles: ["enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235543
|
+
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235544
235544
|
aliases: ["c"],
|
|
235545
235545
|
title: "Run code quality checks",
|
|
235546
235546
|
description: "Run oxlint, ESLint, and TypeScript type checks in parallel. Pass paths to check specific dirs.",
|
|
@@ -235552,7 +235552,7 @@ var init_stub_endpoints_meta = __esm(() => {
|
|
|
235552
235552
|
toolName: "config",
|
|
235553
235553
|
method: "POST",
|
|
235554
235554
|
path: ["system", "check", "config", "create"],
|
|
235555
|
-
allowedRoles: ["enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235555
|
+
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235556
235556
|
aliases: ["config-create", "create-config", "cc"],
|
|
235557
235557
|
title: "Create check.config.ts",
|
|
235558
235558
|
description: "Interactive wizard to create or update your check.config.ts configuration file.",
|
|
@@ -235564,7 +235564,7 @@ var init_stub_endpoints_meta = __esm(() => {
|
|
|
235564
235564
|
toolName: "help",
|
|
235565
235565
|
method: "GET",
|
|
235566
235566
|
path: ["system", "help"],
|
|
235567
|
-
allowedRoles: ["enums.userRole.admin", "enums.userRole.cliAuthBypass"],
|
|
235567
|
+
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.cliAuthBypass"],
|
|
235568
235568
|
aliases: ["h", "ls", "list", "ai-tools", "tool-help", "tools:list"],
|
|
235569
235569
|
title: "List available commands",
|
|
235570
235570
|
description: "List all available vibe-check commands and their options.",
|
|
@@ -239419,7 +239419,7 @@ class HelpRepository {
|
|
|
239419
239419
|
if (platformFilter) {
|
|
239420
239420
|
const mapped = HelpRepository.mapFilterToPlatform(platformFilter);
|
|
239421
239421
|
discoveryPlatform = mapped === "all" ? "cli" /* CLI */ : mapped;
|
|
239422
|
-
} else if (!isCompact) {
|
|
239422
|
+
} else if (!isCompact && platform2 !== "cli-package" /* CLI_PACKAGE */) {
|
|
239423
239423
|
discoveryPlatform = "ai" /* AI */;
|
|
239424
239424
|
} else {
|
|
239425
239425
|
discoveryPlatform = platform2;
|
|
@@ -248332,4 +248332,4 @@ runCli({
|
|
|
248332
248332
|
getEndpoint
|
|
248333
248333
|
});
|
|
248334
248334
|
|
|
248335
|
-
//# debugId=
|
|
248335
|
+
//# debugId=565323AD04139FDF64756E2164756E21
|