@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.
Files changed (32) hide show
  1. package/.dist/README.md +142 -245
  2. package/.dist/bin/vibe-runtime.js +37 -122
  3. package/.dist/bin/vibe-runtime.js.map +25 -25
  4. package/README.md +142 -245
  5. package/check.config.ts +1 -2
  6. package/package.json +1 -1
  7. package/src/app/api/[locale]/system/builder/definition.ts +7 -1
  8. package/src/app/api/[locale]/system/check/config/types.ts +0 -2
  9. package/src/app/api/[locale]/system/check/lint/definition.ts +0 -14
  10. package/src/app/api/[locale]/system/check/lint/i18n/de/index.ts +0 -4
  11. package/src/app/api/[locale]/system/check/lint/i18n/en/index.ts +0 -4
  12. package/src/app/api/[locale]/system/check/lint/i18n/pl/index.ts +0 -4
  13. package/src/app/api/[locale]/system/check/lint/repository.ts +1 -4
  14. package/src/app/api/[locale]/system/check/oxlint/definition.ts +0 -14
  15. package/src/app/api/[locale]/system/check/oxlint/i18n/de/index.ts +0 -4
  16. package/src/app/api/[locale]/system/check/oxlint/i18n/en/index.ts +0 -4
  17. package/src/app/api/[locale]/system/check/oxlint/i18n/pl/index.ts +0 -4
  18. package/src/app/api/[locale]/system/check/oxlint/repository.ts +4 -18
  19. package/src/app/api/[locale]/system/check/test-project/check.config.ts +0 -1
  20. package/src/app/api/[locale]/system/check/test-project/tsconfig.tsbuildinfo +1 -1
  21. package/src/app/api/[locale]/system/check/typecheck/definition.ts +0 -12
  22. package/src/app/api/[locale]/system/check/typecheck/i18n/de/index.ts +0 -4
  23. package/src/app/api/[locale]/system/check/typecheck/i18n/en/index.ts +0 -4
  24. package/src/app/api/[locale]/system/check/typecheck/i18n/pl/index.ts +0 -4
  25. package/src/app/api/[locale]/system/check/typecheck/repository.ts +1 -4
  26. package/src/app/api/[locale]/system/check/vibe-check/definition.ts +0 -17
  27. package/src/app/api/[locale]/system/check/vibe-check/i18n/de/index.ts +0 -4
  28. package/src/app/api/[locale]/system/check/vibe-check/i18n/en/index.ts +0 -4
  29. package/src/app/api/[locale]/system/check/vibe-check/i18n/pl/index.ts +0 -4
  30. package/src/app/api/[locale]/system/check/vibe-check/repository.ts +1 -8
  31. package/src/app/api/[locale]/system/help/interactive/definition.ts +6 -1
  32. 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
- const allFiles = this.formatFileStats(fileStats);
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: [UserRole.PRODUCTION_OFF, UserRole.AI_TOOL_OFF, UserRole.CLI_AUTH_BYPASS],
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.49";
52
+ const CLI_VERSION = "1.0.51";
53
53
  const DEFAULT_OUTPUT = "pretty" as const;
54
54
 
55
55
  import { cliEnv } from "./env";