popeye-cli 1.8.0 → 1.9.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 +47 -3
- package/cheatsheet.md +33 -0
- package/dist/cli/commands/index.d.ts +1 -0
- package/dist/cli/commands/index.d.ts.map +1 -1
- package/dist/cli/commands/index.js +1 -0
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/commands/review.d.ts +31 -0
- package/dist/cli/commands/review.d.ts.map +1 -0
- package/dist/cli/commands/review.js +156 -0
- package/dist/cli/commands/review.js.map +1 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +2 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/interactive.d.ts.map +1 -1
- package/dist/cli/interactive.js +122 -61
- package/dist/cli/interactive.js.map +1 -1
- package/dist/types/audit.d.ts +623 -0
- package/dist/types/audit.d.ts.map +1 -0
- package/dist/types/audit.js +240 -0
- package/dist/types/audit.js.map +1 -0
- package/dist/types/workflow.d.ts +15 -0
- package/dist/types/workflow.d.ts.map +1 -1
- package/dist/types/workflow.js +5 -0
- package/dist/types/workflow.js.map +1 -1
- package/dist/workflow/audit-analyzer.d.ts +58 -0
- package/dist/workflow/audit-analyzer.d.ts.map +1 -0
- package/dist/workflow/audit-analyzer.js +420 -0
- package/dist/workflow/audit-analyzer.js.map +1 -0
- package/dist/workflow/audit-mode.d.ts +28 -0
- package/dist/workflow/audit-mode.d.ts.map +1 -0
- package/dist/workflow/audit-mode.js +169 -0
- package/dist/workflow/audit-mode.js.map +1 -0
- package/dist/workflow/audit-recovery.d.ts +61 -0
- package/dist/workflow/audit-recovery.d.ts.map +1 -0
- package/dist/workflow/audit-recovery.js +242 -0
- package/dist/workflow/audit-recovery.js.map +1 -0
- package/dist/workflow/audit-reporter.d.ts +65 -0
- package/dist/workflow/audit-reporter.d.ts.map +1 -0
- package/dist/workflow/audit-reporter.js +301 -0
- package/dist/workflow/audit-reporter.js.map +1 -0
- package/dist/workflow/audit-scanner.d.ts +87 -0
- package/dist/workflow/audit-scanner.d.ts.map +1 -0
- package/dist/workflow/audit-scanner.js +768 -0
- package/dist/workflow/audit-scanner.js.map +1 -0
- package/dist/workflow/index.d.ts +5 -0
- package/dist/workflow/index.d.ts.map +1 -1
- package/dist/workflow/index.js +5 -0
- package/dist/workflow/index.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/commands/index.ts +1 -0
- package/src/cli/commands/review.ts +187 -0
- package/src/cli/index.ts +2 -0
- package/src/cli/interactive.ts +72 -4
- package/src/types/audit.ts +294 -0
- package/src/types/workflow.ts +15 -0
- package/src/workflow/audit-analyzer.ts +491 -0
- package/src/workflow/audit-mode.ts +240 -0
- package/src/workflow/audit-recovery.ts +284 -0
- package/src/workflow/audit-reporter.ts +370 -0
- package/src/workflow/audit-scanner.ts +873 -0
- package/src/workflow/index.ts +5 -0
- package/tests/cli/commands/review.test.ts +52 -0
- package/tests/types/audit.test.ts +250 -0
- package/tests/workflow/audit-analyzer.test.ts +281 -0
- package/tests/workflow/audit-mode.test.ts +114 -0
- package/tests/workflow/audit-recovery.test.ts +237 -0
- package/tests/workflow/audit-reporter.test.ts +254 -0
- package/tests/workflow/audit-scanner.test.ts +270 -0
|
@@ -0,0 +1,623 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Audit system type definitions.
|
|
3
|
+
*
|
|
4
|
+
* Zod schemas and TypeScript types for the post-build audit/review feature.
|
|
5
|
+
* Covers scanning, analysis, reporting, and recovery.
|
|
6
|
+
*/
|
|
7
|
+
import { z } from 'zod';
|
|
8
|
+
export declare const AuditSeveritySchema: z.ZodEnum<{
|
|
9
|
+
critical: "critical";
|
|
10
|
+
info: "info";
|
|
11
|
+
major: "major";
|
|
12
|
+
minor: "minor";
|
|
13
|
+
}>;
|
|
14
|
+
export type AuditSeverity = z.infer<typeof AuditSeveritySchema>;
|
|
15
|
+
export declare const AuditCategorySchema: z.ZodEnum<{
|
|
16
|
+
"feature-completeness": "feature-completeness";
|
|
17
|
+
"integration-wiring": "integration-wiring";
|
|
18
|
+
"test-coverage": "test-coverage";
|
|
19
|
+
"config-deployment": "config-deployment";
|
|
20
|
+
"dependency-sanity": "dependency-sanity";
|
|
21
|
+
consistency: "consistency";
|
|
22
|
+
security: "security";
|
|
23
|
+
documentation: "documentation";
|
|
24
|
+
}>;
|
|
25
|
+
export type AuditCategory = z.infer<typeof AuditCategorySchema>;
|
|
26
|
+
export declare const ComponentKindSchema: z.ZodEnum<{
|
|
27
|
+
website: "website";
|
|
28
|
+
frontend: "frontend";
|
|
29
|
+
backend: "backend";
|
|
30
|
+
infra: "infra";
|
|
31
|
+
shared: "shared";
|
|
32
|
+
}>;
|
|
33
|
+
export type ComponentKind = z.infer<typeof ComponentKindSchema>;
|
|
34
|
+
export declare const AuditEvidenceSchema: z.ZodObject<{
|
|
35
|
+
file: z.ZodString;
|
|
36
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
37
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
38
|
+
description: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, z.core.$strip>;
|
|
40
|
+
export type AuditEvidence = z.infer<typeof AuditEvidenceSchema>;
|
|
41
|
+
export declare const DependencyManifestSchema: z.ZodObject<{
|
|
42
|
+
file: z.ZodString;
|
|
43
|
+
type: z.ZodEnum<{
|
|
44
|
+
other: "other";
|
|
45
|
+
"package.json": "package.json";
|
|
46
|
+
"pyproject.toml": "pyproject.toml";
|
|
47
|
+
"requirements.txt": "requirements.txt";
|
|
48
|
+
}>;
|
|
49
|
+
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
50
|
+
devDependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
51
|
+
}, z.core.$strip>;
|
|
52
|
+
export type DependencyManifest = z.infer<typeof DependencyManifestSchema>;
|
|
53
|
+
export declare const FileEntrySchema: z.ZodObject<{
|
|
54
|
+
path: z.ZodString;
|
|
55
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
56
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
export type FileEntry = z.infer<typeof FileEntrySchema>;
|
|
59
|
+
export declare const FileExcerptSchema: z.ZodObject<{
|
|
60
|
+
path: z.ZodString;
|
|
61
|
+
content: z.ZodString;
|
|
62
|
+
}, z.core.$strip>;
|
|
63
|
+
export type FileExcerpt = z.infer<typeof FileExcerptSchema>;
|
|
64
|
+
export declare const ComponentScanSchema: z.ZodObject<{
|
|
65
|
+
kind: z.ZodEnum<{
|
|
66
|
+
website: "website";
|
|
67
|
+
frontend: "frontend";
|
|
68
|
+
backend: "backend";
|
|
69
|
+
infra: "infra";
|
|
70
|
+
shared: "shared";
|
|
71
|
+
}>;
|
|
72
|
+
rootDir: z.ZodString;
|
|
73
|
+
language: z.ZodEnum<{
|
|
74
|
+
python: "python";
|
|
75
|
+
typescript: "typescript";
|
|
76
|
+
mixed: "mixed";
|
|
77
|
+
}>;
|
|
78
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
79
|
+
entryPoints: z.ZodArray<z.ZodString>;
|
|
80
|
+
routeFiles: z.ZodArray<z.ZodString>;
|
|
81
|
+
testFiles: z.ZodArray<z.ZodObject<{
|
|
82
|
+
path: z.ZodString;
|
|
83
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
85
|
+
}, z.core.$strip>>;
|
|
86
|
+
sourceFiles: z.ZodArray<z.ZodObject<{
|
|
87
|
+
path: z.ZodString;
|
|
88
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
90
|
+
}, z.core.$strip>>;
|
|
91
|
+
dependencyManifests: z.ZodArray<z.ZodObject<{
|
|
92
|
+
file: z.ZodString;
|
|
93
|
+
type: z.ZodEnum<{
|
|
94
|
+
other: "other";
|
|
95
|
+
"package.json": "package.json";
|
|
96
|
+
"pyproject.toml": "pyproject.toml";
|
|
97
|
+
"requirements.txt": "requirements.txt";
|
|
98
|
+
}>;
|
|
99
|
+
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
100
|
+
devDependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
101
|
+
}, z.core.$strip>>;
|
|
102
|
+
}, z.core.$strip>;
|
|
103
|
+
export type ComponentScan = z.infer<typeof ComponentScanSchema>;
|
|
104
|
+
export declare const WiringMismatchSchema: z.ZodObject<{
|
|
105
|
+
type: z.ZodString;
|
|
106
|
+
details: z.ZodString;
|
|
107
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
108
|
+
file: z.ZodString;
|
|
109
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
110
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
111
|
+
description: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, z.core.$strip>>;
|
|
113
|
+
}, z.core.$strip>;
|
|
114
|
+
export type WiringMismatch = z.infer<typeof WiringMismatchSchema>;
|
|
115
|
+
export declare const WiringMatrixSchema: z.ZodObject<{
|
|
116
|
+
frontendApiBaseEnvKeys: z.ZodArray<z.ZodString>;
|
|
117
|
+
frontendApiBaseResolved: z.ZodOptional<z.ZodString>;
|
|
118
|
+
backendCorsOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
119
|
+
backendApiPrefix: z.ZodOptional<z.ZodString>;
|
|
120
|
+
potentialMismatches: z.ZodArray<z.ZodObject<{
|
|
121
|
+
type: z.ZodString;
|
|
122
|
+
details: z.ZodString;
|
|
123
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
124
|
+
file: z.ZodString;
|
|
125
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
126
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
127
|
+
description: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, z.core.$strip>>;
|
|
129
|
+
}, z.core.$strip>>;
|
|
130
|
+
}, z.core.$strip>;
|
|
131
|
+
export type WiringMatrix = z.infer<typeof WiringMatrixSchema>;
|
|
132
|
+
export declare const ProjectScanResultSchema: z.ZodObject<{
|
|
133
|
+
tree: z.ZodString;
|
|
134
|
+
components: z.ZodArray<z.ZodObject<{
|
|
135
|
+
kind: z.ZodEnum<{
|
|
136
|
+
website: "website";
|
|
137
|
+
frontend: "frontend";
|
|
138
|
+
backend: "backend";
|
|
139
|
+
infra: "infra";
|
|
140
|
+
shared: "shared";
|
|
141
|
+
}>;
|
|
142
|
+
rootDir: z.ZodString;
|
|
143
|
+
language: z.ZodEnum<{
|
|
144
|
+
python: "python";
|
|
145
|
+
typescript: "typescript";
|
|
146
|
+
mixed: "mixed";
|
|
147
|
+
}>;
|
|
148
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
149
|
+
entryPoints: z.ZodArray<z.ZodString>;
|
|
150
|
+
routeFiles: z.ZodArray<z.ZodString>;
|
|
151
|
+
testFiles: z.ZodArray<z.ZodObject<{
|
|
152
|
+
path: z.ZodString;
|
|
153
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
154
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
155
|
+
}, z.core.$strip>>;
|
|
156
|
+
sourceFiles: z.ZodArray<z.ZodObject<{
|
|
157
|
+
path: z.ZodString;
|
|
158
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
159
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
160
|
+
}, z.core.$strip>>;
|
|
161
|
+
dependencyManifests: z.ZodArray<z.ZodObject<{
|
|
162
|
+
file: z.ZodString;
|
|
163
|
+
type: z.ZodEnum<{
|
|
164
|
+
other: "other";
|
|
165
|
+
"package.json": "package.json";
|
|
166
|
+
"pyproject.toml": "pyproject.toml";
|
|
167
|
+
"requirements.txt": "requirements.txt";
|
|
168
|
+
}>;
|
|
169
|
+
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
170
|
+
devDependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
171
|
+
}, z.core.$strip>>;
|
|
172
|
+
}, z.core.$strip>>;
|
|
173
|
+
detectedComposition: z.ZodArray<z.ZodEnum<{
|
|
174
|
+
website: "website";
|
|
175
|
+
frontend: "frontend";
|
|
176
|
+
backend: "backend";
|
|
177
|
+
infra: "infra";
|
|
178
|
+
shared: "shared";
|
|
179
|
+
}>>;
|
|
180
|
+
stateLanguage: z.ZodString;
|
|
181
|
+
compositionMismatch: z.ZodBoolean;
|
|
182
|
+
sourceFiles: z.ZodArray<z.ZodObject<{
|
|
183
|
+
path: z.ZodString;
|
|
184
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
185
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
186
|
+
}, z.core.$strip>>;
|
|
187
|
+
testFiles: z.ZodArray<z.ZodObject<{
|
|
188
|
+
path: z.ZodString;
|
|
189
|
+
lines: z.ZodOptional<z.ZodNumber>;
|
|
190
|
+
extension: z.ZodOptional<z.ZodString>;
|
|
191
|
+
}, z.core.$strip>>;
|
|
192
|
+
configFiles: z.ZodArray<z.ZodString>;
|
|
193
|
+
entryPoints: z.ZodArray<z.ZodString>;
|
|
194
|
+
routeFiles: z.ZodArray<z.ZodString>;
|
|
195
|
+
dependencies: z.ZodArray<z.ZodObject<{
|
|
196
|
+
file: z.ZodString;
|
|
197
|
+
type: z.ZodEnum<{
|
|
198
|
+
other: "other";
|
|
199
|
+
"package.json": "package.json";
|
|
200
|
+
"pyproject.toml": "pyproject.toml";
|
|
201
|
+
"requirements.txt": "requirements.txt";
|
|
202
|
+
}>;
|
|
203
|
+
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
204
|
+
devDependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
205
|
+
}, z.core.$strip>>;
|
|
206
|
+
totalSourceFiles: z.ZodNumber;
|
|
207
|
+
totalTestFiles: z.ZodNumber;
|
|
208
|
+
totalLinesOfCode: z.ZodNumber;
|
|
209
|
+
totalLinesOfTests: z.ZodNumber;
|
|
210
|
+
language: z.ZodString;
|
|
211
|
+
claudeMdContent: z.ZodOptional<z.ZodString>;
|
|
212
|
+
readmeContent: z.ZodOptional<z.ZodString>;
|
|
213
|
+
docsIndex: z.ZodArray<z.ZodString>;
|
|
214
|
+
keyFileSnippets: z.ZodArray<z.ZodObject<{
|
|
215
|
+
path: z.ZodString;
|
|
216
|
+
content: z.ZodString;
|
|
217
|
+
}, z.core.$strip>>;
|
|
218
|
+
wiring: z.ZodOptional<z.ZodObject<{
|
|
219
|
+
frontendApiBaseEnvKeys: z.ZodArray<z.ZodString>;
|
|
220
|
+
frontendApiBaseResolved: z.ZodOptional<z.ZodString>;
|
|
221
|
+
backendCorsOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
222
|
+
backendApiPrefix: z.ZodOptional<z.ZodString>;
|
|
223
|
+
potentialMismatches: z.ZodArray<z.ZodObject<{
|
|
224
|
+
type: z.ZodString;
|
|
225
|
+
details: z.ZodString;
|
|
226
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
227
|
+
file: z.ZodString;
|
|
228
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
229
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
230
|
+
description: z.ZodOptional<z.ZodString>;
|
|
231
|
+
}, z.core.$strip>>;
|
|
232
|
+
}, z.core.$strip>>;
|
|
233
|
+
}, z.core.$strip>>;
|
|
234
|
+
envExampleContent: z.ZodOptional<z.ZodString>;
|
|
235
|
+
dockerComposeContent: z.ZodOptional<z.ZodString>;
|
|
236
|
+
}, z.core.$strip>;
|
|
237
|
+
export type ProjectScanResult = z.infer<typeof ProjectScanResultSchema>;
|
|
238
|
+
export declare const SearchMetadataSchema: z.ZodObject<{
|
|
239
|
+
serenaUsed: z.ZodBoolean;
|
|
240
|
+
serenaRetries: z.ZodNumber;
|
|
241
|
+
serenaErrors: z.ZodArray<z.ZodString>;
|
|
242
|
+
fallbackUsed: z.ZodBoolean;
|
|
243
|
+
fallbackTool: z.ZodString;
|
|
244
|
+
searchQueries: z.ZodArray<z.ZodString>;
|
|
245
|
+
}, z.core.$strip>;
|
|
246
|
+
export type SearchMetadata = z.infer<typeof SearchMetadataSchema>;
|
|
247
|
+
export declare const AuditFindingSchema: z.ZodObject<{
|
|
248
|
+
id: z.ZodString;
|
|
249
|
+
category: z.ZodEnum<{
|
|
250
|
+
"feature-completeness": "feature-completeness";
|
|
251
|
+
"integration-wiring": "integration-wiring";
|
|
252
|
+
"test-coverage": "test-coverage";
|
|
253
|
+
"config-deployment": "config-deployment";
|
|
254
|
+
"dependency-sanity": "dependency-sanity";
|
|
255
|
+
consistency: "consistency";
|
|
256
|
+
security: "security";
|
|
257
|
+
documentation: "documentation";
|
|
258
|
+
}>;
|
|
259
|
+
severity: z.ZodEnum<{
|
|
260
|
+
critical: "critical";
|
|
261
|
+
info: "info";
|
|
262
|
+
major: "major";
|
|
263
|
+
minor: "minor";
|
|
264
|
+
}>;
|
|
265
|
+
title: z.ZodString;
|
|
266
|
+
description: z.ZodString;
|
|
267
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
268
|
+
file: z.ZodString;
|
|
269
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
270
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
271
|
+
description: z.ZodOptional<z.ZodString>;
|
|
272
|
+
}, z.core.$strip>>;
|
|
273
|
+
recommendation: z.ZodString;
|
|
274
|
+
autoFixable: z.ZodBoolean;
|
|
275
|
+
}, z.core.$strip>;
|
|
276
|
+
export type AuditFinding = z.infer<typeof AuditFindingSchema>;
|
|
277
|
+
export declare const ProjectSummaryReportSchema: z.ZodObject<{
|
|
278
|
+
projectName: z.ZodString;
|
|
279
|
+
language: z.ZodString;
|
|
280
|
+
totalSourceFiles: z.ZodNumber;
|
|
281
|
+
totalTestFiles: z.ZodNumber;
|
|
282
|
+
totalLinesOfCode: z.ZodNumber;
|
|
283
|
+
totalLinesOfTests: z.ZodNumber;
|
|
284
|
+
componentCount: z.ZodNumber;
|
|
285
|
+
detectedComposition: z.ZodArray<z.ZodEnum<{
|
|
286
|
+
website: "website";
|
|
287
|
+
frontend: "frontend";
|
|
288
|
+
backend: "backend";
|
|
289
|
+
infra: "infra";
|
|
290
|
+
shared: "shared";
|
|
291
|
+
}>>;
|
|
292
|
+
entryPointCount: z.ZodNumber;
|
|
293
|
+
routeCount: z.ZodNumber;
|
|
294
|
+
dependencyCount: z.ZodNumber;
|
|
295
|
+
hasDocker: z.ZodBoolean;
|
|
296
|
+
hasEnvExample: z.ZodBoolean;
|
|
297
|
+
hasCiConfig: z.ZodBoolean;
|
|
298
|
+
aiOverview: z.ZodOptional<z.ZodString>;
|
|
299
|
+
}, z.core.$strip>;
|
|
300
|
+
export type ProjectSummaryReport = z.infer<typeof ProjectSummaryReportSchema>;
|
|
301
|
+
export declare const AuditRecommendationSchema: z.ZodEnum<{
|
|
302
|
+
pass: "pass";
|
|
303
|
+
"fix-and-recheck": "fix-and-recheck";
|
|
304
|
+
"major-rework": "major-rework";
|
|
305
|
+
}>;
|
|
306
|
+
export type AuditRecommendation = z.infer<typeof AuditRecommendationSchema>;
|
|
307
|
+
export declare const ProjectAuditReportSchema: z.ZodObject<{
|
|
308
|
+
projectName: z.ZodString;
|
|
309
|
+
language: z.ZodString;
|
|
310
|
+
auditedAt: z.ZodString;
|
|
311
|
+
auditRunId: z.ZodString;
|
|
312
|
+
summary: z.ZodObject<{
|
|
313
|
+
projectName: z.ZodString;
|
|
314
|
+
language: z.ZodString;
|
|
315
|
+
totalSourceFiles: z.ZodNumber;
|
|
316
|
+
totalTestFiles: z.ZodNumber;
|
|
317
|
+
totalLinesOfCode: z.ZodNumber;
|
|
318
|
+
totalLinesOfTests: z.ZodNumber;
|
|
319
|
+
componentCount: z.ZodNumber;
|
|
320
|
+
detectedComposition: z.ZodArray<z.ZodEnum<{
|
|
321
|
+
website: "website";
|
|
322
|
+
frontend: "frontend";
|
|
323
|
+
backend: "backend";
|
|
324
|
+
infra: "infra";
|
|
325
|
+
shared: "shared";
|
|
326
|
+
}>>;
|
|
327
|
+
entryPointCount: z.ZodNumber;
|
|
328
|
+
routeCount: z.ZodNumber;
|
|
329
|
+
dependencyCount: z.ZodNumber;
|
|
330
|
+
hasDocker: z.ZodBoolean;
|
|
331
|
+
hasEnvExample: z.ZodBoolean;
|
|
332
|
+
hasCiConfig: z.ZodBoolean;
|
|
333
|
+
aiOverview: z.ZodOptional<z.ZodString>;
|
|
334
|
+
}, z.core.$strip>;
|
|
335
|
+
findings: z.ZodArray<z.ZodObject<{
|
|
336
|
+
id: z.ZodString;
|
|
337
|
+
category: z.ZodEnum<{
|
|
338
|
+
"feature-completeness": "feature-completeness";
|
|
339
|
+
"integration-wiring": "integration-wiring";
|
|
340
|
+
"test-coverage": "test-coverage";
|
|
341
|
+
"config-deployment": "config-deployment";
|
|
342
|
+
"dependency-sanity": "dependency-sanity";
|
|
343
|
+
consistency: "consistency";
|
|
344
|
+
security: "security";
|
|
345
|
+
documentation: "documentation";
|
|
346
|
+
}>;
|
|
347
|
+
severity: z.ZodEnum<{
|
|
348
|
+
critical: "critical";
|
|
349
|
+
info: "info";
|
|
350
|
+
major: "major";
|
|
351
|
+
minor: "minor";
|
|
352
|
+
}>;
|
|
353
|
+
title: z.ZodString;
|
|
354
|
+
description: z.ZodString;
|
|
355
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
356
|
+
file: z.ZodString;
|
|
357
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
358
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
359
|
+
description: z.ZodOptional<z.ZodString>;
|
|
360
|
+
}, z.core.$strip>>;
|
|
361
|
+
recommendation: z.ZodString;
|
|
362
|
+
autoFixable: z.ZodBoolean;
|
|
363
|
+
}, z.core.$strip>>;
|
|
364
|
+
overallScore: z.ZodNumber;
|
|
365
|
+
categoryScores: z.ZodRecord<z.ZodEnum<{
|
|
366
|
+
"feature-completeness": "feature-completeness";
|
|
367
|
+
"integration-wiring": "integration-wiring";
|
|
368
|
+
"test-coverage": "test-coverage";
|
|
369
|
+
"config-deployment": "config-deployment";
|
|
370
|
+
"dependency-sanity": "dependency-sanity";
|
|
371
|
+
consistency: "consistency";
|
|
372
|
+
security: "security";
|
|
373
|
+
documentation: "documentation";
|
|
374
|
+
}>, z.ZodNumber>;
|
|
375
|
+
criticalCount: z.ZodNumber;
|
|
376
|
+
majorCount: z.ZodNumber;
|
|
377
|
+
minorCount: z.ZodNumber;
|
|
378
|
+
infoCount: z.ZodNumber;
|
|
379
|
+
passedChecks: z.ZodArray<z.ZodString>;
|
|
380
|
+
searchMetadata: z.ZodObject<{
|
|
381
|
+
serenaUsed: z.ZodBoolean;
|
|
382
|
+
serenaRetries: z.ZodNumber;
|
|
383
|
+
serenaErrors: z.ZodArray<z.ZodString>;
|
|
384
|
+
fallbackUsed: z.ZodBoolean;
|
|
385
|
+
fallbackTool: z.ZodString;
|
|
386
|
+
searchQueries: z.ZodArray<z.ZodString>;
|
|
387
|
+
}, z.core.$strip>;
|
|
388
|
+
recommendation: z.ZodEnum<{
|
|
389
|
+
pass: "pass";
|
|
390
|
+
"fix-and-recheck": "fix-and-recheck";
|
|
391
|
+
"major-rework": "major-rework";
|
|
392
|
+
}>;
|
|
393
|
+
}, z.core.$strip>;
|
|
394
|
+
export type ProjectAuditReport = z.infer<typeof ProjectAuditReportSchema>;
|
|
395
|
+
export declare const RecoveryTaskSchema: z.ZodObject<{
|
|
396
|
+
name: z.ZodString;
|
|
397
|
+
description: z.ZodString;
|
|
398
|
+
findingIds: z.ZodArray<z.ZodString>;
|
|
399
|
+
acceptanceCriteria: z.ZodArray<z.ZodString>;
|
|
400
|
+
testPlan: z.ZodOptional<z.ZodString>;
|
|
401
|
+
appTarget: z.ZodEnum<{
|
|
402
|
+
website: "website";
|
|
403
|
+
frontend: "frontend";
|
|
404
|
+
backend: "backend";
|
|
405
|
+
infra: "infra";
|
|
406
|
+
shared: "shared";
|
|
407
|
+
}>;
|
|
408
|
+
}, z.core.$strip>;
|
|
409
|
+
export type RecoveryTask = z.infer<typeof RecoveryTaskSchema>;
|
|
410
|
+
export declare const RecoveryMilestoneSchema: z.ZodObject<{
|
|
411
|
+
name: z.ZodString;
|
|
412
|
+
description: z.ZodString;
|
|
413
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
414
|
+
name: z.ZodString;
|
|
415
|
+
description: z.ZodString;
|
|
416
|
+
findingIds: z.ZodArray<z.ZodString>;
|
|
417
|
+
acceptanceCriteria: z.ZodArray<z.ZodString>;
|
|
418
|
+
testPlan: z.ZodOptional<z.ZodString>;
|
|
419
|
+
appTarget: z.ZodEnum<{
|
|
420
|
+
website: "website";
|
|
421
|
+
frontend: "frontend";
|
|
422
|
+
backend: "backend";
|
|
423
|
+
infra: "infra";
|
|
424
|
+
shared: "shared";
|
|
425
|
+
}>;
|
|
426
|
+
}, z.core.$strip>>;
|
|
427
|
+
}, z.core.$strip>;
|
|
428
|
+
export type RecoveryMilestone = z.infer<typeof RecoveryMilestoneSchema>;
|
|
429
|
+
export declare const RecoveryPlanSchema: z.ZodObject<{
|
|
430
|
+
generatedAt: z.ZodString;
|
|
431
|
+
auditScore: z.ZodNumber;
|
|
432
|
+
auditRunId: z.ZodString;
|
|
433
|
+
totalFindings: z.ZodNumber;
|
|
434
|
+
criticalFindings: z.ZodNumber;
|
|
435
|
+
milestones: z.ZodArray<z.ZodObject<{
|
|
436
|
+
name: z.ZodString;
|
|
437
|
+
description: z.ZodString;
|
|
438
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
439
|
+
name: z.ZodString;
|
|
440
|
+
description: z.ZodString;
|
|
441
|
+
findingIds: z.ZodArray<z.ZodString>;
|
|
442
|
+
acceptanceCriteria: z.ZodArray<z.ZodString>;
|
|
443
|
+
testPlan: z.ZodOptional<z.ZodString>;
|
|
444
|
+
appTarget: z.ZodEnum<{
|
|
445
|
+
website: "website";
|
|
446
|
+
frontend: "frontend";
|
|
447
|
+
backend: "backend";
|
|
448
|
+
infra: "infra";
|
|
449
|
+
shared: "shared";
|
|
450
|
+
}>;
|
|
451
|
+
}, z.core.$strip>>;
|
|
452
|
+
}, z.core.$strip>>;
|
|
453
|
+
estimatedEffort: z.ZodString;
|
|
454
|
+
}, z.core.$strip>;
|
|
455
|
+
export type RecoveryPlan = z.infer<typeof RecoveryPlanSchema>;
|
|
456
|
+
export declare const AuditModeOptionsSchema: z.ZodObject<{
|
|
457
|
+
projectDir: z.ZodString;
|
|
458
|
+
depth: z.ZodDefault<z.ZodNumber>;
|
|
459
|
+
runTests: z.ZodDefault<z.ZodBoolean>;
|
|
460
|
+
strict: z.ZodDefault<z.ZodBoolean>;
|
|
461
|
+
format: z.ZodDefault<z.ZodEnum<{
|
|
462
|
+
json: "json";
|
|
463
|
+
both: "both";
|
|
464
|
+
md: "md";
|
|
465
|
+
}>>;
|
|
466
|
+
autoRecover: z.ZodDefault<z.ZodBoolean>;
|
|
467
|
+
target: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodEnum<{
|
|
468
|
+
website: "website";
|
|
469
|
+
frontend: "frontend";
|
|
470
|
+
backend: "backend";
|
|
471
|
+
infra: "infra";
|
|
472
|
+
shared: "shared";
|
|
473
|
+
}>]>>;
|
|
474
|
+
}, z.core.$strip>;
|
|
475
|
+
export type AuditModeOptions = z.infer<typeof AuditModeOptionsSchema>;
|
|
476
|
+
export declare const AuditModeResultSchema: z.ZodObject<{
|
|
477
|
+
success: z.ZodBoolean;
|
|
478
|
+
summary: z.ZodObject<{
|
|
479
|
+
projectName: z.ZodString;
|
|
480
|
+
language: z.ZodString;
|
|
481
|
+
totalSourceFiles: z.ZodNumber;
|
|
482
|
+
totalTestFiles: z.ZodNumber;
|
|
483
|
+
totalLinesOfCode: z.ZodNumber;
|
|
484
|
+
totalLinesOfTests: z.ZodNumber;
|
|
485
|
+
componentCount: z.ZodNumber;
|
|
486
|
+
detectedComposition: z.ZodArray<z.ZodEnum<{
|
|
487
|
+
website: "website";
|
|
488
|
+
frontend: "frontend";
|
|
489
|
+
backend: "backend";
|
|
490
|
+
infra: "infra";
|
|
491
|
+
shared: "shared";
|
|
492
|
+
}>>;
|
|
493
|
+
entryPointCount: z.ZodNumber;
|
|
494
|
+
routeCount: z.ZodNumber;
|
|
495
|
+
dependencyCount: z.ZodNumber;
|
|
496
|
+
hasDocker: z.ZodBoolean;
|
|
497
|
+
hasEnvExample: z.ZodBoolean;
|
|
498
|
+
hasCiConfig: z.ZodBoolean;
|
|
499
|
+
aiOverview: z.ZodOptional<z.ZodString>;
|
|
500
|
+
}, z.core.$strip>;
|
|
501
|
+
audit: z.ZodObject<{
|
|
502
|
+
projectName: z.ZodString;
|
|
503
|
+
language: z.ZodString;
|
|
504
|
+
auditedAt: z.ZodString;
|
|
505
|
+
auditRunId: z.ZodString;
|
|
506
|
+
summary: z.ZodObject<{
|
|
507
|
+
projectName: z.ZodString;
|
|
508
|
+
language: z.ZodString;
|
|
509
|
+
totalSourceFiles: z.ZodNumber;
|
|
510
|
+
totalTestFiles: z.ZodNumber;
|
|
511
|
+
totalLinesOfCode: z.ZodNumber;
|
|
512
|
+
totalLinesOfTests: z.ZodNumber;
|
|
513
|
+
componentCount: z.ZodNumber;
|
|
514
|
+
detectedComposition: z.ZodArray<z.ZodEnum<{
|
|
515
|
+
website: "website";
|
|
516
|
+
frontend: "frontend";
|
|
517
|
+
backend: "backend";
|
|
518
|
+
infra: "infra";
|
|
519
|
+
shared: "shared";
|
|
520
|
+
}>>;
|
|
521
|
+
entryPointCount: z.ZodNumber;
|
|
522
|
+
routeCount: z.ZodNumber;
|
|
523
|
+
dependencyCount: z.ZodNumber;
|
|
524
|
+
hasDocker: z.ZodBoolean;
|
|
525
|
+
hasEnvExample: z.ZodBoolean;
|
|
526
|
+
hasCiConfig: z.ZodBoolean;
|
|
527
|
+
aiOverview: z.ZodOptional<z.ZodString>;
|
|
528
|
+
}, z.core.$strip>;
|
|
529
|
+
findings: z.ZodArray<z.ZodObject<{
|
|
530
|
+
id: z.ZodString;
|
|
531
|
+
category: z.ZodEnum<{
|
|
532
|
+
"feature-completeness": "feature-completeness";
|
|
533
|
+
"integration-wiring": "integration-wiring";
|
|
534
|
+
"test-coverage": "test-coverage";
|
|
535
|
+
"config-deployment": "config-deployment";
|
|
536
|
+
"dependency-sanity": "dependency-sanity";
|
|
537
|
+
consistency: "consistency";
|
|
538
|
+
security: "security";
|
|
539
|
+
documentation: "documentation";
|
|
540
|
+
}>;
|
|
541
|
+
severity: z.ZodEnum<{
|
|
542
|
+
critical: "critical";
|
|
543
|
+
info: "info";
|
|
544
|
+
major: "major";
|
|
545
|
+
minor: "minor";
|
|
546
|
+
}>;
|
|
547
|
+
title: z.ZodString;
|
|
548
|
+
description: z.ZodString;
|
|
549
|
+
evidence: z.ZodArray<z.ZodObject<{
|
|
550
|
+
file: z.ZodString;
|
|
551
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
552
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
553
|
+
description: z.ZodOptional<z.ZodString>;
|
|
554
|
+
}, z.core.$strip>>;
|
|
555
|
+
recommendation: z.ZodString;
|
|
556
|
+
autoFixable: z.ZodBoolean;
|
|
557
|
+
}, z.core.$strip>>;
|
|
558
|
+
overallScore: z.ZodNumber;
|
|
559
|
+
categoryScores: z.ZodRecord<z.ZodEnum<{
|
|
560
|
+
"feature-completeness": "feature-completeness";
|
|
561
|
+
"integration-wiring": "integration-wiring";
|
|
562
|
+
"test-coverage": "test-coverage";
|
|
563
|
+
"config-deployment": "config-deployment";
|
|
564
|
+
"dependency-sanity": "dependency-sanity";
|
|
565
|
+
consistency: "consistency";
|
|
566
|
+
security: "security";
|
|
567
|
+
documentation: "documentation";
|
|
568
|
+
}>, z.ZodNumber>;
|
|
569
|
+
criticalCount: z.ZodNumber;
|
|
570
|
+
majorCount: z.ZodNumber;
|
|
571
|
+
minorCount: z.ZodNumber;
|
|
572
|
+
infoCount: z.ZodNumber;
|
|
573
|
+
passedChecks: z.ZodArray<z.ZodString>;
|
|
574
|
+
searchMetadata: z.ZodObject<{
|
|
575
|
+
serenaUsed: z.ZodBoolean;
|
|
576
|
+
serenaRetries: z.ZodNumber;
|
|
577
|
+
serenaErrors: z.ZodArray<z.ZodString>;
|
|
578
|
+
fallbackUsed: z.ZodBoolean;
|
|
579
|
+
fallbackTool: z.ZodString;
|
|
580
|
+
searchQueries: z.ZodArray<z.ZodString>;
|
|
581
|
+
}, z.core.$strip>;
|
|
582
|
+
recommendation: z.ZodEnum<{
|
|
583
|
+
pass: "pass";
|
|
584
|
+
"fix-and-recheck": "fix-and-recheck";
|
|
585
|
+
"major-rework": "major-rework";
|
|
586
|
+
}>;
|
|
587
|
+
}, z.core.$strip>;
|
|
588
|
+
recovery: z.ZodOptional<z.ZodObject<{
|
|
589
|
+
generatedAt: z.ZodString;
|
|
590
|
+
auditScore: z.ZodNumber;
|
|
591
|
+
auditRunId: z.ZodString;
|
|
592
|
+
totalFindings: z.ZodNumber;
|
|
593
|
+
criticalFindings: z.ZodNumber;
|
|
594
|
+
milestones: z.ZodArray<z.ZodObject<{
|
|
595
|
+
name: z.ZodString;
|
|
596
|
+
description: z.ZodString;
|
|
597
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
598
|
+
name: z.ZodString;
|
|
599
|
+
description: z.ZodString;
|
|
600
|
+
findingIds: z.ZodArray<z.ZodString>;
|
|
601
|
+
acceptanceCriteria: z.ZodArray<z.ZodString>;
|
|
602
|
+
testPlan: z.ZodOptional<z.ZodString>;
|
|
603
|
+
appTarget: z.ZodEnum<{
|
|
604
|
+
website: "website";
|
|
605
|
+
frontend: "frontend";
|
|
606
|
+
backend: "backend";
|
|
607
|
+
infra: "infra";
|
|
608
|
+
shared: "shared";
|
|
609
|
+
}>;
|
|
610
|
+
}, z.core.$strip>>;
|
|
611
|
+
}, z.core.$strip>>;
|
|
612
|
+
estimatedEffort: z.ZodString;
|
|
613
|
+
}, z.core.$strip>>;
|
|
614
|
+
reportPaths: z.ZodObject<{
|
|
615
|
+
auditMd: z.ZodOptional<z.ZodString>;
|
|
616
|
+
auditJson: z.ZodOptional<z.ZodString>;
|
|
617
|
+
recoveryMd: z.ZodOptional<z.ZodString>;
|
|
618
|
+
recoveryJson: z.ZodOptional<z.ZodString>;
|
|
619
|
+
}, z.core.$strip>;
|
|
620
|
+
error: z.ZodOptional<z.ZodString>;
|
|
621
|
+
}, z.core.$strip>;
|
|
622
|
+
export type AuditModeResult = z.infer<typeof AuditModeResultSchema>;
|
|
623
|
+
//# sourceMappingURL=audit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audit.d.ts","sourceRoot":"","sources":["../../src/types/audit.ts"],"names":[],"mappings":"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"}
|