@next-vibe/checker 3.0.6 → 3.0.7
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/AGENTS.md +11 -21
- package/README.md +22 -28
- package/bin/package-runtime.js.map +4 -4
- package/bin/vibe-check.js +5 -39
- package/package.json +3 -1
package/bin/vibe-check.js
CHANGED
|
@@ -235541,44 +235541,7 @@ __export(exports_stub_endpoints_meta, {
|
|
|
235541
235541
|
});
|
|
235542
235542
|
var endpointsMeta;
|
|
235543
235543
|
var init_stub_endpoints_meta = __esm(() => {
|
|
235544
|
-
endpointsMeta = [
|
|
235545
|
-
{
|
|
235546
|
-
toolName: "check",
|
|
235547
|
-
method: "POST",
|
|
235548
|
-
path: ["system", "check", "vibe-check"],
|
|
235549
|
-
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235550
|
-
aliases: ["c"],
|
|
235551
|
-
title: "Run code quality checks",
|
|
235552
|
-
description: "Run oxlint, ESLint, and TypeScript type checks in parallel. Pass paths to check specific dirs.",
|
|
235553
|
-
icon: "check-circle",
|
|
235554
|
-
category: "Code Quality",
|
|
235555
|
-
tags: ["lint", "typecheck"]
|
|
235556
|
-
},
|
|
235557
|
-
{
|
|
235558
|
-
toolName: "config",
|
|
235559
|
-
method: "POST",
|
|
235560
|
-
path: ["system", "check", "config", "create"],
|
|
235561
|
-
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.webOff", "enums.userRole.productionOff", "enums.userRole.aiToolOff", "enums.userRole.cliAuthBypass"],
|
|
235562
|
-
aliases: ["config-create", "create-config", "cc"],
|
|
235563
|
-
title: "Create check.config.ts",
|
|
235564
|
-
description: "Interactive wizard to create or update your check.config.ts configuration file.",
|
|
235565
|
-
icon: "wrench",
|
|
235566
|
-
category: "Code Quality",
|
|
235567
|
-
tags: ["config", "setup"]
|
|
235568
|
-
},
|
|
235569
|
-
{
|
|
235570
|
-
toolName: "help",
|
|
235571
|
-
method: "GET",
|
|
235572
|
-
path: ["system", "help"],
|
|
235573
|
-
allowedRoles: ["enums.userRole.public", "enums.userRole.admin", "enums.userRole.cliAuthBypass"],
|
|
235574
|
-
aliases: ["h", "ls", "list", "ai-tools", "tool-help", "tools:list"],
|
|
235575
|
-
title: "List available commands",
|
|
235576
|
-
description: "List all available vibe-check commands and their options.",
|
|
235577
|
-
icon: "help-circle",
|
|
235578
|
-
category: "System",
|
|
235579
|
-
tags: ["help", "list"]
|
|
235580
|
-
}
|
|
235581
|
-
];
|
|
235544
|
+
endpointsMeta = [{ toolName: "check" }, { toolName: "config-create" }];
|
|
235582
235545
|
});
|
|
235583
235546
|
|
|
235584
235547
|
// src/app/api/[locale]/system/help/interactive.cli.tsx
|
|
@@ -248040,6 +248003,9 @@ function runCli({
|
|
|
248040
248003
|
let command = rawCommand;
|
|
248041
248004
|
if (!command && defaultEndpoint) {
|
|
248042
248005
|
command = defaultEndpoint;
|
|
248006
|
+
} else if (command && defaultEndpoint && getEndpoint2 && command !== "mcp" && command !== "help" && command !== "h" && !await getEndpoint2(command)) {
|
|
248007
|
+
args = [command, ...args];
|
|
248008
|
+
command = defaultEndpoint;
|
|
248043
248009
|
}
|
|
248044
248010
|
if (command) {
|
|
248045
248011
|
const resolved = resolveCommandFromPath(command);
|
|
@@ -248338,4 +248304,4 @@ runCli({
|
|
|
248338
248304
|
getEndpoint
|
|
248339
248305
|
});
|
|
248340
248306
|
|
|
248341
|
-
//# debugId=
|
|
248307
|
+
//# debugId=9B680B78CB7CA9FC64756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-vibe/checker",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "Standalone code quality checker (oxlint + eslint + TypeScript) for next-vibe projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
],
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"oxlint": ">=1.0.0",
|
|
41
|
+
"oxfmt": ">=0.40.0",
|
|
42
|
+
"@typescript/native-preview": ">=7.0.0",
|
|
41
43
|
"eslint": ">=9.0.0",
|
|
42
44
|
"typescript": ">=5.0.0",
|
|
43
45
|
"eslint-plugin-react-compiler": ">=19.0.0",
|