@next-vibe/checker 1.0.49 → 1.0.51
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/.dist/README.md +142 -245
- package/.dist/bin/vibe-runtime.js +37 -122
- package/.dist/bin/vibe-runtime.js.map +25 -25
- package/README.md +142 -245
- package/check.config.ts +1 -2
- package/package.json +1 -1
- package/src/app/api/[locale]/system/builder/definition.ts +7 -1
- package/src/app/api/[locale]/system/check/config/types.ts +0 -2
- package/src/app/api/[locale]/system/check/lint/definition.ts +0 -14
- package/src/app/api/[locale]/system/check/lint/i18n/de/index.ts +0 -4
- package/src/app/api/[locale]/system/check/lint/i18n/en/index.ts +0 -4
- package/src/app/api/[locale]/system/check/lint/i18n/pl/index.ts +0 -4
- package/src/app/api/[locale]/system/check/lint/repository.ts +1 -4
- package/src/app/api/[locale]/system/check/oxlint/definition.ts +0 -14
- package/src/app/api/[locale]/system/check/oxlint/i18n/de/index.ts +0 -4
- package/src/app/api/[locale]/system/check/oxlint/i18n/en/index.ts +0 -4
- package/src/app/api/[locale]/system/check/oxlint/i18n/pl/index.ts +0 -4
- package/src/app/api/[locale]/system/check/oxlint/repository.ts +4 -18
- package/src/app/api/[locale]/system/check/test-project/check.config.ts +0 -1
- package/src/app/api/[locale]/system/check/test-project/tsconfig.tsbuildinfo +1 -1
- package/src/app/api/[locale]/system/check/typecheck/definition.ts +0 -12
- package/src/app/api/[locale]/system/check/typecheck/i18n/de/index.ts +0 -4
- package/src/app/api/[locale]/system/check/typecheck/i18n/en/index.ts +0 -4
- package/src/app/api/[locale]/system/check/typecheck/i18n/pl/index.ts +0 -4
- package/src/app/api/[locale]/system/check/typecheck/repository.ts +1 -4
- package/src/app/api/[locale]/system/check/vibe-check/definition.ts +0 -17
- package/src/app/api/[locale]/system/check/vibe-check/i18n/de/index.ts +0 -4
- package/src/app/api/[locale]/system/check/vibe-check/i18n/en/index.ts +0 -4
- package/src/app/api/[locale]/system/check/vibe-check/i18n/pl/index.ts +0 -4
- package/src/app/api/[locale]/system/check/vibe-check/repository.ts +1 -8
- package/src/app/api/[locale]/system/help/interactive/definition.ts +6 -1
- package/src/app/api/[locale]/system/unified-interface/cli/vibe-runtime.ts +1 -1
|
@@ -71,7 +71,6 @@ export class VibeCheckRepository {
|
|
|
71
71
|
skipSorting: true,
|
|
72
72
|
limit: 999999,
|
|
73
73
|
page: 1,
|
|
74
|
-
maxFilesInSummary: 999999,
|
|
75
74
|
},
|
|
76
75
|
logger,
|
|
77
76
|
config,
|
|
@@ -101,7 +100,6 @@ export class VibeCheckRepository {
|
|
|
101
100
|
skipSorting: true,
|
|
102
101
|
limit: 999999,
|
|
103
102
|
page: 1,
|
|
104
|
-
maxFilesInSummary: 999999,
|
|
105
103
|
},
|
|
106
104
|
logger,
|
|
107
105
|
config,
|
|
@@ -129,7 +127,6 @@ export class VibeCheckRepository {
|
|
|
129
127
|
disableFilter: false,
|
|
130
128
|
limit: 999999,
|
|
131
129
|
page: 1,
|
|
132
|
-
maxFilesInSummary: 999999,
|
|
133
130
|
},
|
|
134
131
|
logger,
|
|
135
132
|
config,
|
|
@@ -242,7 +239,6 @@ export class VibeCheckRepository {
|
|
|
242
239
|
timeout: data.timeout ?? defaults.timeout ?? 3600,
|
|
243
240
|
limit: data.limit ?? defaults.limit ?? 200,
|
|
244
241
|
page: data.page ?? 1,
|
|
245
|
-
maxFilesInSummary: data.maxFilesInSummary ?? defaults.maxFilesInSummary ?? 50,
|
|
246
242
|
};
|
|
247
243
|
|
|
248
244
|
const pathsToCheck = this.normalizePaths(effectiveData.paths);
|
|
@@ -333,7 +329,6 @@ export class VibeCheckRepository {
|
|
|
333
329
|
sortedIssues,
|
|
334
330
|
effectiveData.limit,
|
|
335
331
|
effectiveData.page,
|
|
336
|
-
effectiveData.maxFilesInSummary,
|
|
337
332
|
isMCP, // Skip files list for compact MCP responses
|
|
338
333
|
);
|
|
339
334
|
|
|
@@ -432,7 +427,6 @@ export class VibeCheckRepository {
|
|
|
432
427
|
allIssues: CheckIssue[],
|
|
433
428
|
limit: number,
|
|
434
429
|
page: number,
|
|
435
|
-
maxFilesInSummary: number,
|
|
436
430
|
skipFiles = false,
|
|
437
431
|
): VibeCheckResponseOutput {
|
|
438
432
|
const totalIssues = allIssues.length;
|
|
@@ -459,8 +453,7 @@ export class VibeCheckRepository {
|
|
|
459
453
|
|
|
460
454
|
if (!skipFiles) {
|
|
461
455
|
const fileStats = this.buildFileStats(allIssues);
|
|
462
|
-
|
|
463
|
-
files = allFiles.slice(0, maxFilesInSummary);
|
|
456
|
+
files = this.formatFileStats(fileStats);
|
|
464
457
|
}
|
|
465
458
|
|
|
466
459
|
return {
|
|
@@ -32,7 +32,12 @@ const { POST } = createEndpoint({
|
|
|
32
32
|
"app.api.system.help.interactive.post.tags.help",
|
|
33
33
|
],
|
|
34
34
|
icon: "book",
|
|
35
|
-
allowedRoles: [
|
|
35
|
+
allowedRoles: [
|
|
36
|
+
UserRole.PRODUCTION_OFF,
|
|
37
|
+
UserRole.AI_TOOL_OFF,
|
|
38
|
+
UserRole.CLI_AUTH_BYPASS,
|
|
39
|
+
UserRole.MCP_OFF,
|
|
40
|
+
],
|
|
36
41
|
aliases: [INTERACTIVE_MODE_ALIAS, "i"],
|
|
37
42
|
|
|
38
43
|
fields: objectField(
|
|
@@ -49,7 +49,7 @@ interface CliOptions {
|
|
|
49
49
|
* CLI Constants to avoid literal strings
|
|
50
50
|
*/
|
|
51
51
|
const CLI_NAME = "vibe-check" as const;
|
|
52
|
-
const CLI_VERSION = "1.0.
|
|
52
|
+
const CLI_VERSION = "1.0.51";
|
|
53
53
|
const DEFAULT_OUTPUT = "pretty" as const;
|
|
54
54
|
|
|
55
55
|
import { cliEnv } from "./env";
|