@kevinrabun/judges 3.118.0 → 3.121.0
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/README.md +31 -1
- package/dist/api.d.ts +3 -2
- package/dist/api.js +4 -2
- package/dist/cli-dispatch.d.ts +7 -0
- package/dist/cli-dispatch.js +654 -0
- package/dist/cli-formatters.d.ts +6 -0
- package/dist/cli-formatters.js +186 -0
- package/dist/cli.js +69 -4159
- package/dist/commands/baseline.js +2 -42
- package/dist/commands/coverage.js +3 -39
- package/dist/commands/diff.js +2 -38
- package/dist/commands/fix-pr.js +2 -23
- package/dist/commands/fix.js +3 -27
- package/dist/commands/llm-benchmark.d.ts +7 -0
- package/dist/commands/llm-benchmark.js +27 -1
- package/dist/commands/quality-gate.js +1 -12
- package/dist/commands/review-parallel.js +1 -19
- package/dist/commands/review.js +2 -33
- package/dist/commands/rule-test.js +1 -15
- package/dist/commands/tune.js +2 -29
- package/dist/commands/watch.js +3 -42
- package/dist/evaluators/hallucination-detection.js +343 -0
- package/dist/evaluators/index.d.ts +14 -11
- package/dist/evaluators/index.js +4 -182
- package/dist/evaluators/security.js +226 -2
- package/dist/evaluators/suppressions.d.ts +49 -0
- package/dist/evaluators/suppressions.js +185 -0
- package/dist/ext-to-lang.d.ts +16 -0
- package/dist/ext-to-lang.js +60 -0
- package/dist/github-app.d.ts +1 -3
- package/dist/github-app.js +2 -34
- package/dist/parallel.js +2 -14
- package/dist/tools/deep-review.d.ts +13 -2
- package/dist/tools/deep-review.js +76 -16
- package/dist/tools/register-evaluation.js +2 -29
- package/dist/tools/register-review.js +17 -3
- package/dist/tools/register-workflow.js +7 -1
- package/package.json +1 -1
- package/server.json +2 -2
|
@@ -0,0 +1,654 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Command dispatch table — maps CLI command names to their module path
|
|
3
|
+
* and exported handler function name. Each entry is lazily imported.
|
|
4
|
+
*
|
|
5
|
+
* Format: "command-name": ["./module-path.js", "exportedFunctionName"]
|
|
6
|
+
*/
|
|
7
|
+
export const COMMAND_TABLE = {
|
|
8
|
+
"adoption-report": ["./commands/adoption-report.js", "runAdoptionReport"],
|
|
9
|
+
"adoption-track": ["./commands/adoption-track.js", "runAdoptionTrack"],
|
|
10
|
+
"ai-gate": ["./commands/ai-gate.js", "runAiGate"],
|
|
11
|
+
"ai-model-trust": ["./commands/ai-model-trust.js", "runAiModelTrust"],
|
|
12
|
+
"ai-output-compare": ["./commands/ai-output-compare.js", "runAiOutputCompare"],
|
|
13
|
+
"ai-pattern-trend": ["./commands/ai-pattern-trend.js", "runAiPatternTrend"],
|
|
14
|
+
"ai-prompt-audit": ["./commands/ai-prompt-audit.js", "runAiPromptAudit"],
|
|
15
|
+
"ai-provenance": ["./commands/ai-provenance.js", "runAiProvenance"],
|
|
16
|
+
"api-audit": ["./commands/api-audit.js", "runApiAudit"],
|
|
17
|
+
"api-misuse": ["./commands/api-misuse.js", "runApiMisuse"],
|
|
18
|
+
"api-versioning-audit": ["./commands/api-versioning-audit.js", "runApiVersioningAudit"],
|
|
19
|
+
"approve-chain": ["./commands/approve-chain.js", "runApproveChain"],
|
|
20
|
+
"arch-audit": ["./commands/arch-audit.js", "runArchAudit"],
|
|
21
|
+
"assertion-density": ["./commands/assertion-density.js", "runAssertionDensity"],
|
|
22
|
+
assign: ["./commands/assign-findings.js", "runAssignFindings"],
|
|
23
|
+
"async-safety": ["./commands/async-safety.js", "runAsyncSafety"],
|
|
24
|
+
"audit-bundle": ["./commands/audit-bundle.js", "runAuditBundle"],
|
|
25
|
+
"audit-trail": ["./commands/audit-trail.js", "runAuditTrail"],
|
|
26
|
+
"auto-approve": ["./commands/auto-approve.js", "runAutoApprove"],
|
|
27
|
+
"auto-calibrate": ["./commands/auto-calibrate.js", "runAutoCalibrate"],
|
|
28
|
+
"auto-fix": ["./commands/auto-fix.js", "runAutoFix"],
|
|
29
|
+
"auto-triage": ["./commands/auto-triage.js", "runAutoTriage"],
|
|
30
|
+
baseline: ["./commands/baseline.js", "runBaseline"],
|
|
31
|
+
"batch-review": ["./commands/batch-review.js", "runBatchReview"],
|
|
32
|
+
benchmark: ["./commands/benchmark.js", "runBenchmark"],
|
|
33
|
+
"blame-review": ["./commands/blame-review.js", "runBlameReview"],
|
|
34
|
+
"boundary-enforce": ["./commands/boundary-enforce.js", "runBoundaryEnforce"],
|
|
35
|
+
"build-optimize": ["./commands/build-optimize.js", "runBuildOptimize"],
|
|
36
|
+
burndown: ["./commands/burndown.js", "runBurndown"],
|
|
37
|
+
"cache-audit": ["./commands/cache-audit.js", "runCacheAudit"],
|
|
38
|
+
"calibration-dashboard": ["./commands/calibration-dashboard.js", "runCalibrationDashboard"],
|
|
39
|
+
"calibration-share": ["./commands/calibration-share.js", "runCalibrationShare"],
|
|
40
|
+
"chat-notify": ["./commands/chat-notify.js", "runChatNotify"],
|
|
41
|
+
"clarity-score": ["./commands/clarity-score.js", "runClarityScore"],
|
|
42
|
+
"clone-detect": ["./commands/clone-detect.js", "runCloneDetect"],
|
|
43
|
+
"coach-mode": ["./commands/coach-mode.js", "runCoachMode"],
|
|
44
|
+
"code-health": ["./commands/code-health.js", "runCodeHealth"],
|
|
45
|
+
"code-owner-suggest": ["./commands/code-owner-suggest.js", "runCodeOwnerSuggest"],
|
|
46
|
+
"code-similarity": ["./commands/code-similarity.js", "runCodeSimilarity"],
|
|
47
|
+
"comment-drift": ["./commands/comment-drift.js", "runCommentDrift"],
|
|
48
|
+
"commit-hygiene": ["./commands/commit-hygiene.js", "runCommitHygiene"],
|
|
49
|
+
"community-patterns": ["./commands/community-patterns.js", "runCommunityPatterns"],
|
|
50
|
+
"compare-runs": ["./commands/compare-runs.js", "runCompareRuns"],
|
|
51
|
+
"completion-audit": ["./commands/completion-audit.js", "runCompletionAudit"],
|
|
52
|
+
completions: ["./commands/completions.js", "runCompletions"],
|
|
53
|
+
"compliance-map": ["./commands/compliance-map.js", "runComplianceMap"],
|
|
54
|
+
"compliance-weight": ["./commands/compliance-weight.js", "runComplianceWeight"],
|
|
55
|
+
"config-drift": ["./commands/config-drift.js", "runConfigDrift"],
|
|
56
|
+
"config-lint": ["./commands/config-lint.js", "runConfigLint"],
|
|
57
|
+
"config-migrate": ["./commands/config-migrate.js", "runConfigMigrate"],
|
|
58
|
+
config: ["./commands/config-share.js", "runConfig"],
|
|
59
|
+
"context-blind": ["./commands/context-blind.js", "runContextBlind"],
|
|
60
|
+
"context-inject": ["./commands/context-inject.js", "runContextInject"],
|
|
61
|
+
"contract-verify": ["./commands/contract-verify.js", "runContractVerify"],
|
|
62
|
+
correlate: ["./commands/correlate.js", "runCorrelate"],
|
|
63
|
+
"cost-forecast": ["./commands/cost-forecast.js", "runCostForecast"],
|
|
64
|
+
"coverage-map": ["./commands/coverage-map.js", "runCoverageMap"],
|
|
65
|
+
"cross-file-consistency": ["./commands/cross-file-consistency.js", "runCrossFileConsistency"],
|
|
66
|
+
"cross-pr-regression": ["./commands/cross-pr-regression.js", "runCrossPrRegression"],
|
|
67
|
+
"custom-rule": ["./commands/custom-rule.js", "runCustomRule"],
|
|
68
|
+
"dead-code-detect": ["./commands/dead-code-detect.js", "runDeadCodeDetect"],
|
|
69
|
+
"dedup-report": ["./commands/dedup-report.js", "runDedupReport"],
|
|
70
|
+
"dep-audit": ["./commands/dep-audit.js", "runDepAuditCommand"],
|
|
71
|
+
"dep-correlate": ["./commands/dep-correlate.js", "runDepCorrelate"],
|
|
72
|
+
"deploy-readiness": ["./commands/deploy-readiness.js", "runDeployReadiness"],
|
|
73
|
+
deprecated: ["./commands/deprecated.js", "runDeprecatedCommand"],
|
|
74
|
+
deps: ["./commands/deps.js", "runDeps"],
|
|
75
|
+
"design-audit": ["./commands/design-audit.js", "runDesignAudit"],
|
|
76
|
+
"dev-score": ["./commands/dev-score.js", "runDevScore"],
|
|
77
|
+
"diff-explain": ["./commands/diff-explain.js", "runDiffExplain"],
|
|
78
|
+
"diff-only": ["./commands/diff-only.js", "runDiffOnly"],
|
|
79
|
+
"diff-review": ["./commands/diff-review.js", "runDiffReview"],
|
|
80
|
+
diff: ["./commands/diff.js", "runDiff"],
|
|
81
|
+
digest: ["./commands/digest.js", "runDigest"],
|
|
82
|
+
"doc-drift": ["./commands/doc-drift.js", "runDocDrift"],
|
|
83
|
+
"doc-gen": ["./commands/doc-gen.js", "runDocGen"],
|
|
84
|
+
docs: ["./commands/docs.js", "runDocs"],
|
|
85
|
+
doctor: ["./commands/doctor.js", "runDoctor"],
|
|
86
|
+
"encoding-safety": ["./commands/encoding-safety.js", "runEncodingSafety"],
|
|
87
|
+
"error-taxonomy": ["./commands/error-taxonomy.js", "runErrorTaxonomy"],
|
|
88
|
+
"error-ux": ["./commands/error-ux.js", "runErrorUx"],
|
|
89
|
+
"event-leak": ["./commands/event-leak.js", "runEventLeak"],
|
|
90
|
+
"evidence-chain": ["./commands/evidence-chain.js", "runEvidenceChain"],
|
|
91
|
+
"example-leak": ["./commands/example-leak.js", "runExampleLeak"],
|
|
92
|
+
"exception-consistency": ["./commands/exception-consistency.js", "runExceptionConsistency"],
|
|
93
|
+
"exec-report": ["./commands/exec-report.js", "runExecReport"],
|
|
94
|
+
"explain-finding": ["./commands/explain-finding.js", "runExplainFinding"],
|
|
95
|
+
"false-negatives": ["./commands/false-negatives.js", "runFalseNegativeReport"],
|
|
96
|
+
"feedback-rules": ["./commands/feedback-rules.js", "runFeedbackRules"],
|
|
97
|
+
feedback: ["./commands/feedback.js", "runFeedback"],
|
|
98
|
+
"finding-age-analysis": ["./commands/finding-age-analysis.js", "runFindingAgeAnalysis"],
|
|
99
|
+
"finding-age-report": ["./commands/finding-age-report.js", "runFindingAgeReport"],
|
|
100
|
+
"finding-age-tracker": ["./commands/finding-age-tracker.js", "runFindingAgeTracker"],
|
|
101
|
+
"finding-age": ["./commands/finding-age.js", "runFindingAge"],
|
|
102
|
+
"finding-ancestry-trace": ["./commands/finding-ancestry-trace.js", "runFindingAncestryTrace"],
|
|
103
|
+
"finding-annotation-export": ["./commands/finding-annotation-export.js", "runFindingAnnotationExport"],
|
|
104
|
+
"finding-annotation-layer": ["./commands/finding-annotation-layer.js", "runFindingAnnotationLayer"],
|
|
105
|
+
"finding-auto-categorize": ["./commands/finding-auto-categorize.js", "runFindingAutoCategorize"],
|
|
106
|
+
"finding-auto-fix-suggest": ["./commands/finding-auto-fix-suggest.js", "runFindingAutoFixSuggest"],
|
|
107
|
+
"finding-auto-fix": ["./commands/finding-auto-fix.js", "runFindingAutoFix"],
|
|
108
|
+
"finding-auto-group": ["./commands/finding-auto-group.js", "runFindingAutoGroup"],
|
|
109
|
+
"finding-auto-label": ["./commands/finding-auto-label.js", "runFindingAutoLabel"],
|
|
110
|
+
"finding-auto-priority": ["./commands/finding-auto-priority.js", "runFindingAutoPriority"],
|
|
111
|
+
"finding-auto-suppress": ["./commands/finding-auto-suppress.js", "runFindingAutoSuppress"],
|
|
112
|
+
"finding-auto-tag": ["./commands/finding-auto-tag.js", "runFindingAutoTag"],
|
|
113
|
+
"finding-auto-triage": ["./commands/finding-auto-triage.js", "runFindingAutoTriage"],
|
|
114
|
+
"finding-autofix-preview": ["./commands/finding-autofix-preview.js", "runFindingAutofixPreview"],
|
|
115
|
+
"finding-batch-resolve": ["./commands/finding-batch-resolve.js", "runFindingBatchResolve"],
|
|
116
|
+
"finding-batch-suppress": ["./commands/finding-batch-suppress.js", "runFindingBatchSuppress"],
|
|
117
|
+
"finding-batch-triage": ["./commands/finding-batch-triage.js", "runFindingBatchTriage"],
|
|
118
|
+
"finding-blast-radius": ["./commands/finding-blast-radius.js", "runFindingBlastRadius"],
|
|
119
|
+
"finding-budget": ["./commands/finding-budget.js", "runFindingBudget"],
|
|
120
|
+
"finding-category-map": ["./commands/finding-category-map.js", "runFindingCategoryMap"],
|
|
121
|
+
"finding-category-stats": ["./commands/finding-category-stats.js", "runFindingCategoryStats"],
|
|
122
|
+
"finding-category": ["./commands/finding-category.js", "runFindingCategory"],
|
|
123
|
+
"finding-change-impact": ["./commands/finding-change-impact.js", "runFindingChangeImpact"],
|
|
124
|
+
"finding-cluster-analysis": ["./commands/finding-cluster-analysis.js", "runFindingClusterAnalysis"],
|
|
125
|
+
"finding-cluster-group": ["./commands/finding-cluster-group.js", "runFindingClusterGroup"],
|
|
126
|
+
"finding-cluster-summary": ["./commands/finding-cluster-summary.js", "runFindingClusterSummary"],
|
|
127
|
+
"finding-cluster": ["./commands/finding-cluster.js", "runFindingCluster"],
|
|
128
|
+
"finding-code-context": ["./commands/finding-code-context.js", "runFindingCodeContext"],
|
|
129
|
+
"finding-code-smell": ["./commands/finding-code-smell.js", "runFindingCodeSmell"],
|
|
130
|
+
"finding-compare-runs": ["./commands/finding-compare-runs.js", "runFindingCompareRuns"],
|
|
131
|
+
"finding-compliance-tag": ["./commands/finding-compliance-tag.js", "runFindingComplianceTag"],
|
|
132
|
+
"finding-confidence-boost": ["./commands/finding-confidence-boost.js", "runFindingConfidenceBoost"],
|
|
133
|
+
"finding-confidence-calibrate": ["./commands/finding-confidence-calibrate.js", "runFindingConfidenceCalibrate"],
|
|
134
|
+
"finding-confidence-filter": ["./commands/finding-confidence-filter.js", "runFindingConfidenceFilter"],
|
|
135
|
+
"finding-contest": ["./commands/finding-contest.js", "runFindingContest"],
|
|
136
|
+
"finding-context-enrich": ["./commands/finding-context-enrich.js", "runFindingContextEnrich"],
|
|
137
|
+
"finding-context-expand": ["./commands/finding-context-expand.js", "runFindingContextExpand"],
|
|
138
|
+
"finding-context-link": ["./commands/finding-context-link.js", "runFindingContextLink"],
|
|
139
|
+
"finding-context-summary": ["./commands/finding-context-summary.js", "runFindingContextSummary"],
|
|
140
|
+
"finding-context-window": ["./commands/finding-context-window.js", "runFindingContextWindow"],
|
|
141
|
+
"finding-context": ["./commands/finding-context.js", "runFindingContext"],
|
|
142
|
+
"finding-correlate": ["./commands/finding-correlate.js", "runFindingCorrelate"],
|
|
143
|
+
"finding-correlation-map": ["./commands/finding-correlation-map.js", "runFindingCorrelationMap"],
|
|
144
|
+
"finding-correlation": ["./commands/finding-correlation.js", "runFindingCorrelation"],
|
|
145
|
+
"finding-cross-file-link": ["./commands/finding-cross-file-link.js", "runFindingCrossFileLink"],
|
|
146
|
+
"finding-cross-ref": ["./commands/finding-cross-ref.js", "runFindingCrossRef"],
|
|
147
|
+
"finding-cve-lookup": ["./commands/finding-cve-lookup.js", "runFindingCveLookup"],
|
|
148
|
+
"finding-cwe-lookup": ["./commands/finding-cwe-lookup.js", "runFindingCweLookup"],
|
|
149
|
+
"finding-cwe-map": ["./commands/finding-cwe-map.js", "runFindingCweMap"],
|
|
150
|
+
"finding-dedup-cross-file": ["./commands/finding-dedup-cross-file.js", "runFindingDedupCrossFile"],
|
|
151
|
+
"finding-dedup-cross": ["./commands/finding-dedup-cross.js", "runFindingDedupCross"],
|
|
152
|
+
"finding-dedup-merge": ["./commands/finding-dedup-merge.js", "runFindingDedupMerge"],
|
|
153
|
+
"finding-dedup-report": ["./commands/finding-dedup-report.js", "runFindingDedupReport"],
|
|
154
|
+
"finding-dedup-smart": ["./commands/finding-dedup-smart.js", "runFindingDedupSmart"],
|
|
155
|
+
"finding-deduplicate": ["./commands/finding-deduplicate.js", "runFindingDeduplicate"],
|
|
156
|
+
"finding-dependency-check": ["./commands/finding-dependency-check.js", "runFindingDependencyCheck"],
|
|
157
|
+
"finding-dependency-impact": ["./commands/finding-dependency-impact.js", "runFindingDependencyImpact"],
|
|
158
|
+
"finding-dependency-link": ["./commands/finding-dependency-link.js", "runFindingDependencyLink"],
|
|
159
|
+
"finding-dependency-risk": ["./commands/finding-dependency-risk.js", "runFindingDependencyRisk"],
|
|
160
|
+
"finding-dependency-tree": ["./commands/finding-dependency-tree.js", "runFindingDependencyTree"],
|
|
161
|
+
"finding-diff-highlight": ["./commands/finding-diff-highlight.js", "runFindingDiffHighlight"],
|
|
162
|
+
"finding-dismiss-workflow": ["./commands/finding-dismiss-workflow.js", "runFindingDismissWorkflow"],
|
|
163
|
+
"finding-duplicate-detect": ["./commands/finding-duplicate-detect.js", "runFindingDuplicateDetect"],
|
|
164
|
+
"finding-duplicate-rule": ["./commands/finding-duplicate-rule.js", "runFindingDuplicateRule"],
|
|
165
|
+
"finding-effort-rank": ["./commands/finding-effort-rank.js", "runFindingEffortRank"],
|
|
166
|
+
"finding-evidence-chain": ["./commands/finding-evidence-chain.js", "runFindingEvidenceChain"],
|
|
167
|
+
"finding-evidence-collect": ["./commands/finding-evidence-collect.js", "runFindingEvidenceCollect"],
|
|
168
|
+
"finding-explain": ["./commands/finding-explain.js", "runFindingExplain"],
|
|
169
|
+
"finding-export-csv": ["./commands/finding-export-csv.js", "runFindingExportCsv"],
|
|
170
|
+
"finding-false-neg-check": ["./commands/finding-false-neg-check.js", "runFindingFalseNegCheck"],
|
|
171
|
+
"finding-false-positive-learn": ["./commands/finding-false-positive-learn.js", "runFindingFalsePositiveLearn"],
|
|
172
|
+
"finding-false-positive-log": ["./commands/finding-false-positive-log.js", "runFindingFalsePositiveLog"],
|
|
173
|
+
"finding-false-positive": ["./commands/finding-false-positive.js", "runFindingFalsePositive"],
|
|
174
|
+
"finding-filter-view": ["./commands/finding-filter-view.js", "runFindingFilterView"],
|
|
175
|
+
"finding-fix-chain": ["./commands/finding-fix-chain.js", "runFindingFixChain"],
|
|
176
|
+
"finding-fix-estimate": ["./commands/finding-fix-estimate.js", "runFindingFixEstimate"],
|
|
177
|
+
"finding-fix-playbook": ["./commands/finding-fix-playbook.js", "runFindingFixPlaybook"],
|
|
178
|
+
"finding-fix-priority": ["./commands/finding-fix-priority.js", "runFindingFixPriority"],
|
|
179
|
+
"finding-fix-rate": ["./commands/finding-fix-rate.js", "runFindingFixRate"],
|
|
180
|
+
"finding-fix-suggest": ["./commands/finding-fix-suggest.js", "runFindingFixSuggest"],
|
|
181
|
+
"finding-fix-validation": ["./commands/finding-fix-validation.js", "runFindingFixValidation"],
|
|
182
|
+
"finding-fix-verify": ["./commands/finding-fix-verify.js", "runFindingFixVerify"],
|
|
183
|
+
"finding-group-by": ["./commands/finding-group-by.js", "runFindingGroupBy"],
|
|
184
|
+
"finding-group": ["./commands/finding-group.js", "runFindingGroup"],
|
|
185
|
+
"finding-groupby-file": ["./commands/finding-groupby-file.js", "runFindingGroupbyFile"],
|
|
186
|
+
"finding-hotfix-suggest": ["./commands/finding-hotfix-suggest.js", "runFindingHotfixSuggest"],
|
|
187
|
+
"finding-hotspot-detect": ["./commands/finding-hotspot-detect.js", "runFindingHotspotDetect"],
|
|
188
|
+
"finding-hotspot-map": ["./commands/finding-hotspot-map.js", "runFindingHotspotMap"],
|
|
189
|
+
"finding-hotspot": ["./commands/finding-hotspot.js", "runFindingHotspot"],
|
|
190
|
+
"finding-impact-radius": ["./commands/finding-impact-radius.js", "runFindingImpactRadius"],
|
|
191
|
+
"finding-impact-rank": ["./commands/finding-impact-rank.js", "runFindingImpactRank"],
|
|
192
|
+
"finding-impact-score": ["./commands/finding-impact-score.js", "runFindingImpactScore"],
|
|
193
|
+
"finding-impact": ["./commands/finding-impact.js", "runFindingImpact"],
|
|
194
|
+
"finding-line-blame": ["./commands/finding-line-blame.js", "runFindingLineBlame"],
|
|
195
|
+
"finding-link-graph": ["./commands/finding-link-graph.js", "runFindingLinkGraph"],
|
|
196
|
+
"finding-link": ["./commands/finding-link.js", "runFindingLink"],
|
|
197
|
+
"finding-merge-results": ["./commands/finding-merge-results.js", "runFindingMergeResults"],
|
|
198
|
+
"finding-merge-strategy": ["./commands/finding-merge-strategy.js", "runFindingMergeStrategy"],
|
|
199
|
+
"finding-metadata-enrich": ["./commands/finding-metadata-enrich.js", "runFindingMetadataEnrich"],
|
|
200
|
+
"finding-noise-filter": ["./commands/finding-noise-filter.js", "runFindingNoiseFilter"],
|
|
201
|
+
"finding-noise-reduce": ["./commands/finding-noise-reduce.js", "runFindingNoiseReduce"],
|
|
202
|
+
"finding-noise-score": ["./commands/finding-noise-score.js", "runFindingNoiseScore"],
|
|
203
|
+
"finding-owner-assign": ["./commands/finding-owner-assign.js", "runFindingOwnerAssign"],
|
|
204
|
+
"finding-owner-notify": ["./commands/finding-owner-notify.js", "runFindingOwnerNotify"],
|
|
205
|
+
"finding-ownership-assign": ["./commands/finding-ownership-assign.js", "runFindingOwnershipAssign"],
|
|
206
|
+
"finding-ownership-map": ["./commands/finding-ownership-map.js", "runFindingOwnershipMap"],
|
|
207
|
+
"finding-patch-chain": ["./commands/finding-patch-chain.js", "runFindingPatchChain"],
|
|
208
|
+
"finding-patch-preview": ["./commands/finding-patch-preview.js", "runFindingPatchPreview"],
|
|
209
|
+
"finding-pattern-detect": ["./commands/finding-pattern-detect.js", "runFindingPatternDetect"],
|
|
210
|
+
"finding-pattern-library": ["./commands/finding-pattern-library.js", "runFindingPatternLibrary"],
|
|
211
|
+
"finding-pattern-match": ["./commands/finding-pattern-match.js", "runFindingPatternMatch"],
|
|
212
|
+
"finding-prioritize": ["./commands/finding-prioritize.js", "runFindingPrioritize"],
|
|
213
|
+
"finding-priority-matrix": ["./commands/finding-priority-matrix.js", "runFindingPriorityMatrix"],
|
|
214
|
+
"finding-priority-queue": ["./commands/finding-priority-queue.js", "runFindingPriorityQueue"],
|
|
215
|
+
"finding-priority-rank": ["./commands/finding-priority-rank.js", "runFindingPriorityRank"],
|
|
216
|
+
"finding-quality-gate": ["./commands/finding-quality-gate.js", "runFindingQualityGate"],
|
|
217
|
+
"finding-rank": ["./commands/finding-rank.js", "runFindingRank"],
|
|
218
|
+
"finding-reachability-check": ["./commands/finding-reachability-check.js", "runFindingReachabilityCheck"],
|
|
219
|
+
"finding-reachability": ["./commands/finding-reachability.js", "runFindingReachability"],
|
|
220
|
+
"finding-recurrence-check": ["./commands/finding-recurrence-check.js", "runFindingRecurrenceCheck"],
|
|
221
|
+
"finding-recurrence-detect": ["./commands/finding-recurrence-detect.js", "runFindingRecurrenceDetect"],
|
|
222
|
+
"finding-recurrence": ["./commands/finding-recurrence.js", "runFindingRecurrence"],
|
|
223
|
+
"finding-regression-check": ["./commands/finding-regression-check.js", "runFindingRegressionCheck"],
|
|
224
|
+
"finding-regression-detect": ["./commands/finding-regression-detect.js", "runFindingRegressionDetect"],
|
|
225
|
+
"finding-related-rules": ["./commands/finding-related-rules.js", "runFindingRelatedRules"],
|
|
226
|
+
"finding-remediation-cost": ["./commands/finding-remediation-cost.js", "runFindingRemediationCost"],
|
|
227
|
+
"finding-remediation-plan": ["./commands/finding-remediation-plan.js", "runFindingRemediationPlan"],
|
|
228
|
+
"finding-reopen-detect": ["./commands/finding-reopen-detect.js", "runFindingReopenDetect"],
|
|
229
|
+
"finding-repeat-detect": ["./commands/finding-repeat-detect.js", "runFindingRepeatDetect"],
|
|
230
|
+
"finding-resolution-track": ["./commands/finding-resolution-track.js", "runFindingResolutionTrack"],
|
|
231
|
+
"finding-resolution-tracker": ["./commands/finding-resolution-tracker.js", "runFindingResolutionTracker"],
|
|
232
|
+
"finding-resolution-workflow": ["./commands/finding-resolution-workflow.js", "runFindingResolutionWorkflow"],
|
|
233
|
+
"finding-resolution": ["./commands/finding-resolution.js", "runFindingResolution"],
|
|
234
|
+
"finding-risk-label": ["./commands/finding-risk-label.js", "runFindingRiskLabel"],
|
|
235
|
+
"finding-risk-matrix": ["./commands/finding-risk-matrix.js", "runFindingRiskMatrix"],
|
|
236
|
+
"finding-risk-score": ["./commands/finding-risk-score.js", "runFindingRiskScore"],
|
|
237
|
+
"finding-root-cause": ["./commands/finding-root-cause.js", "runFindingRootCause"],
|
|
238
|
+
"finding-rule-explain": ["./commands/finding-rule-explain.js", "runFindingRuleExplain"],
|
|
239
|
+
"finding-scope-filter": ["./commands/finding-scope-filter.js", "runFindingScopeFilter"],
|
|
240
|
+
"finding-scope-impact": ["./commands/finding-scope-impact.js", "runFindingScopeImpact"],
|
|
241
|
+
"finding-search-index": ["./commands/finding-search-index.js", "runFindingSearchIndex"],
|
|
242
|
+
"finding-security-hotspot": ["./commands/finding-security-hotspot.js", "runFindingSecurityHotspot"],
|
|
243
|
+
"finding-severity-dist": ["./commands/finding-severity-dist.js", "runFindingSeverityDist"],
|
|
244
|
+
"finding-severity-drift": ["./commands/finding-severity-drift.js", "runFindingSeverityDrift"],
|
|
245
|
+
"finding-severity-heatmap": ["./commands/finding-severity-heatmap.js", "runFindingSeverityHeatmap"],
|
|
246
|
+
"finding-severity-histogram": ["./commands/finding-severity-histogram.js", "runFindingSeverityHistogram"],
|
|
247
|
+
"finding-severity-override": ["./commands/finding-severity-override.js", "runFindingSeverityOverride"],
|
|
248
|
+
"finding-severity-rebalance": ["./commands/finding-severity-rebalance.js", "runFindingSeverityRebalance"],
|
|
249
|
+
"finding-severity-trend": ["./commands/finding-severity-trend.js", "runFindingSeverityTrend"],
|
|
250
|
+
"finding-similar-match": ["./commands/finding-similar-match.js", "runFindingSimilarMatch"],
|
|
251
|
+
"finding-snippet": ["./commands/finding-snippet.js", "runFindingSnippet"],
|
|
252
|
+
"finding-summary-digest": ["./commands/finding-summary-digest.js", "runFindingSummaryDigest"],
|
|
253
|
+
"finding-suppress-pattern": ["./commands/finding-suppress-pattern.js", "runFindingSuppressPattern"],
|
|
254
|
+
"finding-suppress": ["./commands/finding-suppress.js", "runFindingSuppress"],
|
|
255
|
+
"finding-suppression-audit": ["./commands/finding-suppression-audit.js", "runFindingSuppressionAudit"],
|
|
256
|
+
"finding-suppression-list": ["./commands/finding-suppression-list.js", "runFindingSuppressionList"],
|
|
257
|
+
"finding-suppression-log": ["./commands/finding-suppression-log.js", "runFindingSuppressionLog"],
|
|
258
|
+
"finding-time-to-fix": ["./commands/finding-time-to-fix.js", "runFindingTimeToFix"],
|
|
259
|
+
"finding-timeline-view": ["./commands/finding-timeline-view.js", "runFindingTimelineView"],
|
|
260
|
+
"finding-timeline": ["./commands/finding-timeline.js", "runFindingTimeline"],
|
|
261
|
+
"finding-top-offender": ["./commands/finding-top-offender.js", "runFindingTopOffender"],
|
|
262
|
+
"finding-trace": ["./commands/finding-trace.js", "runFindingTrace"],
|
|
263
|
+
"finding-trend-alert": ["./commands/finding-trend-alert.js", "runFindingTrendAlert"],
|
|
264
|
+
"finding-trend-analysis": ["./commands/finding-trend-analysis.js", "runFindingTrendAnalysis"],
|
|
265
|
+
"finding-trend-forecast": ["./commands/finding-trend-forecast.js", "runFindingTrendForecast"],
|
|
266
|
+
"finding-trend-report": ["./commands/finding-trend-report.js", "runFindingTrendReport"],
|
|
267
|
+
"finding-trend": ["./commands/finding-trend.js", "runFindingTrend"],
|
|
268
|
+
"fix-pr": ["./commands/fix-pr.js", "runFixPr"],
|
|
269
|
+
"fix-suggest": ["./commands/fix-suggest.js", "runFixSuggest"],
|
|
270
|
+
"fix-verify": ["./commands/fix-verify.js", "runFixVerify"],
|
|
271
|
+
fix: ["./commands/fix.js", "runFix"],
|
|
272
|
+
"focus-area": ["./commands/focus-area.js", "runFocusArea"],
|
|
273
|
+
generate: ["./commands/generate.js", "runGenerate"],
|
|
274
|
+
governance: ["./commands/governance.js", "runGovernance"],
|
|
275
|
+
group: ["./commands/group-findings.js", "runGroupFindings"],
|
|
276
|
+
"guided-tour": ["./commands/guided-tour.js", "runGuidedTour"],
|
|
277
|
+
"habit-tracker": ["./commands/habit-tracker.js", "runHabitTracker"],
|
|
278
|
+
"hallucination-detect": ["./commands/hallucination-detect.js", "runHallucinationDetect"],
|
|
279
|
+
"hallucination-score": ["./commands/hallucination-score.js", "runHallucinationScore"],
|
|
280
|
+
help: ["./commands/help.js", "runHelp"],
|
|
281
|
+
"hook-install": ["./commands/hook-install.js", "runHookInstall"],
|
|
282
|
+
hook: ["./commands/hook.js", "runHook"],
|
|
283
|
+
"iac-lint": ["./commands/iac-lint.js", "runIacLint"],
|
|
284
|
+
"idempotency-audit": ["./commands/idempotency-audit.js", "runIdempotencyAudit"],
|
|
285
|
+
"ignore-list": ["./commands/ignore-list.js", "runIgnoreList"],
|
|
286
|
+
"impact-scan": ["./commands/impact-scan.js", "runImpactScan"],
|
|
287
|
+
"incident-response": ["./commands/incident-response.js", "runIncidentResponse"],
|
|
288
|
+
"incremental-review": ["./commands/incremental-review.js", "runIncrementalReview"],
|
|
289
|
+
"input-guard": ["./commands/input-guard.js", "runInputGuard"],
|
|
290
|
+
"judge-author": ["./commands/judge-author.js", "runJudgeAuthor"],
|
|
291
|
+
"judge-config": ["./commands/judge-config.js", "runJudgeConfig"],
|
|
292
|
+
"judge-learn": ["./commands/judge-learn.js", "runJudgeLearn"],
|
|
293
|
+
"judge-reputation": ["./commands/judge-reputation.js", "runJudgeReputation"],
|
|
294
|
+
kb: ["./commands/kb.js", "runKnowledgeBase"],
|
|
295
|
+
learn: ["./commands/learn.js", "runLearn"],
|
|
296
|
+
"learning-path": ["./commands/learning-path.js", "runLearningPath"],
|
|
297
|
+
"license-scan": ["./commands/license-scan.js", "runLicenseScan"],
|
|
298
|
+
"log-quality": ["./commands/log-quality.js", "runLogQuality"],
|
|
299
|
+
"logic-lint": ["./commands/logic-lint.js", "runLogicLint"],
|
|
300
|
+
"merge-verdict": ["./commands/merge-verdict.js", "runMergeVerdict"],
|
|
301
|
+
"metrics-dashboard": ["./commands/metrics-dashboard.js", "runMetricsDashboard"],
|
|
302
|
+
metrics: ["./commands/metrics.js", "runMetrics"],
|
|
303
|
+
"migration-safety": ["./commands/migration-safety.js", "runMigrationSafety"],
|
|
304
|
+
"model-report": ["./commands/model-report.js", "runModelReport"],
|
|
305
|
+
"model-risk": ["./commands/model-risk.js", "runModelRisk"],
|
|
306
|
+
monorepo: ["./commands/monorepo.js", "runMonorepoCommand"],
|
|
307
|
+
"multi-lang-review": ["./commands/multi-lang-review.js", "runMultiLangReview"],
|
|
308
|
+
"noise-advisor": ["./commands/noise-advisor.js", "runNoiseAdvisor"],
|
|
309
|
+
notify: ["./commands/notify.js", "runNotify"],
|
|
310
|
+
"null-safety-audit": ["./commands/null-safety-audit.js", "runNullSafetyAudit"],
|
|
311
|
+
"observability-gap": ["./commands/observability-gap.js", "runObservabilityGap"],
|
|
312
|
+
onboard: ["./commands/onboard.js", "runOnboard"],
|
|
313
|
+
"org-metrics": ["./commands/org-metrics.js", "runOrgMetrics"],
|
|
314
|
+
"org-policy": ["./commands/org-policy.js", "runOrgPolicy"],
|
|
315
|
+
"over-abstraction": ["./commands/over-abstraction.js", "runOverAbstraction"],
|
|
316
|
+
override: ["./commands/override.js", "runOverride"],
|
|
317
|
+
"ownership-map": ["./commands/ownership-map.js", "runOwnershipMap"],
|
|
318
|
+
pack: ["./commands/language-packs.js", "runPack"],
|
|
319
|
+
parity: ["./commands/parity.js", "runParity"],
|
|
320
|
+
"pattern-registry": ["./commands/pattern-registry.js", "runPatternRegistry"],
|
|
321
|
+
"perf-compare": ["./commands/perf-compare.js", "runPerfCompare"],
|
|
322
|
+
"perf-hotspot": ["./commands/perf-hotspot.js", "runPerfHotspot"],
|
|
323
|
+
"phantom-import": ["./commands/phantom-import.js", "runPhantomImport"],
|
|
324
|
+
"pii-scan": ["./commands/pii-scan.js", "runPiiScan"],
|
|
325
|
+
plugin: ["./commands/plugin-search.js", "runPluginSearch"],
|
|
326
|
+
plugins: ["./commands/plugins.js", "runPlugins"],
|
|
327
|
+
"policy-audit": ["./commands/policy-audit.js", "runPolicyAudit"],
|
|
328
|
+
"pr-quality-gate": ["./commands/pr-quality-gate.js", "runPrQualityGate"],
|
|
329
|
+
"pr-summary": ["./commands/pr-summary.js", "runPrSummary"],
|
|
330
|
+
predict: ["./commands/predict.js", "runPredict"],
|
|
331
|
+
"privilege-path": ["./commands/privilege-path.js", "runPrivilegePath"],
|
|
332
|
+
profile: ["./commands/profile.js", "runProfile"],
|
|
333
|
+
"prompt-replay": ["./commands/prompt-replay.js", "runPromptReplay"],
|
|
334
|
+
"quality-gate": ["./commands/quality-gate.js", "runQualityGate"],
|
|
335
|
+
query: ["./commands/query.js", "runQuery"],
|
|
336
|
+
"quick-check": ["./commands/quick-check.js", "runQuickCheck"],
|
|
337
|
+
recommend: ["./commands/recommend.js", "runRecommend"],
|
|
338
|
+
"refactor-safety": ["./commands/refactor-safety.js", "runRefactorSafety"],
|
|
339
|
+
"reg-watch": ["./commands/reg-watch.js", "runRegWatch"],
|
|
340
|
+
"regression-alert": ["./commands/regression-alert.js", "runRegressionAlert"],
|
|
341
|
+
"remediation-lib": ["./commands/remediation-lib.js", "runRemediationLib"],
|
|
342
|
+
remediation: ["./commands/remediation.js", "runRemediationGuide"],
|
|
343
|
+
"report-template": ["./commands/report-template.js", "runReportTemplate"],
|
|
344
|
+
report: ["./commands/report.js", "runReport"],
|
|
345
|
+
"resource-cleanup": ["./commands/resource-cleanup.js", "runResourceCleanup"],
|
|
346
|
+
retro: ["./commands/retro.js", "runRetro"],
|
|
347
|
+
"retry-pattern-audit": ["./commands/retry-pattern-audit.js", "runRetryPatternAudit"],
|
|
348
|
+
"review-ab-test": ["./commands/review-ab-test.js", "runReviewAbTest"],
|
|
349
|
+
"review-access-log": ["./commands/review-access-log.js", "runReviewAccessLog"],
|
|
350
|
+
"review-action-item-gen": ["./commands/review-action-item-gen.js", "runReviewActionItemGen"],
|
|
351
|
+
"review-adoption-metrics": ["./commands/review-adoption-metrics.js", "runReviewAdoptionMetrics"],
|
|
352
|
+
"review-adoption-score": ["./commands/review-adoption-score.js", "runReviewAdoptionScore"],
|
|
353
|
+
"review-ai-feedback-loop": ["./commands/review-ai-feedback-loop.js", "runReviewAiFeedbackLoop"],
|
|
354
|
+
"review-annotate": ["./commands/review-annotate.js", "runReviewAnnotate"],
|
|
355
|
+
"review-annotation-export": ["./commands/review-annotation-export.js", "runReviewAnnotationExport"],
|
|
356
|
+
"review-annotation": ["./commands/review-annotation.js", "runReviewAnnotation"],
|
|
357
|
+
"review-api-export": ["./commands/review-api-export.js", "runReviewApiExport"],
|
|
358
|
+
"review-approval-criteria": ["./commands/review-approval-criteria.js", "runReviewApprovalCriteria"],
|
|
359
|
+
"review-approval-gate": ["./commands/review-approval-gate.js", "runReviewApprovalGate"],
|
|
360
|
+
"review-approval": ["./commands/review-approval.js", "runReviewApproval"],
|
|
361
|
+
"review-archive-search": ["./commands/review-archive-search.js", "runReviewArchiveSearch"],
|
|
362
|
+
"review-archive": ["./commands/review-archive.js", "runReviewArchive"],
|
|
363
|
+
"review-audit-export": ["./commands/review-audit-export.js", "runReviewAuditExport"],
|
|
364
|
+
"review-audit-log": ["./commands/review-audit-log.js", "runReviewAuditLog"],
|
|
365
|
+
"review-audit-trail": ["./commands/review-audit-trail.js", "runReviewAuditTrail"],
|
|
366
|
+
"review-auto-merge": ["./commands/review-auto-merge.js", "runReviewAutoMerge"],
|
|
367
|
+
"review-badge": ["./commands/review-badge.js", "runReviewBadge"],
|
|
368
|
+
"review-batch-files": ["./commands/review-batch-files.js", "runReviewBatchFiles"],
|
|
369
|
+
"review-batch-mode": ["./commands/review-batch-mode.js", "runReviewBatchMode"],
|
|
370
|
+
"review-batch-run": ["./commands/review-batch-run.js", "runReviewBatchRun"],
|
|
371
|
+
"review-benchmark-self": ["./commands/review-benchmark-self.js", "runReviewBenchmarkSelf"],
|
|
372
|
+
"review-blame-map": ["./commands/review-blame-map.js", "runReviewBlameMap"],
|
|
373
|
+
"review-branch-compare": ["./commands/review-branch-compare.js", "runReviewBranchCompare"],
|
|
374
|
+
"review-branch-policy": ["./commands/review-branch-policy.js", "runReviewBranchPolicy"],
|
|
375
|
+
"review-bulk-action": ["./commands/review-bulk-action.js", "runReviewBulkAction"],
|
|
376
|
+
"review-bulk-apply": ["./commands/review-bulk-apply.js", "runReviewBulkApply"],
|
|
377
|
+
"review-cache-clear": ["./commands/review-cache-clear.js", "runReviewCacheClear"],
|
|
378
|
+
"review-cache-warm": ["./commands/review-cache-warm.js", "runReviewCacheWarm"],
|
|
379
|
+
"review-cache": ["./commands/review-cache.js", "runReviewCache"],
|
|
380
|
+
"review-changelog-entry": ["./commands/review-changelog-entry.js", "runReviewChangelogEntry"],
|
|
381
|
+
"review-changelog-gen": ["./commands/review-changelog-gen.js", "runReviewChangelogGen"],
|
|
382
|
+
"review-changelog-impact": ["./commands/review-changelog-impact.js", "runReviewChangelogImpact"],
|
|
383
|
+
"review-checklist": ["./commands/review-checklist.js", "runReviewChecklist"],
|
|
384
|
+
"review-checkpoint": ["./commands/review-checkpoint.js", "runReviewCheckpoint"],
|
|
385
|
+
"review-ci-gate": ["./commands/review-ci-gate.js", "runReviewCiGate"],
|
|
386
|
+
"review-ci-insight": ["./commands/review-ci-insight.js", "runReviewCiInsight"],
|
|
387
|
+
"review-ci-integration": ["./commands/review-ci-integration.js", "runReviewCiIntegration"],
|
|
388
|
+
"review-ci-status": ["./commands/review-ci-status.js", "runReviewCiStatus"],
|
|
389
|
+
"review-cicd-integrate": ["./commands/review-cicd-integrate.js", "runReviewCicdIntegrate"],
|
|
390
|
+
"review-code-health-score": ["./commands/review-code-health-score.js", "runReviewCodeHealthScore"],
|
|
391
|
+
"review-code-owner": ["./commands/review-code-owner.js", "runReviewCodeOwner"],
|
|
392
|
+
"review-code-ownership": ["./commands/review-code-ownership.js", "runReviewCodeOwnership"],
|
|
393
|
+
"review-comment": ["./commands/review-comment.js", "runReviewComment"],
|
|
394
|
+
"review-commit-hook": ["./commands/review-commit-hook.js", "runReviewCommitHook"],
|
|
395
|
+
"review-commit-quality": ["./commands/review-commit-quality.js", "runReviewCommitQuality"],
|
|
396
|
+
"review-comparative": ["./commands/review-comparative.js", "runReviewComparative"],
|
|
397
|
+
"review-compare-version": ["./commands/review-compare-version.js", "runReviewCompareVersion"],
|
|
398
|
+
"review-compare": ["./commands/review-compare.js", "runReviewCompare"],
|
|
399
|
+
"review-compliance-check": ["./commands/review-compliance-check.js", "runReviewComplianceCheck"],
|
|
400
|
+
"review-compliance-gate": ["./commands/review-compliance-gate.js", "runReviewComplianceGate"],
|
|
401
|
+
"review-compliance-map": ["./commands/review-compliance-map.js", "runReviewComplianceMap"],
|
|
402
|
+
"review-compliance-report": ["./commands/review-compliance-report.js", "runReviewComplianceReport"],
|
|
403
|
+
"review-confidence-explain": ["./commands/review-confidence-explain.js", "runReviewConfidenceExplain"],
|
|
404
|
+
"review-config-diff": ["./commands/review-config-diff.js", "runReviewConfigDiff"],
|
|
405
|
+
"review-config-export": ["./commands/review-config-export.js", "runReviewConfigExport"],
|
|
406
|
+
"review-config-health": ["./commands/review-config-health.js", "runReviewConfigHealth"],
|
|
407
|
+
"review-config-migrate": ["./commands/review-config-migrate.js", "runReviewConfigMigrate"],
|
|
408
|
+
"review-config-template": ["./commands/review-config-template.js", "runReviewConfigTemplate"],
|
|
409
|
+
"review-config-validate": ["./commands/review-config-validate.js", "runReviewConfigValidate"],
|
|
410
|
+
"review-contract": ["./commands/review-contract.js", "runReviewContract"],
|
|
411
|
+
"review-coverage-gap": ["./commands/review-coverage-gap.js", "runReviewCoverageGap"],
|
|
412
|
+
"review-coverage-map": ["./commands/review-coverage-map.js", "runReviewCoverageMap"],
|
|
413
|
+
"review-custom-judge-config": ["./commands/review-custom-judge-config.js", "runReviewCustomJudgeConfig"],
|
|
414
|
+
"review-custom-judge": ["./commands/review-custom-judge.js", "runReviewCustomJudge"],
|
|
415
|
+
"review-custom-prompt": ["./commands/review-custom-prompt.js", "runReviewCustomPrompt"],
|
|
416
|
+
"review-custom-rule": ["./commands/review-custom-rule.js", "runReviewCustomRule"],
|
|
417
|
+
"review-dashboard-data": ["./commands/review-dashboard-data.js", "runReviewDashboardData"],
|
|
418
|
+
"review-dashboard": ["./commands/review-dashboard.js", "runReviewDashboard"],
|
|
419
|
+
"review-data-retention": ["./commands/review-data-retention.js", "runReviewDataRetention"],
|
|
420
|
+
"review-dependency-graph": ["./commands/review-dependency-graph.js", "runReviewDependencyGraph"],
|
|
421
|
+
"review-dependency-review": ["./commands/review-dependency-review.js", "runReviewDependencyReview"],
|
|
422
|
+
"review-deployment-gate": ["./commands/review-deployment-gate.js", "runReviewDeploymentGate"],
|
|
423
|
+
"review-depth": ["./commands/review-depth.js", "runReviewDepth"],
|
|
424
|
+
"review-diff-annotate": ["./commands/review-diff-annotate.js", "runReviewDiffAnnotate"],
|
|
425
|
+
"review-diff-context": ["./commands/review-diff-context.js", "runReviewDiffContext"],
|
|
426
|
+
"review-diff-highlight": ["./commands/review-diff-highlight.js", "runReviewDiffHighlight"],
|
|
427
|
+
"review-diff-stats": ["./commands/review-diff-stats.js", "runReviewDiffStats"],
|
|
428
|
+
"review-diff-summary": ["./commands/review-diff-summary.js", "runReviewDiffSummary"],
|
|
429
|
+
"review-digest-gen": ["./commands/review-digest-gen.js", "runReviewDigestGen"],
|
|
430
|
+
"review-digest": ["./commands/review-digest.js", "runReviewDigest"],
|
|
431
|
+
"review-dry-run": ["./commands/review-dry-run.js", "runReviewDryRun"],
|
|
432
|
+
"review-engagement-score": ["./commands/review-engagement-score.js", "runReviewEngagementScore"],
|
|
433
|
+
"review-env-check": ["./commands/review-env-check.js", "runReviewEnvCheck"],
|
|
434
|
+
"review-environment-config": ["./commands/review-environment-config.js", "runReviewEnvironmentConfig"],
|
|
435
|
+
"review-escalation-path": ["./commands/review-escalation-path.js", "runReviewEscalationPath"],
|
|
436
|
+
"review-exclude-vendor": ["./commands/review-exclude-vendor.js", "runReviewExcludeVendor"],
|
|
437
|
+
"review-explain": ["./commands/review-explain.js", "runReviewExplain"],
|
|
438
|
+
"review-export-pdf": ["./commands/review-export-pdf.js", "runReviewExportPdf"],
|
|
439
|
+
"review-export": ["./commands/review-export.js", "runReviewExport"],
|
|
440
|
+
"review-feedback-loop": ["./commands/review-feedback-loop.js", "runReviewFeedbackLoop"],
|
|
441
|
+
"review-feedback-summary": ["./commands/review-feedback-summary.js", "runReviewFeedbackSummary"],
|
|
442
|
+
"review-feedback": ["./commands/review-feedback.js", "runReviewFeedback"],
|
|
443
|
+
"review-file-complexity": ["./commands/review-file-complexity.js", "runReviewFileComplexity"],
|
|
444
|
+
"review-file-filter": ["./commands/review-file-filter.js", "runReviewFileFilter"],
|
|
445
|
+
"review-file-stats": ["./commands/review-file-stats.js", "runReviewFileStats"],
|
|
446
|
+
"review-filter": ["./commands/review-filter.js", "runReviewFilter"],
|
|
447
|
+
"review-finding-link": ["./commands/review-finding-link.js", "runReviewFindingLink"],
|
|
448
|
+
"review-focus-area": ["./commands/review-focus-area.js", "runReviewFocusArea"],
|
|
449
|
+
"review-focus": ["./commands/review-focus.js", "runReviewFocus"],
|
|
450
|
+
"review-gate-config": ["./commands/review-gate-config.js", "runReviewGateConfig"],
|
|
451
|
+
"review-gate": ["./commands/review-gate.js", "runReviewGate"],
|
|
452
|
+
"review-goal-track": ["./commands/review-goal-track.js", "runReviewGoalTrack"],
|
|
453
|
+
"review-guardrail": ["./commands/review-guardrail.js", "runReviewGuardrail"],
|
|
454
|
+
"review-handoff": ["./commands/review-handoff.js", "runReviewHandoff"],
|
|
455
|
+
"review-health-check": ["./commands/review-health-check.js", "runReviewHealthCheck"],
|
|
456
|
+
"review-health-trend": ["./commands/review-health-trend.js", "runReviewHealthTrend"],
|
|
457
|
+
"review-history-compare": ["./commands/review-history-compare.js", "runReviewHistoryCompare"],
|
|
458
|
+
"review-history-search": ["./commands/review-history-search.js", "runReviewHistorySearch"],
|
|
459
|
+
"review-ide-sync": ["./commands/review-ide-sync.js", "runReviewIdeSync"],
|
|
460
|
+
"review-ignore-path": ["./commands/review-ignore-path.js", "runReviewIgnorePath"],
|
|
461
|
+
"review-ignore-pattern": ["./commands/review-ignore-pattern.js", "runReviewIgnorePattern"],
|
|
462
|
+
"review-incident-link": ["./commands/review-incident-link.js", "runReviewIncidentLink"],
|
|
463
|
+
"review-incremental": ["./commands/review-incremental.js", "runReviewIncremental"],
|
|
464
|
+
"review-integration-health": ["./commands/review-integration-health.js", "runReviewIntegrationHealth"],
|
|
465
|
+
"review-integration-test": ["./commands/review-integration-test.js", "runReviewIntegrationTest"],
|
|
466
|
+
"review-integration": ["./commands/review-integration.js", "runReviewIntegration"],
|
|
467
|
+
"review-interactive": ["./commands/review-interactive.js", "runReviewInteractive"],
|
|
468
|
+
"review-knowledge-capture": ["./commands/review-knowledge-capture.js", "runReviewKnowledgeCapture"],
|
|
469
|
+
"review-language-profile": ["./commands/review-language-profile.js", "runReviewLanguageProfile"],
|
|
470
|
+
"review-language-stats": ["./commands/review-language-stats.js", "runReviewLanguageStats"],
|
|
471
|
+
"review-lock-file": ["./commands/review-lock-file.js", "runReviewLockFile"],
|
|
472
|
+
"review-lock": ["./commands/review-lock.js", "runReviewLock"],
|
|
473
|
+
"review-log": ["./commands/review-log.js", "runReviewLog"],
|
|
474
|
+
"review-mentor-suggest": ["./commands/review-mentor-suggest.js", "runReviewMentorSuggest"],
|
|
475
|
+
"review-merge-check": ["./commands/review-merge-check.js", "runReviewMergeCheck"],
|
|
476
|
+
"review-merge-config": ["./commands/review-merge-config.js", "runReviewMergeConfig"],
|
|
477
|
+
"review-merge-readiness": ["./commands/review-merge-readiness.js", "runReviewMergeReadiness"],
|
|
478
|
+
"review-merge-request": ["./commands/review-merge-request.js", "runReviewMergeRequest"],
|
|
479
|
+
"review-merge": ["./commands/review-merge.js", "runReviewMerge"],
|
|
480
|
+
"review-metric-export": ["./commands/review-metric-export.js", "runReviewMetricExport"],
|
|
481
|
+
"review-milestone": ["./commands/review-milestone.js", "runReviewMilestone"],
|
|
482
|
+
"review-multi-repo-sync": ["./commands/review-multi-repo-sync.js", "runReviewMultiRepoSync"],
|
|
483
|
+
"review-multi-repo": ["./commands/review-multi-repo.js", "runReviewMultiRepo"],
|
|
484
|
+
"review-note": ["./commands/review-note.js", "runReviewNote"],
|
|
485
|
+
"review-notification-config": ["./commands/review-notification-config.js", "runReviewNotificationConfig"],
|
|
486
|
+
"review-notification-digest": ["./commands/review-notification-digest.js", "runReviewNotificationDigest"],
|
|
487
|
+
"review-notification": ["./commands/review-notification.js", "runReviewNotification"],
|
|
488
|
+
"review-notify": ["./commands/review-notify.js", "runReviewNotify"],
|
|
489
|
+
"review-offline": ["./commands/review-offline.js", "runReviewOffline"],
|
|
490
|
+
"review-onboard-checklist": ["./commands/review-onboard-checklist.js", "runReviewOnboardChecklist"],
|
|
491
|
+
"review-onboard-wizard": ["./commands/review-onboard-wizard.js", "runReviewOnboardWizard"],
|
|
492
|
+
"review-onboard": ["./commands/review-onboard.js", "runReviewOnboard"],
|
|
493
|
+
"review-onboarding-check": ["./commands/review-onboarding-check.js", "runReviewOnboardingCheck"],
|
|
494
|
+
"review-org-dashboard": ["./commands/review-org-dashboard.js", "runReviewOrgDashboard"],
|
|
495
|
+
"review-output-filter": ["./commands/review-output-filter.js", "runReviewOutputFilter"],
|
|
496
|
+
"review-output-format": ["./commands/review-output-format.js", "runReviewOutputFormat"],
|
|
497
|
+
"review-output-transform": ["./commands/review-output-transform.js", "runReviewOutputTransform"],
|
|
498
|
+
"review-owner": ["./commands/review-owner.js", "runReviewOwner"],
|
|
499
|
+
"review-parallel-diff": ["./commands/review-parallel-diff.js", "runReviewParallelDiff"],
|
|
500
|
+
"review-parallel-files": ["./commands/review-parallel-files.js", "runReviewParallelFiles"],
|
|
501
|
+
"review-parallel-run": ["./commands/review-parallel-run.js", "runReviewParallelRun"],
|
|
502
|
+
"review-parallel": ["./commands/review-parallel.js", "runReviewParallel"],
|
|
503
|
+
"review-perf-profile": ["./commands/review-perf-profile.js", "runReviewPerfProfile"],
|
|
504
|
+
"review-permission-model": ["./commands/review-permission-model.js", "runReviewPermissionModel"],
|
|
505
|
+
"review-pipeline-status": ["./commands/review-pipeline-status.js", "runReviewPipelineStatus"],
|
|
506
|
+
"review-plugin-config": ["./commands/review-plugin-config.js", "runReviewPluginConfig"],
|
|
507
|
+
"review-plugin-list": ["./commands/review-plugin-list.js", "runReviewPluginList"],
|
|
508
|
+
"review-plugin-manage": ["./commands/review-plugin-manage.js", "runReviewPluginManage"],
|
|
509
|
+
"review-plugin-status": ["./commands/review-plugin-status.js", "runReviewPluginStatus"],
|
|
510
|
+
"review-policy-enforce": ["./commands/review-policy-enforce.js", "runReviewPolicyEnforce"],
|
|
511
|
+
"review-policy-engine": ["./commands/review-policy-engine.js", "runReviewPolicyEngine"],
|
|
512
|
+
"review-pr-comment-gen": ["./commands/review-pr-comment-gen.js", "runReviewPrCommentGen"],
|
|
513
|
+
"review-pr-comment": ["./commands/review-pr-comment.js", "runReviewPrComment"],
|
|
514
|
+
"review-pr-label-suggest": ["./commands/review-pr-label-suggest.js", "runReviewPrLabelSuggest"],
|
|
515
|
+
"review-pr-size-check": ["./commands/review-pr-size-check.js", "runReviewPrSizeCheck"],
|
|
516
|
+
"review-pr-template": ["./commands/review-pr-template.js", "runReviewPrTemplate"],
|
|
517
|
+
"review-preset-save": ["./commands/review-preset-save.js", "runReviewPresetSave"],
|
|
518
|
+
"review-priority": ["./commands/review-priority.js", "runReviewPriority"],
|
|
519
|
+
"review-profile": ["./commands/review-profile.js", "runReviewProfile"],
|
|
520
|
+
"review-progress-bar": ["./commands/review-progress-bar.js", "runReviewProgressBar"],
|
|
521
|
+
"review-progress-report": ["./commands/review-progress-report.js", "runReviewProgressReport"],
|
|
522
|
+
"review-progress-track": ["./commands/review-progress-track.js", "runReviewProgressTrack"],
|
|
523
|
+
"review-quality-baseline": ["./commands/review-quality-baseline.js", "runReviewQualityBaseline"],
|
|
524
|
+
"review-quality-gate": ["./commands/review-quality-gate.js", "runReviewQualityGate"],
|
|
525
|
+
"review-quality-score": ["./commands/review-quality-score.js", "runReviewQualityScore"],
|
|
526
|
+
"review-quality-trend": ["./commands/review-quality-trend.js", "runReviewQualityTrend"],
|
|
527
|
+
"review-queue": ["./commands/review-queue.js", "runReviewQueue"],
|
|
528
|
+
"review-quickstart": ["./commands/review-quickstart.js", "runReviewQuickstart"],
|
|
529
|
+
"review-quota-check": ["./commands/review-quota-check.js", "runReviewQuotaCheck"],
|
|
530
|
+
"review-quota": ["./commands/review-quota.js", "runReviewQuota"],
|
|
531
|
+
"review-rate-limit": ["./commands/review-rate-limit.js", "runReviewRateLimit"],
|
|
532
|
+
"review-readiness-check": ["./commands/review-readiness-check.js", "runReviewReadinessCheck"],
|
|
533
|
+
"review-receipt": ["./commands/review-receipt.js", "runReviewReceipt"],
|
|
534
|
+
"review-release-gate": ["./commands/review-release-gate.js", "runReviewReleaseGate"],
|
|
535
|
+
"review-replay": ["./commands/review-replay.js", "runReviewReplay"],
|
|
536
|
+
"review-repo-onboard": ["./commands/review-repo-onboard.js", "runReviewRepoOnboard"],
|
|
537
|
+
"review-report-archive": ["./commands/review-report-archive.js", "runReviewReportArchive"],
|
|
538
|
+
"review-report-merge": ["./commands/review-report-merge.js", "runReviewReportMerge"],
|
|
539
|
+
"review-report-pdf": ["./commands/review-report-pdf.js", "runReviewReportPdf"],
|
|
540
|
+
"review-report-schedule": ["./commands/review-report-schedule.js", "runReviewReportSchedule"],
|
|
541
|
+
"review-retrospective": ["./commands/review-retrospective.js", "runReviewRetrospective"],
|
|
542
|
+
"review-retry": ["./commands/review-retry.js", "runReviewRetry"],
|
|
543
|
+
"review-review-cadence": ["./commands/review-review-cadence.js", "runReviewReviewCadence"],
|
|
544
|
+
"review-review-comments": ["./commands/review-review-comments.js", "runReviewReviewComments"],
|
|
545
|
+
"review-reviewer-match": ["./commands/review-reviewer-match.js", "runReviewReviewerMatch"],
|
|
546
|
+
"review-risk-matrix": ["./commands/review-risk-matrix.js", "runReviewRiskMatrix"],
|
|
547
|
+
"review-risk-score": ["./commands/review-risk-score.js", "runReviewRiskScore"],
|
|
548
|
+
"review-role-assignment": ["./commands/review-role-assignment.js", "runReviewRoleAssignment"],
|
|
549
|
+
"review-rollback": ["./commands/review-rollback.js", "runReviewRollback"],
|
|
550
|
+
"review-rollout-plan": ["./commands/review-rollout-plan.js", "runReviewRolloutPlan"],
|
|
551
|
+
"review-rule-filter": ["./commands/review-rule-filter.js", "runReviewRuleFilter"],
|
|
552
|
+
"review-rule-stats": ["./commands/review-rule-stats.js", "runReviewRuleStats"],
|
|
553
|
+
"review-sandbox": ["./commands/review-sandbox.js", "runReviewSandbox"],
|
|
554
|
+
"review-schedule": ["./commands/review-schedule.js", "runReviewSchedule"],
|
|
555
|
+
"review-scope-limit": ["./commands/review-scope-limit.js", "runReviewScopeLimit"],
|
|
556
|
+
"review-scope-lock": ["./commands/review-scope-lock.js", "runReviewScopeLock"],
|
|
557
|
+
"review-scope-select": ["./commands/review-scope-select.js", "runReviewScopeSelect"],
|
|
558
|
+
"review-scope-suggest": ["./commands/review-scope-suggest.js", "runReviewScopeSuggest"],
|
|
559
|
+
"review-scope": ["./commands/review-scope.js", "runReviewScope"],
|
|
560
|
+
"review-score-history": ["./commands/review-score-history.js", "runReviewScoreHistory"],
|
|
561
|
+
"review-security-posture": ["./commands/review-security-posture.js", "runReviewSecurityPosture"],
|
|
562
|
+
"review-session-replay": ["./commands/review-session-replay.js", "runReviewSessionReplay"],
|
|
563
|
+
"review-session-save": ["./commands/review-session-save.js", "runReviewSessionSave"],
|
|
564
|
+
"review-session": ["./commands/review-session.js", "runReviewSession"],
|
|
565
|
+
"review-skip-list": ["./commands/review-skip-list.js", "runReviewSkipList"],
|
|
566
|
+
"review-skip-rule": ["./commands/review-skip-rule.js", "runReviewSkipRule"],
|
|
567
|
+
"review-sla-config": ["./commands/review-sla-config.js", "runReviewSlaConfig"],
|
|
568
|
+
"review-slack-format": ["./commands/review-slack-format.js", "runReviewSlackFormat"],
|
|
569
|
+
"review-snapshot-diff": ["./commands/review-snapshot-diff.js", "runReviewSnapshotDiff"],
|
|
570
|
+
"review-sprint-plan": ["./commands/review-sprint-plan.js", "runReviewSprintPlan"],
|
|
571
|
+
"review-stakeholder-notify": ["./commands/review-stakeholder-notify.js", "runReviewStakeholderNotify"],
|
|
572
|
+
"review-stakeholder-report": ["./commands/review-stakeholder-report.js", "runReviewStakeholderReport"],
|
|
573
|
+
"review-stale-finding-clean": ["./commands/review-stale-finding-clean.js", "runReviewStaleFindingClean"],
|
|
574
|
+
"review-standup": ["./commands/review-standup.js", "runReviewStandup"],
|
|
575
|
+
"review-stats": ["./commands/review-stats.js", "runReviewStats"],
|
|
576
|
+
"review-status-badge": ["./commands/review-status-badge.js", "runReviewStatusBadge"],
|
|
577
|
+
"review-streak": ["./commands/review-streak.js", "runReviewStreak"],
|
|
578
|
+
"review-summary-dashboard": ["./commands/review-summary-dashboard.js", "runReviewSummaryDashboard"],
|
|
579
|
+
"review-summary-email": ["./commands/review-summary-email.js", "runReviewSummaryEmail"],
|
|
580
|
+
"review-summary": ["./commands/review-summary.js", "runReviewSummary"],
|
|
581
|
+
"review-tag-manager": ["./commands/review-tag-manager.js", "runReviewTagManager"],
|
|
582
|
+
"review-tag": ["./commands/review-tag.js", "runReviewTag"],
|
|
583
|
+
"review-team-analytics": ["./commands/review-team-analytics.js", "runReviewTeamAnalytics"],
|
|
584
|
+
"review-team-assign": ["./commands/review-team-assign.js", "runReviewTeamAssign"],
|
|
585
|
+
"review-team-coverage": ["./commands/review-team-coverage.js", "runReviewTeamCoverage"],
|
|
586
|
+
"review-team-dashboard": ["./commands/review-team-dashboard.js", "runReviewTeamDashboard"],
|
|
587
|
+
"review-team-rotation": ["./commands/review-team-rotation.js", "runReviewTeamRotation"],
|
|
588
|
+
"review-team-skill-map": ["./commands/review-team-skill-map.js", "runReviewTeamSkillMap"],
|
|
589
|
+
"review-team-stats": ["./commands/review-team-stats.js", "runReviewTeamStats"],
|
|
590
|
+
"review-team-summary": ["./commands/review-team-summary.js", "runReviewTeamSummary"],
|
|
591
|
+
"review-team-velocity": ["./commands/review-team-velocity.js", "runReviewTeamVelocity"],
|
|
592
|
+
"review-template-export": ["./commands/review-template-export.js", "runReviewTemplateExport"],
|
|
593
|
+
"review-template-library": ["./commands/review-template-library.js", "runReviewTemplateLibrary"],
|
|
594
|
+
"review-template-suggest": ["./commands/review-template-suggest.js", "runReviewTemplateSuggest"],
|
|
595
|
+
"review-template": ["./commands/review-template.js", "runReviewTemplate"],
|
|
596
|
+
"review-tenant-config": ["./commands/review-tenant-config.js", "runReviewTenantConfig"],
|
|
597
|
+
"review-threshold-tune": ["./commands/review-threshold-tune.js", "runReviewThresholdTune"],
|
|
598
|
+
"review-timeline": ["./commands/review-timeline.js", "runReviewTimeline"],
|
|
599
|
+
"review-token-budget": ["./commands/review-token-budget.js", "runReviewTokenBudget"],
|
|
600
|
+
"review-velocity-track": ["./commands/review-velocity-track.js", "runReviewVelocityTrack"],
|
|
601
|
+
"review-watch-mode": ["./commands/review-watch-mode.js", "runReviewWatchMode"],
|
|
602
|
+
"review-webhook-dispatch": ["./commands/review-webhook-dispatch.js", "runReviewWebhookDispatch"],
|
|
603
|
+
"review-webhook-notify": ["./commands/review-webhook-notify.js", "runReviewWebhookNotify"],
|
|
604
|
+
"review-webhook": ["./commands/review-webhook.js", "runReviewWebhook"],
|
|
605
|
+
"review-whitelist": ["./commands/review-whitelist.js", "runReviewWhitelist"],
|
|
606
|
+
"review-workflow-suggest": ["./commands/review-workflow-suggest.js", "runReviewWorkflowSuggest"],
|
|
607
|
+
"review-workload-balance": ["./commands/review-workload-balance.js", "runReviewWorkloadBalance"],
|
|
608
|
+
"review-workspace-init": ["./commands/review-workspace-init.js", "runReviewWorkspaceInit"],
|
|
609
|
+
"review-workspace-scan": ["./commands/review-workspace-scan.js", "runReviewWorkspaceScan"],
|
|
610
|
+
review: ["./commands/review.js", "runReview"],
|
|
611
|
+
"risk-heatmap": ["./commands/risk-heatmap.js", "runRiskHeatmap"],
|
|
612
|
+
"rollback-safety": ["./commands/rollback-safety.js", "runRollbackSafety"],
|
|
613
|
+
"rule-catalog": ["./commands/rule-catalog.js", "runRuleCatalog"],
|
|
614
|
+
"rule-owner": ["./commands/rule-owner.js", "runRuleOwner"],
|
|
615
|
+
"rule-share": ["./commands/rule-share.js", "runRuleShare"],
|
|
616
|
+
"rule-test": ["./commands/rule-test.js", "runRuleTest"],
|
|
617
|
+
rule: ["./commands/rule.js", "runRule"],
|
|
618
|
+
"sbom-export": ["./commands/sbom-export.js", "runSbomExport"],
|
|
619
|
+
"scaffold-plugin": ["./commands/scaffold-plugin.js", "runScaffoldPlugin"],
|
|
620
|
+
"secret-age": ["./commands/secret-age.js", "runSecretAge"],
|
|
621
|
+
"secret-scan": ["./commands/secret-scan.js", "runSecretScan"],
|
|
622
|
+
"security-maturity": ["./commands/security-maturity.js", "runSecurityMaturity"],
|
|
623
|
+
"security-theater": ["./commands/security-theater.js", "runSecurityTheater"],
|
|
624
|
+
"setup-wizard": ["./commands/setup-wizard.js", "runSetupWizard"],
|
|
625
|
+
"severity-tune": ["./commands/severity-tune.js", "runSeverityTune"],
|
|
626
|
+
"sla-track": ["./commands/sla-track.js", "runSlaTrack"],
|
|
627
|
+
"smart-select": ["./commands/smart-select.js", "runSmartSelect"],
|
|
628
|
+
"snippet-eval": ["./commands/snippet-eval.js", "runSnippetEval"],
|
|
629
|
+
"spec-conform": ["./commands/spec-conform.js", "runSpecConform"],
|
|
630
|
+
"stale-pattern": ["./commands/stale-pattern.js", "runStalePattern"],
|
|
631
|
+
"state-integrity": ["./commands/state-integrity.js", "runStateIntegrity"],
|
|
632
|
+
suppress: ["./commands/suppress.js", "runSuppress"],
|
|
633
|
+
"team-config": ["./commands/team-config.js", "runTeamConfig"],
|
|
634
|
+
"team-leaderboard": ["./commands/team-leaderboard.js", "runTeamLeaderboard"],
|
|
635
|
+
"team-rules-sync": ["./commands/team-rules-sync.js", "runTeamRulesSync"],
|
|
636
|
+
"team-trust": ["./commands/team-trust.js", "runTeamTrust"],
|
|
637
|
+
"test-correlate": ["./commands/test-correlate.js", "runTestCorrelate"],
|
|
638
|
+
"test-isolation": ["./commands/test-isolation.js", "runTestIsolation"],
|
|
639
|
+
"test-quality": ["./commands/test-quality.js", "runTestQuality"],
|
|
640
|
+
"test-suggest": ["./commands/test-suggest.js", "runTestSuggest"],
|
|
641
|
+
"ticket-sync": ["./commands/ticket-sync.js", "runTicketSync"],
|
|
642
|
+
"timeout-audit": ["./commands/timeout-audit.js", "runTimeoutAudit"],
|
|
643
|
+
triage: ["./commands/triage.js", "runTriage"],
|
|
644
|
+
"trust-adaptive": ["./commands/trust-adaptive.js", "runTrustAdaptive"],
|
|
645
|
+
"trust-ramp": ["./commands/trust-ramp.js", "runTrustRamp"],
|
|
646
|
+
tune: ["./commands/tune.js", "runTune"],
|
|
647
|
+
"type-boundary": ["./commands/type-boundary.js", "runTypeBoundary"],
|
|
648
|
+
upload: ["./commands/upload.js", "runUpload"],
|
|
649
|
+
"validate-config": ["./commands/validate-config.js", "runValidateConfig"],
|
|
650
|
+
"vendor-lock-detect": ["./commands/vendor-lock-detect.js", "runVendorLockDetect"],
|
|
651
|
+
vote: ["./commands/vote.js", "runVote"],
|
|
652
|
+
"warm-cache": ["./commands/warm-cache.js", "runWarmCache"],
|
|
653
|
+
"watch-judge": ["./commands/watch-judge.js", "runWatchJudge"],
|
|
654
|
+
};
|